From 535e24ec9d4f3375ff171536e39250e7c143d126 Mon Sep 17 00:00:00 2001 From: imi415 Date: Thu, 30 Dec 2021 00:34:28 +0800 Subject: [PATCH] Moved LVGL, added fonts and standby screen. --- .gitmodules | 2 +- main/CMakeLists.txt | 160 + .../fonts/bebas_neue/BebasNeue-Regular.ttf | Bin 0 -> 57624 bytes main/assets/fonts/bebas_neue/OFL.txt | 93 + main/assets/fonts/bebas_neue/bebas_neue_120.c | 4877 + main/assets/fonts/bebas_neue/bebas_neue_32.c | 865 + main/assets/fonts/bebas_neue/bebas_neue_40.c | 1042 + main/assets/fonts/material_webfont/LICENSE | 20 + .../material_webfont/material_webfont_32.c | 168 + .../materialdesignicons-webfont.ttf | Bin 0 -> 1147844 bytes main/assets/fonts/material_webfont/meta.json | 78643 ++++++++++++++++ .../fonts/material_webfont/parse_meta.rb | 19 + main/impl/impl_btn.c | 0 main/impl/impl_lvgl.c | 35 +- main/interface/if_standby.c | 132 + main/interface/if_standby.h | 7 + main/lib/lv_conf.h | 606 + {components => main/lib}/lvgl | 0 main/main.c | 20 +- 19 files changed, 86663 insertions(+), 26 deletions(-) create mode 100644 main/assets/fonts/bebas_neue/BebasNeue-Regular.ttf create mode 100644 main/assets/fonts/bebas_neue/OFL.txt create mode 100644 main/assets/fonts/bebas_neue/bebas_neue_120.c create mode 100644 main/assets/fonts/bebas_neue/bebas_neue_32.c create mode 100644 main/assets/fonts/bebas_neue/bebas_neue_40.c create mode 100644 main/assets/fonts/material_webfont/LICENSE create mode 100644 main/assets/fonts/material_webfont/material_webfont_32.c create mode 100644 main/assets/fonts/material_webfont/materialdesignicons-webfont.ttf create mode 100644 main/assets/fonts/material_webfont/meta.json create mode 100644 main/assets/fonts/material_webfont/parse_meta.rb create mode 100644 main/impl/impl_btn.c create mode 100644 main/interface/if_standby.c create mode 100644 main/interface/if_standby.h create mode 100644 main/lib/lv_conf.h rename {components => main/lib}/lvgl (100%) diff --git a/.gitmodules b/.gitmodules index 5f11dbc..7a8159b 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,5 +1,5 @@ [submodule "components/lvgl"] - path = components/lvgl + path = main/lib/lvgl url = https://github.com/lvgl/lvgl.git [submodule "main/lib/epd-spi"] path = main/lib/epd-spi diff --git a/main/CMakeLists.txt b/main/CMakeLists.txt index 0e0e99a..afe5f8c 100644 --- a/main/CMakeLists.txt +++ b/main/CMakeLists.txt @@ -1,12 +1,172 @@ idf_component_register(SRCS + "assets/fonts/bebas_neue/bebas_neue_32.c" + "assets/fonts/bebas_neue/bebas_neue_40.c" + "assets/fonts/bebas_neue/bebas_neue_120.c" + "assets/fonts/material_webfont/material_webfont_32.c" "main.c" "helper/helper_wifi.c" "impl/impl_epd.c" "impl/impl_lvgl.c" + "interface/if_standby.c" "lib/epd-spi/src/epd_common.c" "lib/epd-spi/src/epd_panel_gdew042t2.c" + "lib/lvgl/src/core/lv_disp.c" + "lib/lvgl/src/core/lv_event.c" + "lib/lvgl/src/core/lv_group.c" + "lib/lvgl/src/core/lv_indev.c" + "lib/lvgl/src/core/lv_indev_scroll.c" + "lib/lvgl/src/core/lv_obj.c" + "lib/lvgl/src/core/lv_obj_class.c" + "lib/lvgl/src/core/lv_obj_draw.c" + "lib/lvgl/src/core/lv_obj_pos.c" + "lib/lvgl/src/core/lv_obj_scroll.c" + "lib/lvgl/src/core/lv_obj_style.c" + "lib/lvgl/src/core/lv_obj_style_gen.c" + "lib/lvgl/src/core/lv_obj_tree.c" + "lib/lvgl/src/core/lv_refr.c" + "lib/lvgl/src/core/lv_theme.c" + "lib/lvgl/src/draw/lv_draw_arc.c" + "lib/lvgl/src/draw/lv_draw_blend.c" + "lib/lvgl/src/draw/lv_draw_img.c" + "lib/lvgl/src/draw/lv_draw_label.c" + "lib/lvgl/src/draw/lv_draw_line.c" + "lib/lvgl/src/draw/lv_draw_mask.c" + "lib/lvgl/src/draw/lv_draw_rect.c" + "lib/lvgl/src/draw/lv_draw_triangle.c" + "lib/lvgl/src/draw/lv_img_buf.c" + "lib/lvgl/src/draw/lv_img_cache.c" + "lib/lvgl/src/draw/lv_img_decoder.c" + "lib/lvgl/src/extra/layouts/flex/lv_flex.c" + "lib/lvgl/src/extra/layouts/grid/lv_grid.c" + "lib/lvgl/src/extra/libs/bmp/lv_bmp.c" + "lib/lvgl/src/extra/libs/freetype/lv_freetype.c" + "lib/lvgl/src/extra/libs/fsdrv/lv_fs_fatfs.c" + "lib/lvgl/src/extra/libs/fsdrv/lv_fs_posix.c" + "lib/lvgl/src/extra/libs/fsdrv/lv_fs_stdio.c" + "lib/lvgl/src/extra/libs/fsdrv/lv_fs_win32.c" + "lib/lvgl/src/extra/libs/gif/gifdec.c" + "lib/lvgl/src/extra/libs/gif/lv_gif.c" + "lib/lvgl/src/extra/libs/png/lodepng.c" + "lib/lvgl/src/extra/libs/png/lv_png.c" + "lib/lvgl/src/extra/libs/qrcode/lv_qrcode.c" + "lib/lvgl/src/extra/libs/qrcode/qrcodegen.c" + "lib/lvgl/src/extra/libs/rlottie/lv_rlottie.c" + "lib/lvgl/src/extra/libs/sjpg/lv_sjpg.c" + "lib/lvgl/src/extra/libs/sjpg/tjpgd.c" + "lib/lvgl/src/extra/lv_extra.c" + "lib/lvgl/src/extra/others/snapshot/lv_snapshot.c" + "lib/lvgl/src/extra/themes/basic/lv_theme_basic.c" + "lib/lvgl/src/extra/themes/default/lv_theme_default.c" + "lib/lvgl/src/extra/themes/mono/lv_theme_mono.c" + "lib/lvgl/src/extra/widgets/animimg/lv_animimg.c" + "lib/lvgl/src/extra/widgets/calendar/lv_calendar.c" + "lib/lvgl/src/extra/widgets/calendar/lv_calendar_header_arrow.c" + "lib/lvgl/src/extra/widgets/calendar/lv_calendar_header_dropdown.c" + "lib/lvgl/src/extra/widgets/chart/lv_chart.c" + "lib/lvgl/src/extra/widgets/colorwheel/lv_colorwheel.c" + "lib/lvgl/src/extra/widgets/imgbtn/lv_imgbtn.c" + "lib/lvgl/src/extra/widgets/keyboard/lv_keyboard.c" + "lib/lvgl/src/extra/widgets/led/lv_led.c" + "lib/lvgl/src/extra/widgets/list/lv_list.c" + "lib/lvgl/src/extra/widgets/meter/lv_meter.c" + "lib/lvgl/src/extra/widgets/msgbox/lv_msgbox.c" + "lib/lvgl/src/extra/widgets/span/lv_span.c" + "lib/lvgl/src/extra/widgets/spinbox/lv_spinbox.c" + "lib/lvgl/src/extra/widgets/spinner/lv_spinner.c" + "lib/lvgl/src/extra/widgets/tabview/lv_tabview.c" + "lib/lvgl/src/extra/widgets/tileview/lv_tileview.c" + "lib/lvgl/src/extra/widgets/win/lv_win.c" + "lib/lvgl/src/font/lv_font.c" + "lib/lvgl/src/font/lv_font_dejavu_16_persian_hebrew.c" + "lib/lvgl/src/font/lv_font_fmt_txt.c" + "lib/lvgl/src/font/lv_font_loader.c" + "lib/lvgl/src/font/lv_font_montserrat_10.c" + "lib/lvgl/src/font/lv_font_montserrat_12.c" + "lib/lvgl/src/font/lv_font_montserrat_12_subpx.c" + "lib/lvgl/src/font/lv_font_montserrat_14.c" + "lib/lvgl/src/font/lv_font_montserrat_16.c" + "lib/lvgl/src/font/lv_font_montserrat_18.c" + "lib/lvgl/src/font/lv_font_montserrat_20.c" + "lib/lvgl/src/font/lv_font_montserrat_22.c" + "lib/lvgl/src/font/lv_font_montserrat_24.c" + "lib/lvgl/src/font/lv_font_montserrat_26.c" + "lib/lvgl/src/font/lv_font_montserrat_28.c" + "lib/lvgl/src/font/lv_font_montserrat_28_compressed.c" + "lib/lvgl/src/font/lv_font_montserrat_30.c" + "lib/lvgl/src/font/lv_font_montserrat_32.c" + "lib/lvgl/src/font/lv_font_montserrat_34.c" + "lib/lvgl/src/font/lv_font_montserrat_36.c" + "lib/lvgl/src/font/lv_font_montserrat_38.c" + "lib/lvgl/src/font/lv_font_montserrat_40.c" + "lib/lvgl/src/font/lv_font_montserrat_42.c" + "lib/lvgl/src/font/lv_font_montserrat_44.c" + "lib/lvgl/src/font/lv_font_montserrat_46.c" + "lib/lvgl/src/font/lv_font_montserrat_48.c" + "lib/lvgl/src/font/lv_font_montserrat_8.c" + "lib/lvgl/src/font/lv_font_simsun_16_cjk.c" + "lib/lvgl/src/font/lv_font_unscii_16.c" + "lib/lvgl/src/font/lv_font_unscii_8.c" + "lib/lvgl/src/gpu/lv_gpu_nxp_pxp.c" + "lib/lvgl/src/gpu/lv_gpu_nxp_pxp_osa.c" + "lib/lvgl/src/gpu/lv_gpu_nxp_vglite.c" + "lib/lvgl/src/gpu/lv_gpu_sdl.c" + "lib/lvgl/src/gpu/lv_gpu_stm32_dma2d.c" + "lib/lvgl/src/gpu/sdl/lv_gpu_sdl_draw_arc.c" + "lib/lvgl/src/gpu/sdl/lv_gpu_sdl_draw_blend.c" + "lib/lvgl/src/gpu/sdl/lv_gpu_sdl_draw_img.c" + "lib/lvgl/src/gpu/sdl/lv_gpu_sdl_draw_label.c" + "lib/lvgl/src/gpu/sdl/lv_gpu_sdl_draw_line.c" + "lib/lvgl/src/gpu/sdl/lv_gpu_sdl_draw_rect.c" + "lib/lvgl/src/gpu/sdl/lv_gpu_sdl_lru.c" + "lib/lvgl/src/gpu/sdl/lv_gpu_sdl_mask.c" + "lib/lvgl/src/gpu/sdl/lv_gpu_sdl_stack_blur.c" + "lib/lvgl/src/gpu/sdl/lv_gpu_sdl_texture_cache.c" + "lib/lvgl/src/gpu/sdl/lv_gpu_sdl_utils.c" + "lib/lvgl/src/hal/lv_hal_disp.c" + "lib/lvgl/src/hal/lv_hal_indev.c" + "lib/lvgl/src/hal/lv_hal_tick.c" + "lib/lvgl/src/misc/lv_anim.c" + "lib/lvgl/src/misc/lv_anim_timeline.c" + "lib/lvgl/src/misc/lv_area.c" + "lib/lvgl/src/misc/lv_async.c" + "lib/lvgl/src/misc/lv_bidi.c" + "lib/lvgl/src/misc/lv_color.c" + "lib/lvgl/src/misc/lv_fs.c" + "lib/lvgl/src/misc/lv_gc.c" + "lib/lvgl/src/misc/lv_ll.c" + "lib/lvgl/src/misc/lv_log.c" + "lib/lvgl/src/misc/lv_math.c" + "lib/lvgl/src/misc/lv_mem.c" + "lib/lvgl/src/misc/lv_printf.c" + "lib/lvgl/src/misc/lv_style.c" + "lib/lvgl/src/misc/lv_style_gen.c" + "lib/lvgl/src/misc/lv_templ.c" + "lib/lvgl/src/misc/lv_timer.c" + "lib/lvgl/src/misc/lv_tlsf.c" + "lib/lvgl/src/misc/lv_txt.c" + "lib/lvgl/src/misc/lv_txt_ap.c" + "lib/lvgl/src/misc/lv_utils.c" + "lib/lvgl/src/widgets/lv_arc.c" + "lib/lvgl/src/widgets/lv_bar.c" + "lib/lvgl/src/widgets/lv_btn.c" + "lib/lvgl/src/widgets/lv_btnmatrix.c" + "lib/lvgl/src/widgets/lv_canvas.c" + "lib/lvgl/src/widgets/lv_checkbox.c" + "lib/lvgl/src/widgets/lv_dropdown.c" + "lib/lvgl/src/widgets/lv_img.c" + "lib/lvgl/src/widgets/lv_label.c" + "lib/lvgl/src/widgets/lv_line.c" + "lib/lvgl/src/widgets/lv_objx_templ.c" + "lib/lvgl/src/widgets/lv_roller.c" + "lib/lvgl/src/widgets/lv_slider.c" + "lib/lvgl/src/widgets/lv_switch.c" + "lib/lvgl/src/widgets/lv_table.c" + "lib/lvgl/src/widgets/lv_textarea.c" INCLUDE_DIRS + "lib" "lib/epd-spi/include" + "lib/lvgl" "impl" + "interface" ) diff --git a/main/assets/fonts/bebas_neue/BebasNeue-Regular.ttf b/main/assets/fonts/bebas_neue/BebasNeue-Regular.ttf new file mode 100644 index 0000000000000000000000000000000000000000..83a29bfc83b59227f3230f80d3a0e851969b869c GIT binary patch literal 57624 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 N885vUqCU*%KLJ@t7A*h( literal 0 HcmV?d00001 diff --git a/main/assets/fonts/bebas_neue/OFL.txt b/main/assets/fonts/bebas_neue/OFL.txt new file mode 100644 index 0000000..9d66059 --- /dev/null +++ b/main/assets/fonts/bebas_neue/OFL.txt @@ -0,0 +1,93 @@ +Copyright © 2010 by Dharma Type. + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/main/assets/fonts/bebas_neue/bebas_neue_120.c b/main/assets/fonts/bebas_neue/bebas_neue_120.c new file mode 100644 index 0000000..7da50f5 --- /dev/null +++ b/main/assets/fonts/bebas_neue/bebas_neue_120.c @@ -0,0 +1,4877 @@ +/******************************************************************************* + * Size: 120 px + * Bpp: 1 + * Opts: + ******************************************************************************/ + +#ifdef LV_LVGL_H_INCLUDE_SIMPLE +#include "lvgl.h" +#else +#include "lvgl/lvgl.h" +#endif + +#ifndef BEBAS_NEUE_120 +#define BEBAS_NEUE_120 1 +#endif + +#if BEBAS_NEUE_120 + +/*----------------- + * BITMAPS + *----------------*/ + +/*Store the image of the glyphs*/ +static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { + /* U+0020 " " */ + 0x0, + + /* U+0021 "!" */ + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xfd, 0xff, 0xcf, 0xfe, 0x7f, 0xf3, + 0xff, 0x9f, 0xfc, 0xff, 0xe7, 0xff, 0x3f, 0xf9, + 0xff, 0xcf, 0xfe, 0x7f, 0xf3, 0xff, 0x9f, 0xfc, + 0xff, 0xe7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, + + /* U+0022 "\"" */ + 0xff, 0xf8, 0x7f, 0xff, 0xff, 0xf0, 0xff, 0xff, + 0xff, 0xe0, 0xff, 0xf7, 0xff, 0xc1, 0xff, 0xef, + 0xff, 0x3, 0xff, 0xdf, 0xfe, 0x7, 0xff, 0xbf, + 0xfc, 0xf, 0xff, 0x7f, 0xf8, 0x1f, 0xfe, 0x7f, + 0xf0, 0x3f, 0xfc, 0xff, 0xe0, 0x7f, 0xf9, 0xff, + 0xc0, 0x7f, 0xf3, 0xff, 0x80, 0xff, 0xc7, 0xff, + 0x1, 0xff, 0x8f, 0xfc, 0x3, 0xff, 0x1f, 0xf8, + 0x7, 0xfe, 0x3f, 0xf0, 0xf, 0xfc, 0x7f, 0xe0, + 0x1f, 0xf8, 0x7f, 0xc0, 0x3f, 0xf0, 0xff, 0x80, + 0x7f, 0xe1, 0xff, 0x0, 0x7f, 0x83, 0xfe, 0x0, + 0xff, 0x7, 0xf8, 0x1, 0xfe, 0xf, 0xf0, 0x3, + 0xfc, 0x1f, 0xe0, 0x7, 0xf8, 0x3f, 0xc0, 0xf, + 0xf0, 0x3f, 0x80, 0x1f, 0xe0, 0x7f, 0x0, 0x3f, + 0xc0, + + /* U+0023 "#" */ + 0x0, 0xf, 0xfc, 0x1, 0xff, 0x80, 0x0, 0x3f, + 0xf0, 0x7, 0xfe, 0x0, 0x0, 0xff, 0xc0, 0x1f, + 0xf8, 0x0, 0x3, 0xff, 0x0, 0x7f, 0xe0, 0x0, + 0xf, 0xfc, 0x3, 0xff, 0x80, 0x0, 0x7f, 0xf0, + 0xf, 0xfe, 0x0, 0x1, 0xff, 0xc0, 0x3f, 0xf8, + 0x0, 0x7, 0xff, 0x0, 0xff, 0xe0, 0x0, 0x1f, + 0xfc, 0x3, 0xff, 0x80, 0x0, 0x7f, 0xe0, 0xf, + 0xfc, 0x0, 0x1, 0xff, 0x80, 0x3f, 0xf0, 0x0, + 0x7, 0xfe, 0x0, 0xff, 0xc0, 0x0, 0x1f, 0xf8, + 0x3, 0xff, 0x0, 0x0, 0x7f, 0xe0, 0xf, 0xfc, + 0x0, 0x3, 0xff, 0x80, 0x7f, 0xf0, 0x0, 0xf, + 0xfe, 0x1, 0xff, 0xc0, 0x0, 0x3f, 0xf8, 0x7, + 0xff, 0x0, 0x0, 0xff, 0xe0, 0x1f, 0xfc, 0x0, + 0x3, 0xff, 0x80, 0x7f, 0xe0, 0x3, 0xff, 0xff, + 0xff, 0xff, 0xfe, 0xf, 0xff, 0xff, 0xff, 0xff, + 0xf8, 0x3f, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x83, 0xff, 0xff, 0xff, + 0xff, 0xfe, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf8, + 0x7f, 0xff, 0xff, 0xff, 0xff, 0xe1, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x87, 0xff, 0xff, 0xff, 0xff, + 0xfe, 0x0, 0x7f, 0xe0, 0xf, 0xfc, 0x0, 0x1, + 0xff, 0x80, 0x3f, 0xf0, 0x0, 0x7, 0xfe, 0x0, + 0xff, 0xc0, 0x0, 0x1f, 0xf8, 0x3, 0xff, 0x0, + 0x0, 0x7f, 0xe0, 0xf, 0xfc, 0x0, 0x3, 0xff, + 0x80, 0x7f, 0xf0, 0x0, 0xf, 0xfe, 0x1, 0xff, + 0xc0, 0x0, 0x3f, 0xf8, 0x7, 0xff, 0x0, 0x0, + 0xff, 0xe0, 0x1f, 0xfc, 0x0, 0x3, 0xff, 0x80, + 0x7f, 0xf0, 0x0, 0xf, 0xfc, 0x1, 0xff, 0x80, + 0x0, 0x3f, 0xf0, 0x7, 0xfe, 0x0, 0x0, 0xff, + 0xc0, 0x1f, 0xf8, 0x0, 0x3, 0xff, 0x0, 0x7f, + 0xe0, 0x0, 0xf, 0xfc, 0x1, 0xff, 0x80, 0x0, + 0x7f, 0xf0, 0xf, 0xfe, 0x0, 0x1, 0xff, 0xc0, + 0x3f, 0xf8, 0x0, 0x7, 0xff, 0x0, 0xff, 0xe0, + 0x0, 0x1f, 0xfc, 0x3, 0xff, 0x80, 0x0, 0x7f, + 0xf0, 0xf, 0xfe, 0x0, 0x1, 0xff, 0x80, 0x3f, + 0xf0, 0x0, 0x7, 0xfe, 0x0, 0xff, 0xc0, 0x0, + 0x1f, 0xf8, 0x3, 0xff, 0x0, 0x1f, 0xff, 0xff, + 0xff, 0xff, 0xf0, 0x7f, 0xff, 0xff, 0xff, 0xff, + 0xc1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf, 0xff, + 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xff, 0xff, 0xff, + 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc3, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf, 0xff, 0xff, + 0xff, 0xff, 0xf8, 0x3f, 0xff, 0xff, 0xff, 0xff, + 0xe0, 0x3, 0xff, 0x0, 0x7f, 0xe0, 0x0, 0xf, + 0xfc, 0x1, 0xff, 0x80, 0x0, 0x3f, 0xf0, 0xf, + 0xfe, 0x0, 0x1, 0xff, 0xc0, 0x3f, 0xf8, 0x0, + 0x7, 0xff, 0x0, 0xff, 0xe0, 0x0, 0x1f, 0xfc, + 0x3, 0xff, 0x80, 0x0, 0x7f, 0xf0, 0xf, 0xfe, + 0x0, 0x1, 0xff, 0x80, 0x3f, 0xf0, 0x0, 0x7, + 0xfe, 0x0, 0xff, 0xc0, 0x0, 0x1f, 0xf8, 0x3, + 0xff, 0x0, 0x0, 0x7f, 0xe0, 0xf, 0xfc, 0x0, + 0x1, 0xff, 0x80, 0x3f, 0xf0, 0x0, 0xf, 0xfe, + 0x1, 0xff, 0xc0, 0x0, 0x3f, 0xf8, 0x7, 0xff, + 0x0, 0x0, 0xff, 0xe0, 0x1f, 0xfc, 0x0, 0x3, + 0xff, 0x80, 0x7f, 0xf0, 0x0, 0xf, 0xfe, 0x1, + 0xff, 0x80, 0x0, 0x3f, 0xf0, 0x7, 0xfe, 0x0, + 0x0, 0xff, 0xc0, 0x1f, 0xf8, 0x0, 0x3, 0xff, + 0x0, 0x7f, 0xe0, 0x0, 0xf, 0xfc, 0x1, 0xff, + 0x80, 0x0, 0x3f, 0xf0, 0xf, 0xfe, 0x0, 0x1, + 0xff, 0xc0, 0x3f, 0xf8, 0x0, 0x7, 0xff, 0x0, + 0xff, 0xe0, 0x0, + + /* U+0024 "$" */ + 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x7, 0xff, + 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, + 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, + 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0xff, + 0xe0, 0x0, 0x0, 0x7, 0xff, 0xf0, 0x0, 0x0, + 0x3f, 0xff, 0xfc, 0x0, 0x1, 0xff, 0xff, 0xfc, + 0x0, 0xf, 0xff, 0xff, 0xfe, 0x0, 0x3f, 0xff, + 0xff, 0xfe, 0x0, 0xff, 0xff, 0xff, 0xfe, 0x1, + 0xff, 0xff, 0xff, 0xfc, 0x7, 0xff, 0xff, 0xff, + 0xfc, 0x1f, 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xff, + 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, 0xf9, + 0xff, 0xfe, 0xf, 0xff, 0xf3, 0xff, 0xf0, 0x7, + 0xff, 0xe7, 0xff, 0xc0, 0x7, 0xff, 0xdf, 0xff, + 0x80, 0xf, 0xff, 0xff, 0xfe, 0x0, 0xf, 0xff, + 0xff, 0xfc, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x3f, 0xff, 0xff, 0xf0, 0x0, 0x7f, 0xff, 0xff, + 0xe0, 0x0, 0xff, 0xff, 0xff, 0xc0, 0x1, 0xff, + 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0xff, 0x80, + 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x7f, + 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, + 0x0, 0xff, 0xfe, 0x0, 0x0, 0x1, 0xff, 0xfc, + 0x0, 0x0, 0x1, 0xff, 0xfc, 0x0, 0x0, 0x3, + 0xff, 0xfc, 0x0, 0x0, 0x3, 0xff, 0xfc, 0x0, + 0x0, 0x7, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, + 0xfc, 0x0, 0x0, 0xf, 0xff, 0xfe, 0x0, 0x0, + 0xf, 0xff, 0xfe, 0x0, 0x0, 0xf, 0xff, 0xfe, + 0x0, 0x0, 0xf, 0xff, 0xfe, 0x0, 0x0, 0xf, + 0xff, 0xfe, 0x0, 0x0, 0xf, 0xff, 0xff, 0x0, + 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, 0xf, 0xff, + 0xff, 0x0, 0x0, 0xf, 0xff, 0xff, 0x0, 0x0, + 0xf, 0xff, 0xfe, 0x0, 0x0, 0x7, 0xff, 0xfe, + 0x0, 0x0, 0x7, 0xff, 0xfe, 0x0, 0x0, 0x7, + 0xff, 0xfe, 0x0, 0x0, 0x7, 0xff, 0xfc, 0x0, + 0x0, 0x7, 0xff, 0xfc, 0x0, 0x0, 0x3, 0xff, + 0xfc, 0x0, 0x0, 0x7, 0xff, 0xf8, 0x0, 0x0, + 0x7, 0xff, 0xf0, 0x0, 0x0, 0x7, 0xff, 0xf0, + 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0xf, + 0xff, 0xdf, 0xff, 0x0, 0xf, 0xff, 0xff, 0xfe, + 0x0, 0x1f, 0xff, 0xff, 0xfc, 0x0, 0x3f, 0xff, + 0xff, 0xf8, 0x0, 0x3f, 0xff, 0xff, 0xf0, 0x0, + 0x7f, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, + 0xc0, 0x1, 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, + 0xff, 0xff, 0x0, 0x7, 0xff, 0xff, 0xfe, 0x0, + 0xf, 0xff, 0xff, 0xfe, 0x0, 0x3f, 0xff, 0xff, + 0xfc, 0x0, 0x7f, 0xfc, 0xff, 0xfc, 0x1, 0xff, + 0xf9, 0xff, 0xfe, 0xf, 0xff, 0xf3, 0xff, 0xff, + 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xff, 0x87, + 0xff, 0xff, 0xff, 0xff, 0x7, 0xff, 0xff, 0xff, + 0xfc, 0xf, 0xff, 0xff, 0xff, 0xf8, 0xf, 0xff, + 0xff, 0xff, 0xe0, 0xf, 0xff, 0xff, 0xff, 0x80, + 0xf, 0xff, 0xff, 0xfe, 0x0, 0xf, 0xff, 0xff, + 0xf8, 0x0, 0xf, 0xff, 0xff, 0xe0, 0x0, 0x7, + 0xff, 0xff, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, + 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, + 0x80, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, + 0xf, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, + 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x7f, + 0xf0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, + + /* U+0025 "%" */ + 0x0, 0xff, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xf, 0xff, 0x80, 0x0, 0x0, 0x7f, 0x80, 0x0, + 0xff, 0xff, 0x80, 0x0, 0x3, 0xfe, 0x0, 0x7, + 0xff, 0xff, 0x0, 0x0, 0xf, 0xf8, 0x0, 0x3f, + 0xff, 0xfe, 0x0, 0x0, 0x3f, 0xc0, 0x0, 0xff, + 0xff, 0xf8, 0x0, 0x1, 0xff, 0x0, 0x7, 0xff, + 0xff, 0xf0, 0x0, 0x7, 0xfc, 0x0, 0x1f, 0xf0, + 0x7f, 0xc0, 0x0, 0x1f, 0xe0, 0x0, 0x7f, 0x80, + 0xff, 0x0, 0x0, 0xff, 0x80, 0x3, 0xfc, 0x1, + 0xfe, 0x0, 0x3, 0xfc, 0x0, 0xf, 0xf0, 0x7, + 0xf8, 0x0, 0x1f, 0xf0, 0x0, 0x3f, 0xc0, 0x1f, + 0xe0, 0x0, 0x7f, 0xc0, 0x0, 0xff, 0x0, 0x7f, + 0x80, 0x1, 0xfe, 0x0, 0x3, 0xfc, 0x1, 0xfe, + 0x0, 0xf, 0xf8, 0x0, 0xf, 0xf0, 0x7, 0xf8, + 0x0, 0x3f, 0xc0, 0x0, 0x3f, 0xc0, 0x1f, 0xe0, + 0x1, 0xff, 0x0, 0x0, 0xff, 0x0, 0x7f, 0x80, + 0x7, 0xfc, 0x0, 0x3, 0xfc, 0x1, 0xfe, 0x0, + 0x1f, 0xe0, 0x0, 0xf, 0xf0, 0x7, 0xf8, 0x0, + 0xff, 0x80, 0x0, 0x3f, 0xc0, 0x1f, 0xe0, 0x3, + 0xfc, 0x0, 0x0, 0xff, 0x0, 0x7f, 0x80, 0x1f, + 0xf0, 0x0, 0x3, 0xfc, 0x1, 0xfe, 0x0, 0x7f, + 0xc0, 0x0, 0xf, 0xf0, 0x7, 0xf8, 0x1, 0xfe, + 0x0, 0x0, 0x3f, 0xc0, 0x1f, 0xe0, 0xf, 0xf8, + 0x0, 0x0, 0xff, 0x0, 0x7f, 0x80, 0x3f, 0xc0, + 0x0, 0x3, 0xfc, 0x1, 0xfe, 0x0, 0xff, 0x0, + 0x0, 0xf, 0xf0, 0x7, 0xf8, 0x7, 0xfc, 0x0, + 0x0, 0x3f, 0xc0, 0x1f, 0xe0, 0x1f, 0xe0, 0x0, + 0x0, 0xff, 0x0, 0x7f, 0x80, 0xff, 0x80, 0x0, + 0x3, 0xfc, 0x1, 0xfe, 0x3, 0xfe, 0x0, 0x0, + 0xf, 0xf0, 0x7, 0xf8, 0xf, 0xf0, 0x0, 0x0, + 0x3f, 0xc0, 0x1f, 0xe0, 0x7f, 0xc0, 0x0, 0x0, + 0xff, 0x0, 0x7f, 0x81, 0xfe, 0x0, 0x0, 0x3, + 0xfc, 0x1, 0xfe, 0xf, 0xf8, 0x0, 0x0, 0xf, + 0xf0, 0x7, 0xf8, 0x3f, 0xe0, 0x0, 0x0, 0x3f, + 0xc0, 0x1f, 0xe0, 0xff, 0x0, 0x0, 0x0, 0xff, + 0x0, 0x7f, 0x87, 0xfc, 0x0, 0x0, 0x3, 0xfc, + 0x1, 0xfe, 0x1f, 0xe0, 0x0, 0x0, 0x7, 0xf8, + 0xf, 0xf0, 0xff, 0x80, 0x7f, 0xc0, 0x1f, 0xf0, + 0x7f, 0xc3, 0xfe, 0x7, 0xff, 0xc0, 0x7f, 0xff, + 0xff, 0xf, 0xf0, 0x7f, 0xff, 0xc0, 0xff, 0xff, + 0xf8, 0x7f, 0xc3, 0xff, 0xff, 0x83, 0xff, 0xff, + 0xe1, 0xfe, 0x1f, 0xff, 0xff, 0x7, 0xff, 0xff, + 0xf, 0xf8, 0x7f, 0xff, 0xfc, 0xf, 0xff, 0xf8, + 0x3f, 0xe3, 0xff, 0xff, 0xf8, 0xf, 0xff, 0x80, + 0xff, 0xf, 0xf8, 0x3f, 0xe0, 0xf, 0xf8, 0x7, + 0xfc, 0x3f, 0xc0, 0x7f, 0x80, 0x0, 0x0, 0x1f, + 0xf1, 0xfe, 0x0, 0xff, 0x0, 0x0, 0x0, 0x7f, + 0x87, 0xf8, 0x3, 0xfc, 0x0, 0x0, 0x3, 0xfe, + 0x1f, 0xe0, 0xf, 0xf0, 0x0, 0x0, 0xf, 0xf0, + 0x7f, 0x80, 0x3f, 0xc0, 0x0, 0x0, 0x7f, 0xc1, + 0xfe, 0x0, 0xff, 0x0, 0x0, 0x1, 0xff, 0x7, + 0xf8, 0x3, 0xfc, 0x0, 0x0, 0x7, 0xf8, 0x1f, + 0xe0, 0xf, 0xf0, 0x0, 0x0, 0x3f, 0xe0, 0x7f, + 0x80, 0x3f, 0xc0, 0x0, 0x0, 0xff, 0x1, 0xfe, + 0x0, 0xff, 0x0, 0x0, 0x7, 0xfc, 0x7, 0xf8, + 0x3, 0xfc, 0x0, 0x0, 0x1f, 0xf0, 0x1f, 0xe0, + 0xf, 0xf0, 0x0, 0x0, 0x7f, 0x80, 0x7f, 0x80, + 0x3f, 0xc0, 0x0, 0x3, 0xfe, 0x1, 0xfe, 0x0, + 0xff, 0x0, 0x0, 0xf, 0xf0, 0x7, 0xf8, 0x3, + 0xfc, 0x0, 0x0, 0x7f, 0xc0, 0x1f, 0xe0, 0xf, + 0xf0, 0x0, 0x1, 0xff, 0x0, 0x7f, 0x80, 0x3f, + 0xc0, 0x0, 0x7, 0xf8, 0x1, 0xfe, 0x0, 0xff, + 0x0, 0x0, 0x3f, 0xe0, 0x7, 0xf8, 0x3, 0xfc, + 0x0, 0x0, 0xff, 0x80, 0x1f, 0xe0, 0xf, 0xf0, + 0x0, 0x3, 0xfc, 0x0, 0x7f, 0x80, 0x3f, 0xc0, + 0x0, 0x1f, 0xf0, 0x1, 0xfe, 0x0, 0xff, 0x0, + 0x0, 0x7f, 0x80, 0x7, 0xf8, 0x3, 0xfc, 0x0, + 0x3, 0xfe, 0x0, 0x1f, 0xe0, 0xf, 0xf0, 0x0, + 0xf, 0xf8, 0x0, 0x7f, 0x80, 0x3f, 0xc0, 0x0, + 0x3f, 0xc0, 0x1, 0xfe, 0x0, 0xff, 0x0, 0x1, + 0xff, 0x0, 0x7, 0xf8, 0x3, 0xfc, 0x0, 0x7, + 0xf8, 0x0, 0x1f, 0xe0, 0xf, 0xf0, 0x0, 0x3f, + 0xe0, 0x0, 0x7f, 0x80, 0x3f, 0xc0, 0x0, 0xff, + 0x80, 0x1, 0xfe, 0x0, 0xff, 0x0, 0x3, 0xfc, + 0x0, 0x7, 0xf8, 0x7, 0xfc, 0x0, 0x1f, 0xf0, + 0x0, 0xf, 0xf0, 0x1f, 0xe0, 0x0, 0x7f, 0x80, + 0x0, 0x3f, 0xe0, 0xff, 0x80, 0x3, 0xfe, 0x0, + 0x0, 0xff, 0xff, 0xfe, 0x0, 0xf, 0xf8, 0x0, + 0x1, 0xff, 0xff, 0xf0, 0x0, 0x3f, 0xc0, 0x0, + 0x7, 0xff, 0xff, 0xc0, 0x1, 0xff, 0x0, 0x0, + 0xf, 0xff, 0xfe, 0x0, 0x7, 0xfc, 0x0, 0x0, + 0x1f, 0xff, 0xf0, 0x0, 0x1f, 0xe0, 0x0, 0x0, + 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x1f, 0xf0, 0x0, + + /* U+0026 "&" */ + 0x0, 0x1, 0xff, 0xff, 0xf0, 0x0, 0x1, 0xff, + 0xff, 0xff, 0x0, 0x0, 0x7f, 0xff, 0xff, 0xf0, + 0x0, 0xf, 0xff, 0xff, 0xff, 0x0, 0x1, 0xff, + 0xff, 0xff, 0xf0, 0x0, 0x3f, 0xff, 0xff, 0xff, + 0x0, 0x7, 0xff, 0xff, 0xff, 0xf0, 0x0, 0xff, + 0xff, 0xff, 0xff, 0x0, 0xf, 0xff, 0xff, 0xff, + 0xf0, 0x1, 0xff, 0xff, 0xff, 0xff, 0x0, 0x1f, + 0xff, 0xff, 0xff, 0xf0, 0x3, 0xff, 0xff, 0xff, + 0xff, 0x0, 0x3f, 0xff, 0xc0, 0x0, 0x0, 0x3, + 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, + 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0x0, + 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, + 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, + 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xfc, + 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, + 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x7, 0xff, + 0xc0, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, + 0x0, 0x7, 0xff, 0xc0, 0x1, 0xff, 0xf0, 0x7f, + 0xfc, 0x0, 0x1f, 0xff, 0x7, 0xff, 0xc0, 0x1, + 0xff, 0xf0, 0x3f, 0xfc, 0x0, 0x1f, 0xff, 0x3, + 0xff, 0xe0, 0x1, 0xff, 0xf0, 0x3f, 0xfe, 0x0, + 0x1f, 0xff, 0x3, 0xff, 0xf0, 0x1, 0xff, 0xf0, + 0x1f, 0xff, 0x80, 0x1f, 0xff, 0x1, 0xff, 0xfc, + 0x1, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xff, + 0xf0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0x7, 0xff, + 0xff, 0xff, 0xff, 0xf0, 0x1f, 0xff, 0xff, 0xff, + 0xff, 0x0, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x3, + 0xff, 0xff, 0xff, 0xff, 0x0, 0xff, 0xff, 0xff, + 0xff, 0xf0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0x7, + 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x1f, 0xff, 0xff, 0xff, 0xff, 0xf1, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x3f, 0xff, 0xc0, + 0x1f, 0xff, 0x3, 0xff, 0xf0, 0x1, 0xff, 0xf0, + 0x7f, 0xfe, 0x0, 0x1f, 0xff, 0x7, 0xff, 0xc0, + 0x1, 0xff, 0xf0, 0x7f, 0xfc, 0x0, 0x1f, 0xff, + 0xf, 0xff, 0xc0, 0x1, 0xff, 0xf0, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xf, 0xff, 0x80, 0x1, 0xff, + 0xf0, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xf, 0xff, + 0x80, 0x1, 0xff, 0xf0, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xf, 0xff, 0x80, 0x1, 0xff, 0xf0, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xf, 0xff, 0x80, 0x1, + 0xff, 0xf0, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xf, + 0xff, 0x80, 0x1, 0xff, 0xf0, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xf, 0xff, 0x80, 0x1, 0xff, 0xf0, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xf, 0xff, 0x80, + 0x1, 0xff, 0xf0, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xf, 0xff, 0x80, 0x1, 0xff, 0xf0, 0xff, 0xf8, + 0x0, 0x3f, 0xff, 0xf, 0xff, 0xc0, 0x3, 0xff, + 0xf0, 0xff, 0xfc, 0x0, 0x7f, 0xff, 0xf, 0xff, + 0xe0, 0xf, 0xff, 0xf0, 0x7f, 0xff, 0x83, 0xff, + 0xff, 0x7, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x7f, + 0xff, 0xff, 0xff, 0xff, 0x7, 0xff, 0xff, 0xff, + 0xff, 0xf0, 0x3f, 0xff, 0xff, 0xff, 0xff, 0x3, + 0xff, 0xff, 0xff, 0xff, 0xf0, 0x1f, 0xff, 0xff, + 0xdf, 0xff, 0x1, 0xff, 0xff, 0xf9, 0xff, 0xf0, + 0xf, 0xff, 0xff, 0x9f, 0xff, 0x0, 0x7f, 0xff, + 0xf1, 0xff, 0xf8, 0x3, 0xff, 0xfe, 0xf, 0xff, + 0x80, 0xf, 0xff, 0x80, 0xff, 0xf8, 0x0, 0x3f, + 0xe0, 0x0, 0x0, 0x0, + + /* U+0027 "'" */ + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0x7f, 0xfb, 0xff, 0xdf, 0xfe, 0x7f, 0xf3, 0xff, + 0x9f, 0xfc, 0xff, 0xe7, 0xff, 0x3f, 0xf1, 0xff, + 0x8f, 0xfc, 0x7f, 0xe1, 0xff, 0xf, 0xf8, 0x7f, + 0xc3, 0xfe, 0x1f, 0xe0, 0xff, 0x7, 0xf8, 0x3f, + 0xc0, 0xfe, 0x7, 0xf0, + + /* U+0028 "(" */ + 0x0, 0xf, 0xfe, 0x0, 0xff, 0xfc, 0xf, 0xff, + 0xf8, 0x3f, 0xff, 0xf0, 0xff, 0xff, 0xe3, 0xff, + 0xff, 0xcf, 0xff, 0xff, 0x9f, 0xff, 0xff, 0x7f, + 0xff, 0xfe, 0xff, 0xff, 0xfd, 0xff, 0xff, 0xfb, + 0xff, 0xf8, 0xf, 0xff, 0xe0, 0x1f, 0xff, 0x80, + 0x3f, 0xfe, 0x0, 0x7f, 0xfc, 0x0, 0xff, 0xf8, + 0x1, 0xff, 0xf0, 0x3, 0xff, 0xe0, 0x7, 0xff, + 0xc0, 0xf, 0xff, 0x80, 0x1f, 0xff, 0x0, 0x3f, + 0xfe, 0x0, 0x7f, 0xfc, 0x0, 0xff, 0xf8, 0x1, + 0xff, 0xf0, 0x3, 0xff, 0xe0, 0x7, 0xff, 0xc0, + 0xf, 0xff, 0x80, 0x1f, 0xff, 0x0, 0x3f, 0xfe, + 0x0, 0x7f, 0xfc, 0x0, 0xff, 0xf8, 0x1, 0xff, + 0xf0, 0x3, 0xff, 0xe0, 0x7, 0xff, 0xc0, 0xf, + 0xff, 0x80, 0x1f, 0xff, 0x0, 0x3f, 0xfe, 0x0, + 0x7f, 0xfc, 0x0, 0xff, 0xf8, 0x1, 0xff, 0xf0, + 0x3, 0xff, 0xe0, 0x7, 0xff, 0xc0, 0xf, 0xff, + 0x80, 0x1f, 0xff, 0x0, 0x3f, 0xfe, 0x0, 0x7f, + 0xfc, 0x0, 0xff, 0xf8, 0x1, 0xff, 0xf0, 0x3, + 0xff, 0xe0, 0x7, 0xff, 0xc0, 0xf, 0xff, 0x80, + 0x1f, 0xff, 0x0, 0x3f, 0xfe, 0x0, 0x7f, 0xfc, + 0x0, 0xff, 0xf8, 0x1, 0xff, 0xf0, 0x3, 0xff, + 0xe0, 0x7, 0xff, 0xc0, 0xf, 0xff, 0x80, 0x1f, + 0xff, 0x0, 0x3f, 0xfe, 0x0, 0x7f, 0xfc, 0x0, + 0xff, 0xf8, 0x1, 0xff, 0xf0, 0x3, 0xff, 0xe0, + 0x7, 0xff, 0xc0, 0xf, 0xff, 0x80, 0x1f, 0xff, + 0x0, 0x3f, 0xfe, 0x0, 0x7f, 0xfc, 0x0, 0xff, + 0xf8, 0x1, 0xff, 0xf0, 0x3, 0xff, 0xe0, 0x7, + 0xff, 0xc0, 0xf, 0xff, 0x80, 0x1f, 0xff, 0x0, + 0x3f, 0xfe, 0x0, 0x7f, 0xfc, 0x0, 0xff, 0xf8, + 0x1, 0xff, 0xf0, 0x3, 0xff, 0xf0, 0x7, 0xff, + 0xf0, 0x7, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xdf, + 0xff, 0xff, 0xbf, 0xff, 0xff, 0x3f, 0xff, 0xfe, + 0x7f, 0xff, 0xfc, 0x7f, 0xff, 0xf8, 0x7f, 0xff, + 0xf0, 0x7f, 0xff, 0xe0, 0x7f, 0xff, 0xc0, 0x1f, + 0xff, 0x80, 0x7, 0xff, + + /* U+0029 ")" */ + 0xff, 0xe0, 0x1, 0xff, 0xf8, 0x3, 0xff, 0xfc, + 0x7, 0xff, 0xfe, 0xf, 0xff, 0xfe, 0x1f, 0xff, + 0xfe, 0x3f, 0xff, 0xfe, 0x7f, 0xff, 0xfc, 0xff, + 0xff, 0xf9, 0xff, 0xff, 0xfb, 0xff, 0xff, 0xf0, + 0xf, 0xff, 0xe0, 0xf, 0xff, 0xe0, 0xf, 0xff, + 0xc0, 0x1f, 0xff, 0x80, 0x1f, 0xff, 0x0, 0x3f, + 0xfe, 0x0, 0x7f, 0xfc, 0x0, 0xff, 0xf8, 0x1, + 0xff, 0xf0, 0x3, 0xff, 0xe0, 0x7, 0xff, 0xc0, + 0xf, 0xff, 0x80, 0x1f, 0xff, 0x0, 0x3f, 0xfe, + 0x0, 0x7f, 0xfc, 0x0, 0xff, 0xf8, 0x1, 0xff, + 0xf0, 0x3, 0xff, 0xe0, 0x7, 0xff, 0xc0, 0xf, + 0xff, 0x80, 0x1f, 0xff, 0x0, 0x3f, 0xfe, 0x0, + 0x7f, 0xfc, 0x0, 0xff, 0xf8, 0x1, 0xff, 0xf0, + 0x3, 0xff, 0xe0, 0x7, 0xff, 0xc0, 0xf, 0xff, + 0x80, 0x1f, 0xff, 0x0, 0x3f, 0xfe, 0x0, 0x7f, + 0xfc, 0x0, 0xff, 0xf8, 0x1, 0xff, 0xf0, 0x3, + 0xff, 0xe0, 0x7, 0xff, 0xc0, 0xf, 0xff, 0x80, + 0x1f, 0xff, 0x0, 0x3f, 0xfe, 0x0, 0x7f, 0xfc, + 0x0, 0xff, 0xf8, 0x1, 0xff, 0xf0, 0x3, 0xff, + 0xe0, 0x7, 0xff, 0xc0, 0xf, 0xff, 0x80, 0x1f, + 0xff, 0x0, 0x3f, 0xfe, 0x0, 0x7f, 0xfc, 0x0, + 0xff, 0xf8, 0x1, 0xff, 0xf0, 0x3, 0xff, 0xe0, + 0x7, 0xff, 0xc0, 0xf, 0xff, 0x80, 0x1f, 0xff, + 0x0, 0x3f, 0xfe, 0x0, 0x7f, 0xfc, 0x0, 0xff, + 0xf8, 0x1, 0xff, 0xf0, 0x3, 0xff, 0xe0, 0x7, + 0xff, 0xc0, 0xf, 0xff, 0x80, 0x1f, 0xff, 0x0, + 0x3f, 0xfe, 0x0, 0x7f, 0xfc, 0x0, 0xff, 0xf8, + 0x1, 0xff, 0xf0, 0x3, 0xff, 0xe0, 0x7, 0xff, + 0xc0, 0xf, 0xff, 0x80, 0x1f, 0xff, 0x0, 0x3f, + 0xfe, 0x0, 0xff, 0xfc, 0x1, 0xff, 0xf8, 0x7, + 0xff, 0xf0, 0x1f, 0xff, 0xdf, 0xff, 0xff, 0xbf, + 0xff, 0xff, 0x7f, 0xff, 0xfc, 0xff, 0xff, 0xf9, + 0xff, 0xff, 0xf3, 0xff, 0xff, 0xc7, 0xff, 0xff, + 0xf, 0xff, 0xfc, 0x1f, 0xff, 0xf0, 0x3f, 0xff, + 0x0, 0x7f, 0xf0, 0x0, + + /* U+002A "*" */ + 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x0, + 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xff, 0xc0, + 0x0, 0x0, 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, + 0x0, 0x3, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3, + 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7, 0xfc, 0x0, + 0x0, 0x0, 0x0, 0xf, 0xf8, 0x0, 0x0, 0x0, + 0x0, 0x1f, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x3f, + 0xe0, 0x0, 0x0, 0x0, 0x0, 0x7f, 0x80, 0x0, + 0x0, 0xc0, 0x0, 0xff, 0x0, 0x1, 0x81, 0xe0, + 0x0, 0xfe, 0x0, 0xf, 0x7, 0xf0, 0x1, 0xfc, + 0x0, 0x7e, 0xf, 0xf8, 0x3, 0xf8, 0x3, 0xfe, + 0x1f, 0xfc, 0x7, 0xf0, 0x3f, 0xfc, 0x7f, 0xfe, + 0xf, 0xe1, 0xff, 0xf8, 0xff, 0xff, 0x1f, 0xcf, + 0xff, 0xf9, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xf7, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xef, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xe7, 0xff, 0xff, 0xff, 0xff, + 0xfe, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xc0, 0x0, + 0x7, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, + 0xfc, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, + 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, + 0x7, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, + 0xf0, 0x0, 0x0, 0x0, 0x7f, 0xdf, 0xf0, 0x0, + 0x0, 0x1, 0xff, 0x3f, 0xf0, 0x0, 0x0, 0x7, + 0xfe, 0x3f, 0xf0, 0x0, 0x0, 0x1f, 0xf8, 0x3f, + 0xf0, 0x0, 0x0, 0x7f, 0xe0, 0x7f, 0xf0, 0x0, + 0x1, 0xff, 0xc0, 0x7f, 0xf0, 0x0, 0x7, 0xff, + 0x0, 0xff, 0xf0, 0x0, 0x1f, 0xfe, 0x0, 0xff, + 0xf0, 0x0, 0x7f, 0xf8, 0x1, 0xff, 0xe0, 0x0, + 0xff, 0xf0, 0x1, 0xff, 0xe0, 0x0, 0xff, 0xc0, + 0x1, 0xff, 0x80, 0x0, 0xff, 0x0, 0x3, 0xfc, + 0x0, 0x0, 0x7e, 0x0, 0x3, 0xf0, 0x0, 0x0, + 0x78, 0x0, 0x7, 0xc0, 0x0, 0x0, 0x70, 0x0, + 0x6, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8, 0x0, + 0x0, + + /* U+002B "+" */ + 0x0, 0x0, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, + 0xe0, 0x0, 0x0, 0x0, 0xf, 0xf8, 0x0, 0x0, + 0x0, 0x3, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, + 0x80, 0x0, 0x0, 0x0, 0x3f, 0xe0, 0x0, 0x0, + 0x0, 0xf, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xfe, + 0x0, 0x0, 0x0, 0x0, 0xff, 0x80, 0x0, 0x0, + 0x0, 0x3f, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xf8, + 0x0, 0x0, 0x0, 0x3, 0xfe, 0x0, 0x0, 0x0, + 0x0, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xe0, + 0x0, 0x0, 0x0, 0xf, 0xf8, 0x0, 0x0, 0x0, + 0x3, 0xfe, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xc0, 0x0, 0x3f, 0xe0, 0x0, + 0x0, 0x0, 0xf, 0xf8, 0x0, 0x0, 0x0, 0x3, + 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0x80, 0x0, + 0x0, 0x0, 0x3f, 0xe0, 0x0, 0x0, 0x0, 0xf, + 0xf8, 0x0, 0x0, 0x0, 0x3, 0xfe, 0x0, 0x0, + 0x0, 0x0, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, + 0xe0, 0x0, 0x0, 0x0, 0xf, 0xf8, 0x0, 0x0, + 0x0, 0x3, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, + 0x80, 0x0, 0x0, 0x0, 0x3f, 0xe0, 0x0, 0x0, + 0x0, 0xf, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xfe, + 0x0, 0x0, 0x0, 0x0, 0xff, 0x80, 0x0, 0x0, + 0x0, 0x3f, 0xe0, 0x0, 0x0, + + /* U+002C "," */ + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf0, 0xff, 0x7, 0xf8, 0x3f, + 0x83, 0xfc, 0x1f, 0xe0, 0xfe, 0xf, 0xf0, 0x7f, + 0x3, 0xf8, 0x1f, 0x81, 0xfc, 0xf, 0xe0, 0x7e, + 0x7, 0xf0, 0x3f, 0x0, + + /* U+002D "-" */ + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + + /* U+002E "." */ + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf0, + + /* U+002F "/" */ + 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, + 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, + 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, + 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, + 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, + 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, + 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xfc, + 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, + 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, + 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, + 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x3, + 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, + 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, + 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, + 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, + 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, + 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, + 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, + 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, + 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, + 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, + 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, + 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xff, + 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, + 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, + 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, + 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, + 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, + 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, + 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xfc, + 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, + 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, + 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, + 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x3, + 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, + 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, + 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, + 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, + 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x3, 0xff, + 0xc0, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, + 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, + 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, + 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, + 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, + 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, + 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xf, 0xff, + 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, + 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, + 0xfc, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, + 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, + 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, + 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, + 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x3f, 0xfc, + 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, + 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0xff, + 0xf0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, + 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x3, + 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, + 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, + 0x0, + + /* U+0030 "0" */ + 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xff, + 0xf8, 0x0, 0x0, 0x7f, 0xff, 0xfe, 0x0, 0x1, + 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0xff, + 0xc0, 0x7, 0xff, 0xff, 0xff, 0xe0, 0xf, 0xff, + 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xf0, + 0x1f, 0xff, 0xff, 0xff, 0xf8, 0x3f, 0xff, 0xff, + 0xff, 0xfc, 0x3f, 0xff, 0xff, 0xff, 0xfc, 0x7f, + 0xff, 0xff, 0xff, 0xfc, 0x7f, 0xff, 0x81, 0xff, + 0xfe, 0x7f, 0xfe, 0x0, 0x7f, 0xfe, 0x7f, 0xfc, + 0x0, 0x3f, 0xfe, 0xff, 0xfc, 0x0, 0x3f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xfc, + 0x0, 0x3f, 0xff, 0x7f, 0xfc, 0x0, 0x3f, 0xfe, + 0x7f, 0xfe, 0x0, 0x7f, 0xfe, 0x7f, 0xff, 0x81, + 0xff, 0xfe, 0x7f, 0xff, 0xff, 0xff, 0xfc, 0x3f, + 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xff, 0xff, 0xff, + 0xfc, 0x1f, 0xff, 0xff, 0xff, 0xf8, 0xf, 0xff, + 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xf0, + 0x7, 0xff, 0xff, 0xff, 0xe0, 0x3, 0xff, 0xff, + 0xff, 0xc0, 0x1, 0xff, 0xff, 0xff, 0x80, 0x0, + 0x7f, 0xff, 0xfe, 0x0, 0x0, 0x1f, 0xff, 0xf8, + 0x0, 0x0, 0x1, 0xff, 0x80, 0x0, + + /* U+0031 "1" */ + 0x0, 0x0, 0x3f, 0xe0, 0x0, 0x7, 0xfc, 0x0, + 0x1, 0xff, 0x80, 0x0, 0x3f, 0xf0, 0x0, 0xf, + 0xfe, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x7f, 0xf8, + 0x0, 0x1f, 0xff, 0x0, 0xf, 0xff, 0xe0, 0x3, + 0xff, 0xfc, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf0, 0x0, 0x3f, 0xfe, 0x0, + 0x7, 0xff, 0xc0, 0x0, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x7f, 0xfc, + 0x0, 0xf, 0xff, 0x80, 0x1, 0xff, 0xf0, 0x0, + 0x3f, 0xfe, 0x0, 0x7, 0xff, 0xc0, 0x0, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0x0, 0x3, 0xff, 0xe0, + 0x0, 0x7f, 0xfc, 0x0, 0xf, 0xff, 0x80, 0x1, + 0xff, 0xf0, 0x0, 0x3f, 0xfe, 0x0, 0x7, 0xff, + 0xc0, 0x0, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0x0, + 0x3, 0xff, 0xe0, 0x0, 0x7f, 0xfc, 0x0, 0xf, + 0xff, 0x80, 0x1, 0xff, 0xf0, 0x0, 0x3f, 0xfe, + 0x0, 0x7, 0xff, 0xc0, 0x0, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x7f, + 0xfc, 0x0, 0xf, 0xff, 0x80, 0x1, 0xff, 0xf0, + 0x0, 0x3f, 0xfe, 0x0, 0x7, 0xff, 0xc0, 0x0, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0x0, 0x3, 0xff, + 0xe0, 0x0, 0x7f, 0xfc, 0x0, 0xf, 0xff, 0x80, + 0x1, 0xff, 0xf0, 0x0, 0x3f, 0xfe, 0x0, 0x7, + 0xff, 0xc0, 0x0, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0x0, 0x3, 0xff, 0xe0, 0x0, 0x7f, 0xfc, 0x0, + 0xf, 0xff, 0x80, 0x1, 0xff, 0xf0, 0x0, 0x3f, + 0xfe, 0x0, 0x7, 0xff, 0xc0, 0x0, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0x0, 0x3, 0xff, 0xe0, 0x0, + 0x7f, 0xfc, 0x0, 0xf, 0xff, 0x80, 0x1, 0xff, + 0xf0, 0x0, 0x3f, 0xfe, 0x0, 0x7, 0xff, 0xc0, + 0x0, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0x0, 0x3, + 0xff, 0xe0, 0x0, 0x7f, 0xfc, 0x0, 0xf, 0xff, + 0x80, 0x1, 0xff, 0xf0, + + /* U+0032 "2" */ + 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, + 0xe0, 0x0, 0x1, 0xff, 0xff, 0xf0, 0x0, 0xf, + 0xff, 0xff, 0xf8, 0x0, 0x3f, 0xff, 0xff, 0xf8, + 0x0, 0xff, 0xff, 0xff, 0xf8, 0x3, 0xff, 0xff, + 0xff, 0xf8, 0xf, 0xff, 0xff, 0xff, 0xf8, 0x1f, + 0xff, 0xff, 0xff, 0xf0, 0x7f, 0xff, 0xff, 0xff, + 0xf0, 0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, + 0xff, 0xff, 0xe7, 0xff, 0xf8, 0x3f, 0xff, 0xcf, + 0xff, 0xc0, 0x1f, 0xff, 0x9f, 0xff, 0x0, 0x1f, + 0xff, 0x7f, 0xfe, 0x0, 0x3f, 0xff, 0xff, 0xf8, + 0x0, 0x7f, 0xff, 0xff, 0xf0, 0x0, 0x7f, 0xff, + 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, 0xc0, 0x1, + 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0xff, + 0x0, 0x7, 0xff, 0xff, 0xfe, 0x0, 0xf, 0xff, + 0xff, 0xfc, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x3f, 0xff, 0xff, 0xf0, 0x0, 0x7f, 0xff, 0xff, + 0xe0, 0x1, 0xff, 0xff, 0xff, 0xc0, 0x3, 0xff, + 0xef, 0xff, 0x80, 0x7, 0xff, 0xc0, 0x0, 0x0, + 0xf, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0x0, + 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x1, 0xff, + 0xf8, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, + 0xf, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0x80, + 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x1, 0xff, + 0xfc, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, + 0xf, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xff, 0x80, + 0x0, 0x0, 0xff, 0xfe, 0x0, 0x0, 0x1, 0xff, + 0xf8, 0x0, 0x0, 0x7, 0xff, 0xf0, 0x0, 0x0, + 0x1f, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0x0, + 0x0, 0x1, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, + 0xf8, 0x0, 0x0, 0x1f, 0xff, 0xe0, 0x0, 0x0, + 0x7f, 0xff, 0x80, 0x0, 0x1, 0xff, 0xfe, 0x0, + 0x0, 0x3, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, + 0xe0, 0x0, 0x0, 0x3f, 0xff, 0x80, 0x0, 0x0, + 0xff, 0xfe, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, + 0x0, 0x7, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, + 0xc0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, + 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, + 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, + 0x80, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, + 0x7f, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, + 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, + 0xc0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, + 0x1f, 0xff, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, + 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0xff, + 0xf8, 0x0, 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, + 0xfb, 0xff, 0xff, 0xff, 0xff, 0xf7, 0xff, 0xff, + 0xff, 0xff, 0xef, 0xff, 0xff, 0xff, 0xff, 0xdf, + 0xff, 0xff, 0xff, 0xff, 0xbf, 0xff, 0xff, 0xff, + 0xff, 0x7f, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, + 0xff, 0xff, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xfb, + 0xff, 0xff, 0xff, 0xff, 0xf7, 0xff, 0xff, 0xff, + 0xff, 0xef, 0xff, 0xff, 0xff, 0xff, 0xc0, + + /* U+0033 "3" */ + 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, + 0xe0, 0x0, 0x1, 0xff, 0xff, 0xf0, 0x0, 0xf, + 0xff, 0xff, 0xf8, 0x0, 0x3f, 0xff, 0xff, 0xf8, + 0x0, 0xff, 0xff, 0xff, 0xf8, 0x3, 0xff, 0xff, + 0xff, 0xf8, 0xf, 0xff, 0xff, 0xff, 0xf8, 0x1f, + 0xff, 0xff, 0xff, 0xf0, 0x7f, 0xff, 0xff, 0xff, + 0xf0, 0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, + 0xff, 0xff, 0xe7, 0xff, 0xf8, 0x3f, 0xff, 0xcf, + 0xff, 0xc0, 0x1f, 0xff, 0x9f, 0xff, 0x0, 0x1f, + 0xff, 0x7f, 0xfe, 0x0, 0x3f, 0xff, 0xff, 0xf8, + 0x0, 0x3f, 0xff, 0xff, 0xf0, 0x0, 0x7f, 0xff, + 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, 0xc0, 0x1, + 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0xff, + 0x0, 0x7, 0xff, 0xff, 0xfe, 0x0, 0xf, 0xff, + 0xff, 0xfc, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, + 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x1, 0xff, + 0xf0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, + 0x7, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xff, 0x0, + 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0xff, + 0xfc, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, + 0xf, 0xff, 0xe0, 0x0, 0x3f, 0xff, 0xff, 0x80, + 0x0, 0x7f, 0xff, 0xfe, 0x0, 0x0, 0xff, 0xff, + 0xf8, 0x0, 0x1, 0xff, 0xff, 0xe0, 0x0, 0x3, + 0xff, 0xff, 0x0, 0x0, 0x7, 0xff, 0xfc, 0x0, + 0x0, 0xf, 0xff, 0xfe, 0x0, 0x0, 0x1f, 0xff, + 0xfe, 0x0, 0x0, 0x3f, 0xff, 0xfe, 0x0, 0x0, + 0x7f, 0xff, 0xfe, 0x0, 0x0, 0xff, 0xff, 0xfe, + 0x0, 0x1, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, + 0xff, 0xfc, 0x0, 0x0, 0x1, 0xff, 0xfc, 0x0, + 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x1, 0xff, + 0xf0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, + 0x7, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0xc0, + 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x1f, + 0xff, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, + 0x0, 0x7f, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff, + 0xff, 0xc0, 0x1, 0xff, 0xff, 0xff, 0x80, 0x3, + 0xff, 0xff, 0xff, 0x0, 0x7, 0xff, 0xff, 0xfe, + 0x0, 0xf, 0xff, 0xff, 0xfc, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x3f, 0xff, 0xff, 0xf0, 0x0, + 0x7f, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, + 0xc0, 0x1, 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, + 0xff, 0xff, 0x0, 0xf, 0xff, 0xff, 0xff, 0x0, + 0x1f, 0xff, 0xbf, 0xfe, 0x0, 0x3f, 0xfe, 0x7f, + 0xfe, 0x0, 0xff, 0xfc, 0xff, 0xff, 0x7, 0xff, + 0xf9, 0xff, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, + 0xff, 0xff, 0xc3, 0xff, 0xff, 0xff, 0xff, 0x83, + 0xff, 0xff, 0xff, 0xfe, 0x7, 0xff, 0xff, 0xff, + 0xfc, 0x7, 0xff, 0xff, 0xff, 0xf0, 0x7, 0xff, + 0xff, 0xff, 0xc0, 0x7, 0xff, 0xff, 0xff, 0x0, + 0x7, 0xff, 0xff, 0xfc, 0x0, 0x3, 0xff, 0xff, + 0xf0, 0x0, 0x1, 0xff, 0xff, 0x0, 0x0, 0x0, + 0x7f, 0xf0, 0x0, 0x0, + + /* U+0034 "4" */ + 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, + 0xf, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7f, 0xff, + 0x0, 0x0, 0x0, 0x7, 0xff, 0xf8, 0x0, 0x0, + 0x0, 0x3f, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, + 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf0, 0x0, + 0x0, 0x0, 0xff, 0xff, 0x80, 0x0, 0x0, 0xf, + 0xff, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xe0, + 0x0, 0x0, 0x7, 0xff, 0xff, 0x0, 0x0, 0x0, + 0x3f, 0xff, 0xf8, 0x0, 0x0, 0x1, 0xff, 0xff, + 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xfe, 0x0, 0x0, + 0x0, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, + 0xff, 0x80, 0x0, 0x0, 0x7f, 0xff, 0xfc, 0x0, + 0x0, 0x7, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, + 0xff, 0xff, 0x0, 0x0, 0x1, 0xff, 0xff, 0xf8, + 0x0, 0x0, 0x1f, 0xff, 0xff, 0xc0, 0x0, 0x0, + 0xff, 0xff, 0xfe, 0x0, 0x0, 0xf, 0xff, 0xff, + 0xf0, 0x0, 0x0, 0x7f, 0xff, 0xff, 0x80, 0x0, + 0x3, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x3f, 0xfb, + 0xff, 0xe0, 0x0, 0x1, 0xff, 0xdf, 0xff, 0x0, + 0x0, 0x1f, 0xfc, 0xff, 0xf8, 0x0, 0x0, 0xff, + 0xe7, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x3f, 0xfe, + 0x0, 0x0, 0x7f, 0xf1, 0xff, 0xf0, 0x0, 0x3, + 0xff, 0x8f, 0xff, 0x80, 0x0, 0x3f, 0xf8, 0x7f, + 0xfc, 0x0, 0x1, 0xff, 0xc3, 0xff, 0xe0, 0x0, + 0x1f, 0xfe, 0x1f, 0xff, 0x0, 0x0, 0xff, 0xe0, + 0xff, 0xf8, 0x0, 0x7, 0xff, 0x7, 0xff, 0xc0, + 0x0, 0x7f, 0xf8, 0x3f, 0xfe, 0x0, 0x3, 0xff, + 0x81, 0xff, 0xf0, 0x0, 0x3f, 0xfc, 0xf, 0xff, + 0x80, 0x1, 0xff, 0xc0, 0x7f, 0xfc, 0x0, 0x1f, + 0xfe, 0x3, 0xff, 0xe0, 0x0, 0xff, 0xf0, 0x1f, + 0xff, 0x0, 0x7, 0xff, 0x0, 0xff, 0xf8, 0x0, + 0x7f, 0xf8, 0x7, 0xff, 0xc0, 0x3, 0xff, 0x80, + 0x3f, 0xfe, 0x0, 0x3f, 0xfc, 0x1, 0xff, 0xf0, + 0x1, 0xff, 0xe0, 0xf, 0xff, 0x80, 0xf, 0xfe, + 0x0, 0x7f, 0xfc, 0x0, 0xff, 0xf0, 0x3, 0xff, + 0xe0, 0x7, 0xff, 0x0, 0x1f, 0xff, 0x0, 0x7f, + 0xf8, 0x0, 0xff, 0xf8, 0x3, 0xff, 0xc0, 0x7, + 0xff, 0xc0, 0x3f, 0xfc, 0x0, 0x3f, 0xfe, 0x1, + 0xff, 0xe0, 0x1, 0xff, 0xf0, 0xf, 0xff, 0x0, + 0xf, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x7f, 0xfc, + 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, 0x0, 0x3f, + 0xfe, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, + 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x0, + 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, + 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, + 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x7, 0xff, + 0xc0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, + 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, + 0xff, 0x80, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, + 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, + 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, + 0x0, + + /* U+0035 "5" */ + 0x3f, 0xff, 0xff, 0xff, 0xf8, 0x7f, 0xff, 0xff, + 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xe1, 0xff, + 0xff, 0xff, 0xff, 0xc3, 0xff, 0xff, 0xff, 0xff, + 0x87, 0xff, 0xff, 0xff, 0xff, 0xf, 0xff, 0xff, + 0xff, 0xfe, 0x1f, 0xff, 0xff, 0xff, 0xfc, 0x3f, + 0xff, 0xff, 0xff, 0xf8, 0x7f, 0xff, 0xff, 0xff, + 0xf0, 0xff, 0xff, 0xff, 0xff, 0xe1, 0xff, 0xff, + 0xff, 0xff, 0xc3, 0xff, 0xc0, 0x0, 0x0, 0x7, + 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, + 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xfc, + 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x1, + 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, + 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0xf, 0xff, + 0x80, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, + 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, + 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x1, 0xff, + 0xf0, 0x1f, 0xe0, 0x3, 0xff, 0xe0, 0xff, 0xf8, + 0x7, 0xff, 0xc7, 0xff, 0xf8, 0xf, 0xff, 0x9f, + 0xff, 0xf8, 0x1f, 0xff, 0x7f, 0xff, 0xf8, 0x3f, + 0xfe, 0xff, 0xff, 0xf8, 0x7f, 0xff, 0xff, 0xff, + 0xf0, 0xff, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, + 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, 0xff, 0xe7, + 0xff, 0xff, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xff, + 0xff, 0xbf, 0xff, 0xe0, 0xff, 0xff, 0x7f, 0xff, + 0x0, 0x7f, 0xff, 0xff, 0xfc, 0x0, 0x7f, 0xff, + 0xff, 0xf8, 0x0, 0xff, 0xff, 0xff, 0xe0, 0x0, + 0xff, 0xff, 0xff, 0xc0, 0x1, 0xff, 0xff, 0xff, + 0x80, 0x3, 0xff, 0xff, 0xff, 0x0, 0x7, 0xff, + 0xff, 0xfe, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, + 0x1f, 0xff, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, + 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0xff, + 0xf8, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, + 0x3, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0xc0, + 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x1f, + 0xff, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0xf0, + 0x0, 0x7f, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff, + 0xff, 0xc0, 0x1, 0xff, 0xff, 0xff, 0x80, 0x3, + 0xff, 0xff, 0xff, 0x0, 0x7, 0xff, 0xff, 0xfe, + 0x0, 0xf, 0xff, 0xff, 0xfc, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x3f, 0xff, 0xff, 0xf0, 0x0, + 0x7f, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, + 0xc0, 0x1, 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, + 0xff, 0xff, 0x80, 0xf, 0xff, 0xdf, 0xff, 0x0, + 0x1f, 0xff, 0x3f, 0xff, 0x0, 0x7f, 0xfe, 0x7f, + 0xff, 0x83, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, + 0xf8, 0xff, 0xff, 0xff, 0xff, 0xe1, 0xff, 0xff, + 0xff, 0xff, 0xc1, 0xff, 0xff, 0xff, 0xff, 0x3, + 0xff, 0xff, 0xff, 0xfe, 0x3, 0xff, 0xff, 0xff, + 0xf8, 0x3, 0xff, 0xff, 0xff, 0xe0, 0x3, 0xff, + 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0xfe, 0x0, + 0x1, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xff, 0xff, + 0x80, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, + + /* U+0036 "6" */ + 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, + 0xf8, 0x0, 0x0, 0x7f, 0xff, 0xfe, 0x0, 0x1, + 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0xff, + 0xc0, 0x7, 0xff, 0xff, 0xff, 0xe0, 0xf, 0xff, + 0xff, 0xff, 0xf0, 0x1f, 0xff, 0xff, 0xff, 0xf8, + 0x1f, 0xff, 0xff, 0xff, 0xf8, 0x3f, 0xff, 0xff, + 0xff, 0xfc, 0x3f, 0xff, 0xff, 0xff, 0xfc, 0x7f, + 0xff, 0xff, 0xff, 0xfe, 0x7f, 0xff, 0x81, 0xff, + 0xfe, 0x7f, 0xff, 0x0, 0x7f, 0xfe, 0x7f, 0xfe, + 0x0, 0x3f, 0xfe, 0xff, 0xfc, 0x0, 0x3f, 0xff, + 0xff, 0xfc, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, + 0xff, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, + 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xff, + 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, + 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf8, + 0x0, 0x0, 0x0, 0xff, 0xf8, 0x7, 0xfc, 0x0, + 0xff, 0xf8, 0x1f, 0xff, 0x0, 0xff, 0xf8, 0x7f, + 0xff, 0xc0, 0xff, 0xf8, 0xff, 0xff, 0xe0, 0xff, + 0xf9, 0xff, 0xff, 0xf0, 0xff, 0xfb, 0xff, 0xff, + 0xf8, 0xff, 0xfb, 0xff, 0xff, 0xf8, 0xff, 0xff, + 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xfc, + 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, + 0xff, 0xfe, 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, + 0xff, 0x81, 0xff, 0xfe, 0xff, 0xfe, 0x0, 0x7f, + 0xff, 0xff, 0xfc, 0x0, 0x3f, 0xff, 0xff, 0xfc, + 0x0, 0x3f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xfc, + 0x0, 0x3f, 0xff, 0x7f, 0xfc, 0x0, 0x3f, 0xfe, + 0x7f, 0xfe, 0x0, 0x7f, 0xfe, 0x7f, 0xff, 0x81, + 0xff, 0xfe, 0x7f, 0xff, 0xff, 0xff, 0xfc, 0x3f, + 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xff, 0xff, 0xff, + 0xfc, 0x1f, 0xff, 0xff, 0xff, 0xf8, 0xf, 0xff, + 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xf0, + 0x7, 0xff, 0xff, 0xff, 0xe0, 0x3, 0xff, 0xff, + 0xff, 0xc0, 0x1, 0xff, 0xff, 0xff, 0x80, 0x0, + 0x7f, 0xff, 0xfe, 0x0, 0x0, 0x1f, 0xff, 0xf8, + 0x0, 0x0, 0x1, 0xff, 0x80, 0x0, + + /* U+0037 "7" */ + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x1f, + 0xff, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, + 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xfe, + 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, + 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, + 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0xff, + 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, + 0x0, 0xff, 0xf8, 0x0, 0x0, 0x1, 0xff, 0xf8, + 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x1, + 0xff, 0xf0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, + 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x3, 0xff, + 0xe0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, + 0x7, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0xc0, + 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x7, + 0xff, 0xc0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, + 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, + 0x80, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, + 0x1f, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, + 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x3f, + 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, + 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xfe, + 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, + 0x7f, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, + 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xff, + 0xf8, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, + 0x1, 0xff, 0xf8, 0x0, 0x0, 0x1, 0xff, 0xf0, + 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x3, + 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, + 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, + 0xe0, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, + 0x7, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, 0xc0, + 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0xf, + 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, + 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xff, + 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, + 0x3f, 0xff, 0x0, 0x0, 0x0, 0x3f, 0xff, 0x0, + 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x3f, + 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, + 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x7f, 0xfc, + 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, + 0xff, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, + 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x1, 0xff, + 0xf8, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, + 0x1, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xf0, + 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0x3, + 0xff, 0xe0, 0x0, 0x0, + + /* U+0038 "8" */ + 0x0, 0x0, 0xff, 0xc0, 0x0, 0x0, 0x7, 0xff, + 0xfe, 0x0, 0x0, 0xf, 0xff, 0xff, 0xc0, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xfe, 0x0, 0x1f, 0xff, 0xff, 0xff, 0x80, 0x1f, + 0xff, 0xff, 0xff, 0xe0, 0x1f, 0xff, 0xff, 0xff, + 0xf8, 0xf, 0xff, 0xff, 0xff, 0xfc, 0xf, 0xff, + 0xff, 0xff, 0xff, 0x7, 0xff, 0xff, 0xff, 0xff, + 0x87, 0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xfc, + 0xf, 0xff, 0xf1, 0xff, 0xf8, 0x1, 0xff, 0xf8, + 0xff, 0xf8, 0x0, 0x7f, 0xfc, 0xff, 0xfc, 0x0, + 0x3f, 0xff, 0x7f, 0xfc, 0x0, 0xf, 0xff, 0xbf, + 0xfe, 0x0, 0x7, 0xff, 0xdf, 0xff, 0x0, 0x3, + 0xff, 0xef, 0xff, 0x80, 0x1, 0xff, 0xf7, 0xff, + 0xc0, 0x0, 0xff, 0xfb, 0xff, 0xe0, 0x0, 0x7f, + 0xfd, 0xff, 0xf0, 0x0, 0x3f, 0xfe, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0x7f, 0xfc, 0x0, 0xf, 0xff, + 0xbf, 0xfe, 0x0, 0x7, 0xff, 0xdf, 0xff, 0x0, + 0x3, 0xff, 0xef, 0xff, 0x80, 0x1, 0xff, 0xf7, + 0xff, 0xc0, 0x0, 0xff, 0xfb, 0xff, 0xe0, 0x0, + 0x7f, 0xf8, 0xff, 0xf0, 0x0, 0x3f, 0xfc, 0x7f, + 0xfc, 0x0, 0x3f, 0xfe, 0x3f, 0xfe, 0x0, 0x1f, + 0xff, 0xf, 0xff, 0x80, 0x1f, 0xff, 0x7, 0xff, + 0xf0, 0x3f, 0xff, 0x81, 0xff, 0xff, 0xff, 0xff, + 0x80, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3f, 0xff, + 0xff, 0xff, 0x80, 0xf, 0xff, 0xff, 0xff, 0x80, + 0x3, 0xff, 0xff, 0xff, 0x80, 0x0, 0x7f, 0xff, + 0xff, 0x80, 0x0, 0xff, 0xff, 0xff, 0xe0, 0x0, + 0xff, 0xff, 0xff, 0xf8, 0x0, 0xff, 0xff, 0xff, + 0xfe, 0x0, 0xff, 0xff, 0xff, 0xff, 0x80, 0xff, + 0xff, 0xff, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xff, + 0xf8, 0x7f, 0xff, 0x83, 0xff, 0xfc, 0x3f, 0xff, + 0x0, 0x7f, 0xff, 0x3f, 0xff, 0x0, 0x1f, 0xff, + 0x9f, 0xff, 0x0, 0x7, 0xff, 0xcf, 0xff, 0x80, + 0x3, 0xff, 0xef, 0xff, 0x80, 0x0, 0xff, 0xff, + 0xff, 0xc0, 0x0, 0x7f, 0xff, 0xff, 0xe0, 0x0, + 0x3f, 0xff, 0xff, 0xf0, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0xf, 0xff, 0xff, 0xfc, 0x0, 0x7, + 0xff, 0xff, 0xfe, 0x0, 0x3, 0xff, 0xff, 0xff, + 0x0, 0x1, 0xff, 0xff, 0xff, 0x80, 0x0, 0xff, + 0xff, 0xff, 0xc0, 0x0, 0x7f, 0xff, 0xff, 0xe0, + 0x0, 0x3f, 0xff, 0xff, 0xf0, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0xf, 0xff, 0xff, 0xfc, 0x0, + 0x7, 0xff, 0xff, 0xfe, 0x0, 0x3, 0xff, 0xff, + 0xff, 0x0, 0x1, 0xff, 0xff, 0xff, 0x80, 0x0, + 0xff, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, + 0xf0, 0x0, 0x7f, 0xfe, 0xff, 0xfc, 0x0, 0x7f, + 0xfe, 0x7f, 0xff, 0x0, 0x7f, 0xff, 0x3f, 0xff, + 0xe0, 0xff, 0xff, 0x9f, 0xff, 0xff, 0xff, 0xff, + 0xc7, 0xff, 0xff, 0xff, 0xff, 0xc3, 0xff, 0xff, + 0xff, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xe0, + 0x7f, 0xff, 0xff, 0xff, 0xe0, 0x1f, 0xff, 0xff, + 0xff, 0xf0, 0x7, 0xff, 0xff, 0xff, 0xf0, 0x1, + 0xff, 0xff, 0xff, 0xf0, 0x0, 0x7f, 0xff, 0xff, + 0xe0, 0x0, 0xf, 0xff, 0xff, 0xe0, 0x0, 0x1, + 0xff, 0xff, 0xc0, 0x0, 0x0, 0xf, 0xfe, 0x0, + 0x0, + + /* U+0039 "9" */ + 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xff, + 0xf8, 0x0, 0x0, 0x7f, 0xff, 0xfe, 0x0, 0x1, + 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0xff, + 0xc0, 0x7, 0xff, 0xff, 0xff, 0xe0, 0xf, 0xff, + 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xf0, + 0x1f, 0xff, 0xff, 0xff, 0xf8, 0x3f, 0xff, 0xff, + 0xff, 0xfc, 0x3f, 0xff, 0xff, 0xff, 0xfc, 0x7f, + 0xff, 0xff, 0xff, 0xfc, 0x7f, 0xff, 0x81, 0xff, + 0xfe, 0x7f, 0xfe, 0x0, 0x7f, 0xfe, 0x7f, 0xfc, + 0x0, 0x3f, 0xfe, 0xff, 0xfc, 0x0, 0x3f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xfc, 0x0, 0x3f, 0xff, + 0xff, 0xfc, 0x0, 0x3f, 0xff, 0xff, 0xfe, 0x0, + 0x7f, 0xff, 0x7f, 0xff, 0x81, 0xff, 0xff, 0x7f, + 0xff, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, + 0xff, 0x7f, 0xff, 0xff, 0xff, 0xff, 0x3f, 0xff, + 0xff, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, + 0x1f, 0xff, 0xff, 0xdf, 0xff, 0x1f, 0xff, 0xff, + 0xdf, 0xff, 0xf, 0xff, 0xff, 0x9f, 0xff, 0x7, + 0xff, 0xff, 0x1f, 0xff, 0x3, 0xff, 0xfe, 0x1f, + 0xff, 0x0, 0xff, 0xf8, 0x1f, 0xff, 0x0, 0x3f, + 0xe0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xff, + 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, + 0x1f, 0xff, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, + 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x1f, + 0xff, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x3f, 0xff, 0xff, 0xfc, + 0x0, 0x3f, 0xfe, 0x7f, 0xfc, 0x0, 0x7f, 0xfe, + 0x7f, 0xfe, 0x0, 0xff, 0xfe, 0x7f, 0xff, 0x81, + 0xff, 0xfe, 0x7f, 0xff, 0xff, 0xff, 0xfc, 0x3f, + 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xff, 0xff, 0xff, + 0xfc, 0x1f, 0xff, 0xff, 0xff, 0xf8, 0x1f, 0xff, + 0xff, 0xff, 0xf8, 0xf, 0xff, 0xff, 0xff, 0xf0, + 0x7, 0xff, 0xff, 0xff, 0xe0, 0x3, 0xff, 0xff, + 0xff, 0xc0, 0x1, 0xff, 0xff, 0xff, 0x80, 0x0, + 0x7f, 0xff, 0xfe, 0x0, 0x0, 0x1f, 0xff, 0xf8, + 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, + + /* U+003A ":" */ + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, + + /* U+003B ";" */ + 0x7f, 0xfd, 0xff, 0xf7, 0xff, 0xdf, 0xff, 0x7f, + 0xfd, 0xff, 0xf7, 0xff, 0xdf, 0xff, 0x7f, 0xfd, + 0xff, 0xf7, 0xff, 0xdf, 0xff, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7, 0xff, 0xdf, 0xff, 0x7f, 0xfd, 0xff, 0xf7, + 0xff, 0xdf, 0xff, 0x7f, 0xfd, 0xff, 0xf7, 0xff, + 0xdf, 0xff, 0x7f, 0xfd, 0xff, 0xf0, 0x7f, 0x81, + 0xfe, 0x7, 0xf0, 0x3f, 0xc0, 0xfe, 0x7, 0xf8, + 0x1f, 0xc0, 0x7f, 0x3, 0xf8, 0xf, 0xe0, 0x3f, + 0x1, 0xfc, 0x7, 0xe0, 0x1f, 0x80, 0xfe, 0x0, + + /* U+003C "<" */ + 0x0, 0x0, 0x0, 0x0, 0x18, 0x0, 0x0, 0x0, + 0x3, 0xc0, 0x0, 0x0, 0x0, 0xfe, 0x0, 0x0, + 0x0, 0x1f, 0xf0, 0x0, 0x0, 0x3, 0xff, 0x80, + 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x1f, 0xff, + 0xe0, 0x0, 0x3, 0xff, 0xff, 0x0, 0x0, 0x7f, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0x80, 0x3, + 0xff, 0xff, 0xf0, 0x0, 0x7f, 0xff, 0xfe, 0x0, + 0x1f, 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0xf0, + 0x0, 0x7f, 0xff, 0xfe, 0x0, 0x1f, 0xff, 0xff, + 0x80, 0x0, 0xff, 0xff, 0xf0, 0x0, 0x7, 0xff, + 0xfc, 0x0, 0x0, 0x3f, 0xff, 0x80, 0x0, 0x1, + 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, + 0x0, 0x7f, 0xff, 0x0, 0x0, 0x3, 0xff, 0xfe, + 0x0, 0x0, 0x1f, 0xff, 0xfc, 0x0, 0x0, 0xff, + 0xff, 0xfc, 0x0, 0x1, 0xff, 0xff, 0xf8, 0x0, + 0x1, 0xff, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xff, + 0xf0, 0x0, 0x7, 0xff, 0xff, 0xe0, 0x0, 0xf, + 0xff, 0xff, 0xe0, 0x0, 0xf, 0xff, 0xff, 0xc0, + 0x0, 0x1f, 0xff, 0xff, 0x0, 0x0, 0x3f, 0xff, + 0xf8, 0x0, 0x0, 0x3f, 0xff, 0xc0, 0x0, 0x0, + 0x7f, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, + 0x0, 0x0, 0xff, 0x80, 0x0, 0x0, 0x1, 0xfc, + 0x0, 0x0, 0x0, 0x3, 0xe0, 0x0, 0x0, 0x0, + 0x3, + + /* U+003D "=" */ + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, + + /* U+003E ">" */ + 0x80, 0x0, 0x0, 0x0, 0x7, 0x80, 0x0, 0x0, + 0x0, 0x3f, 0x0, 0x0, 0x0, 0x1, 0xfe, 0x0, + 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x7f, + 0xfc, 0x0, 0x0, 0x3, 0xff, 0xf8, 0x0, 0x0, + 0x1f, 0xff, 0xf8, 0x0, 0x0, 0xff, 0xff, 0xf0, + 0x0, 0x7, 0xff, 0xff, 0xe0, 0x0, 0xf, 0xff, + 0xff, 0xe0, 0x0, 0xf, 0xff, 0xff, 0xc0, 0x0, + 0x1f, 0xff, 0xff, 0x80, 0x0, 0x1f, 0xff, 0xff, + 0x80, 0x0, 0x3f, 0xff, 0xff, 0x0, 0x0, 0x7f, + 0xff, 0xfe, 0x0, 0x0, 0x7f, 0xff, 0xf8, 0x0, + 0x0, 0xff, 0xff, 0xc0, 0x0, 0x1, 0xff, 0xfe, + 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0xf, + 0xff, 0x80, 0x0, 0x1, 0xff, 0xfc, 0x0, 0x0, + 0x7f, 0xff, 0xe0, 0x0, 0xf, 0xff, 0xff, 0x0, + 0x1, 0xff, 0xff, 0xf8, 0x0, 0x7f, 0xff, 0xfe, + 0x0, 0xf, 0xff, 0xff, 0xc0, 0x1, 0xff, 0xff, + 0xf8, 0x0, 0x7f, 0xff, 0xfe, 0x0, 0xf, 0xff, + 0xff, 0xc0, 0x1, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xfe, 0x0, 0x0, 0xff, 0xff, 0xc0, 0x0, + 0x7, 0xff, 0xf8, 0x0, 0x0, 0x3f, 0xfe, 0x0, + 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0xf, 0xf8, + 0x0, 0x0, 0x0, 0x7f, 0x0, 0x0, 0x0, 0x3, + 0xc0, 0x0, 0x0, 0x0, 0x18, 0x0, 0x0, 0x0, + 0x0, + + /* U+003F "?" */ + 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, + 0xe0, 0x0, 0x1, 0xff, 0xff, 0xf0, 0x0, 0xf, + 0xff, 0xff, 0xf8, 0x0, 0x3f, 0xff, 0xff, 0xf8, + 0x0, 0xff, 0xff, 0xff, 0xf8, 0x3, 0xff, 0xff, + 0xff, 0xf8, 0xf, 0xff, 0xff, 0xff, 0xf8, 0x1f, + 0xff, 0xff, 0xff, 0xf0, 0x7f, 0xff, 0xff, 0xff, + 0xf0, 0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, + 0xff, 0xff, 0xe7, 0xff, 0xf8, 0x3f, 0xff, 0xcf, + 0xff, 0xc0, 0x1f, 0xff, 0x9f, 0xff, 0x0, 0x1f, + 0xff, 0x7f, 0xfe, 0x0, 0x3f, 0xff, 0xff, 0xf8, + 0x0, 0x3f, 0xff, 0xff, 0xf0, 0x0, 0x7f, 0xff, + 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, 0xc0, 0x1, + 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0xff, + 0x0, 0x7, 0xff, 0xff, 0xfe, 0x0, 0xf, 0xff, + 0xff, 0xfc, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x3f, 0xff, 0xff, 0xf0, 0x0, 0x7f, 0xff, 0xff, + 0xe0, 0x1, 0xff, 0xff, 0xff, 0xc0, 0x3, 0xff, + 0xef, 0xff, 0x80, 0x7, 0xff, 0xdf, 0xff, 0x0, + 0xf, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, 0x0, + 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x1, 0xff, + 0xf8, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, + 0xf, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0x80, + 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x1, 0xff, + 0xf8, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, + 0xf, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xff, 0x80, + 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x1, 0xff, + 0xf8, 0x0, 0x0, 0x7, 0xff, 0xf0, 0x0, 0x0, + 0xf, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xff, 0x0, + 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x1, 0xff, + 0xf8, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, + 0xf, 0xff, 0xc0, 0x0, 0x0, 0x1f, 0xff, 0x0, + 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x7f, + 0xf8, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, + 0x3, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0x80, + 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x1f, + 0xfe, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, + 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf0, + 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x3, + 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, + 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0xff, + 0xf8, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, + 0x3, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0xc0, + 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x1f, + 0xff, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, + 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xf8, + 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, + + /* U+0040 "@" */ + 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xff, + 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7f, + 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x7, 0xff, 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, + 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xff, + 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x3, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x0, + 0x3f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x0, + 0x0, 0x1, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xc0, 0x3, + 0xff, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xff, 0xf0, + 0x0, 0x0, 0xff, 0xff, 0xc0, 0x0, 0x3, 0xff, + 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0x0, 0x0, + 0x1f, 0xff, 0xe0, 0x0, 0x0, 0x0, 0xff, 0xfe, + 0x0, 0x0, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x0, + 0xff, 0xf8, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, + 0x0, 0x1, 0xff, 0xf0, 0x0, 0x1f, 0xff, 0x0, + 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0xff, + 0xf8, 0x0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, + 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x0, 0x1f, + 0xfe, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x3f, 0xfc, 0x0, 0xff, 0xf0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x7, 0xff, 0xc0, + 0x0, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x1f, + 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, 0xff, + 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xf, 0xfe, 0x3, 0xff, 0xc0, 0x0, 0x7f, 0x80, + 0xff, 0xf0, 0x3f, 0xf8, 0x1f, 0xfe, 0x0, 0x7, + 0xff, 0x83, 0xff, 0x80, 0x7f, 0xe0, 0x7f, 0xf8, + 0x0, 0x7f, 0xff, 0xf, 0xfe, 0x1, 0xff, 0x81, + 0xff, 0xc0, 0x3, 0xff, 0xfe, 0x3f, 0xf8, 0x7, + 0xfe, 0xf, 0xff, 0x0, 0x1f, 0xff, 0xfc, 0xff, + 0xe0, 0x1f, 0xfc, 0x3f, 0xf8, 0x0, 0xff, 0xff, + 0xf3, 0xff, 0x80, 0x3f, 0xf0, 0xff, 0xe0, 0x3, + 0xff, 0xff, 0xff, 0xfe, 0x0, 0xff, 0xc7, 0xff, + 0x0, 0x1f, 0xff, 0xff, 0xff, 0xf8, 0x3, 0xff, + 0x1f, 0xfc, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xe0, + 0xf, 0xfc, 0x7f, 0xf0, 0x3, 0xff, 0xff, 0xff, + 0xff, 0x80, 0x3f, 0xf3, 0xff, 0x80, 0xf, 0xff, + 0xff, 0xff, 0xfe, 0x0, 0xff, 0xcf, 0xfe, 0x0, + 0x3f, 0xff, 0xff, 0xff, 0xf0, 0x3, 0xff, 0x3f, + 0xf8, 0x1, 0xff, 0xfc, 0xf, 0xff, 0xc0, 0xf, + 0xfc, 0xff, 0xe0, 0x7, 0xff, 0xe0, 0x1f, 0xff, + 0x0, 0x3f, 0xf7, 0xff, 0x0, 0x1f, 0xff, 0x0, + 0x3f, 0xfc, 0x0, 0xff, 0xdf, 0xfc, 0x0, 0x7f, + 0xf8, 0x0, 0xff, 0xf0, 0x3, 0xff, 0x7f, 0xf0, + 0x1, 0xff, 0xe0, 0x3, 0xff, 0xc0, 0xf, 0xfd, + 0xff, 0xc0, 0x7, 0xff, 0x0, 0xf, 0xff, 0x0, + 0x3f, 0xf7, 0xff, 0x0, 0x3f, 0xfc, 0x0, 0x3f, + 0xfc, 0x0, 0xff, 0xdf, 0xfc, 0x0, 0xff, 0xf0, + 0x0, 0xff, 0xf0, 0x3, 0xff, 0xff, 0xf0, 0x3, + 0xff, 0xc0, 0x3, 0xff, 0x80, 0x1f, 0xff, 0xff, + 0x80, 0xf, 0xff, 0x0, 0xf, 0xfe, 0x0, 0x7f, + 0xef, 0xfe, 0x0, 0x3f, 0xfc, 0x0, 0x3f, 0xf8, + 0x1, 0xff, 0xbf, 0xf8, 0x0, 0xff, 0xf0, 0x0, + 0xff, 0xe0, 0x7, 0xfe, 0xff, 0xe0, 0x3, 0xff, + 0xc0, 0x3, 0xff, 0x80, 0x1f, 0xfb, 0xff, 0x80, + 0xf, 0xfe, 0x0, 0x1f, 0xfe, 0x0, 0x7f, 0xef, + 0xfe, 0x0, 0x3f, 0xf8, 0x0, 0x7f, 0xf8, 0x3, + 0xff, 0x3f, 0xf8, 0x1, 0xff, 0xe0, 0x1, 0xff, + 0xe0, 0xf, 0xfc, 0xff, 0xe0, 0x7, 0xff, 0x80, + 0x7, 0xff, 0x80, 0x3f, 0xf3, 0xff, 0x80, 0x1f, + 0xfe, 0x0, 0x1f, 0xfc, 0x0, 0xff, 0xcf, 0xfe, + 0x0, 0x7f, 0xf8, 0x0, 0x7f, 0xf0, 0x7, 0xfe, + 0x3f, 0xf8, 0x1, 0xff, 0xe0, 0x1, 0xff, 0xc0, + 0x1f, 0xf8, 0xff, 0xe0, 0x7, 0xff, 0x80, 0xf, + 0xff, 0x0, 0x7f, 0xe3, 0xff, 0x80, 0x1f, 0xfe, + 0x0, 0x3f, 0xfc, 0x3, 0xff, 0xf, 0xfe, 0x0, + 0x7f, 0xfc, 0x1, 0xff, 0xf0, 0xf, 0xfc, 0x3f, + 0xf8, 0x1, 0xff, 0xf0, 0x7, 0xff, 0xc0, 0x7f, + 0xe0, 0xff, 0xe0, 0x7, 0xff, 0xf0, 0x7f, 0xff, + 0x3, 0xff, 0x83, 0xff, 0x80, 0x1f, 0xff, 0xff, + 0xff, 0xfe, 0x1f, 0xfc, 0xf, 0xff, 0x0, 0x7f, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x1f, 0xfc, + 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, + 0x7f, 0xf0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xfc, 0x1, 0xff, 0xc0, 0xf, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xe0, 0x7, 0xff, 0x0, 0x1f, 0xff, + 0xfe, 0xff, 0xff, 0xff, 0x0, 0x1f, 0xfe, 0x0, + 0x7f, 0xff, 0xf1, 0xff, 0xff, 0xfc, 0x0, 0x3f, + 0xf8, 0x0, 0xff, 0xff, 0x87, 0xff, 0xff, 0xc0, + 0x0, 0xff, 0xe0, 0x1, 0xff, 0xfc, 0xf, 0xff, + 0xfe, 0x0, 0x3, 0xff, 0xc0, 0x3, 0xff, 0xe0, + 0x3f, 0xff, 0xe0, 0x0, 0xf, 0xff, 0x0, 0x1, + 0xfc, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x1f, 0xfe, + 0x0, 0x0, 0x0, 0x0, 0x3f, 0xe0, 0x0, 0x0, + 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, + 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1f, + 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x10, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x0, + 0x0, 0x0, 0xc0, 0x0, 0x3, 0xff, 0xf8, 0x0, + 0x0, 0x0, 0x0, 0x7, 0x0, 0x0, 0x7, 0xff, + 0xf0, 0x0, 0x0, 0x0, 0x0, 0x7c, 0x0, 0x0, + 0xf, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x7, 0xf0, + 0x0, 0x0, 0x3f, 0xff, 0xf0, 0x0, 0x0, 0x0, + 0x7f, 0xc0, 0x0, 0x0, 0x7f, 0xff, 0xf8, 0x0, + 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0xff, 0xff, + 0xfe, 0x0, 0x7, 0xff, 0xfc, 0x0, 0x0, 0x1, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, + 0x0, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xc0, 0x0, 0x0, 0x7, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xf, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x0, 0x0, + 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x0, + 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, 0xff, 0xff, + 0xc0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, 0xff, + 0xff, 0xf8, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3, + 0xff, 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x7f, 0xff, 0x0, 0x0, 0x0, 0x0, + + /* U+0041 "A" */ + 0x0, 0x3, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, + 0xff, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xf0, + 0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0, + 0x7, 0xff, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xff, + 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xf8, 0x0, + 0x0, 0x1, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x7, + 0xff, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xff, 0xff, + 0x0, 0x0, 0x0, 0xff, 0xff, 0xfc, 0x0, 0x0, + 0x3, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, + 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0x0, + 0x0, 0x0, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x3, + 0xff, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfd, 0xff, + 0xe0, 0x0, 0x0, 0x7f, 0xf7, 0xff, 0x80, 0x0, + 0x1, 0xff, 0xdf, 0xfe, 0x0, 0x0, 0x7, 0xff, + 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfd, 0xff, 0xe0, + 0x0, 0x0, 0x7f, 0xe3, 0xff, 0xc0, 0x0, 0x3, + 0xff, 0x8f, 0xff, 0x0, 0x0, 0xf, 0xfe, 0x3f, + 0xfc, 0x0, 0x0, 0x3f, 0xf8, 0xff, 0xf0, 0x0, + 0x0, 0xff, 0xe3, 0xff, 0xc0, 0x0, 0x3, 0xff, + 0x8f, 0xff, 0x0, 0x0, 0xf, 0xfe, 0x3f, 0xfc, + 0x0, 0x0, 0x7f, 0xf0, 0x7f, 0xf8, 0x0, 0x1, + 0xff, 0xc1, 0xff, 0xe0, 0x0, 0x7, 0xff, 0x7, + 0xff, 0x80, 0x0, 0x1f, 0xfc, 0x1f, 0xfe, 0x0, + 0x0, 0x7f, 0xf0, 0x7f, 0xf8, 0x0, 0x1, 0xff, + 0xc1, 0xff, 0xe0, 0x0, 0xf, 0xff, 0x7, 0xff, + 0xc0, 0x0, 0x3f, 0xfc, 0xf, 0xff, 0x0, 0x0, + 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x3, 0xff, 0x80, + 0xff, 0xf0, 0x0, 0xf, 0xfe, 0x3, 0xff, 0xc0, + 0x0, 0x3f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0xff, + 0xe0, 0x3f, 0xfe, 0x0, 0x7, 0xff, 0x80, 0xff, + 0xf8, 0x0, 0x1f, 0xfe, 0x1, 0xff, 0xe0, 0x0, + 0x7f, 0xf0, 0x7, 0xff, 0x80, 0x1, 0xff, 0xc0, + 0x1f, 0xfe, 0x0, 0x7, 0xff, 0x0, 0x7f, 0xf8, + 0x0, 0x1f, 0xfc, 0x1, 0xff, 0xf0, 0x0, 0xff, + 0xf0, 0x7, 0xff, 0xc0, 0x3, 0xff, 0xc0, 0x1f, + 0xff, 0x0, 0xf, 0xff, 0x0, 0x3f, 0xfc, 0x0, + 0x3f, 0xf8, 0x0, 0xff, 0xf0, 0x0, 0xff, 0xe0, + 0x3, 0xff, 0xc0, 0x3, 0xff, 0x80, 0xf, 0xff, + 0x80, 0x1f, 0xfe, 0x0, 0x3f, 0xfe, 0x0, 0x7f, + 0xf8, 0x0, 0xff, 0xf8, 0x1, 0xff, 0xe0, 0x3, + 0xff, 0xe0, 0x7, 0xff, 0xff, 0xff, 0xff, 0x80, + 0x1f, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x7f, 0xff, + 0xff, 0xff, 0xfc, 0x3, 0xff, 0xff, 0xff, 0xff, + 0xf0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x3f, + 0xff, 0xff, 0xff, 0xff, 0x0, 0xff, 0xff, 0xff, + 0xff, 0xfc, 0x3, 0xff, 0xff, 0xff, 0xff, 0xf0, + 0xf, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x7f, 0xff, + 0xff, 0xff, 0xff, 0x81, 0xff, 0xff, 0xff, 0xff, + 0xfe, 0x7, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x1f, + 0xfe, 0x0, 0x3, 0xff, 0xe0, 0x7f, 0xf8, 0x0, + 0xf, 0xff, 0x81, 0xff, 0xe0, 0x0, 0x3f, 0xfe, + 0xf, 0xff, 0x80, 0x0, 0x7f, 0xfc, 0x3f, 0xfc, + 0x0, 0x1, 0xff, 0xf0, 0xff, 0xf0, 0x0, 0x7, + 0xff, 0xc3, 0xff, 0xc0, 0x0, 0x1f, 0xff, 0xf, + 0xff, 0x0, 0x0, 0x7f, 0xfc, 0x3f, 0xfc, 0x0, + 0x1, 0xff, 0xf1, 0xff, 0xf0, 0x0, 0x3, 0xff, + 0xe7, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x9f, 0xfe, + 0x0, 0x0, 0x3f, 0xfe, 0x7f, 0xf8, 0x0, 0x0, + 0xff, 0xf9, 0xff, 0xe0, 0x0, 0x3, 0xff, 0xe7, + 0xff, 0x80, 0x0, 0xf, 0xff, 0x9f, 0xfe, 0x0, + 0x0, 0x3f, 0xff, + + /* U+0042 "B" */ + 0xff, 0xff, 0xff, 0xc0, 0x0, 0x7f, 0xff, 0xff, + 0xfc, 0x0, 0x3f, 0xff, 0xff, 0xff, 0x80, 0x1f, + 0xff, 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, + 0xfc, 0x7, 0xff, 0xff, 0xff, 0xff, 0x3, 0xff, + 0xff, 0xff, 0xff, 0xc1, 0xff, 0xff, 0xff, 0xff, + 0xe0, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x7f, 0xff, + 0xff, 0xff, 0xfc, 0x3f, 0xff, 0xff, 0xff, 0xff, + 0x1f, 0xff, 0xff, 0xff, 0xff, 0x8f, 0xff, 0x80, + 0x3f, 0xff, 0xc7, 0xff, 0xc0, 0x7, 0xff, 0xf3, + 0xff, 0xe0, 0x1, 0xff, 0xf9, 0xff, 0xf0, 0x0, + 0xff, 0xfc, 0xff, 0xf8, 0x0, 0x3f, 0xfe, 0x7f, + 0xfc, 0x0, 0x1f, 0xff, 0x3f, 0xfe, 0x0, 0xf, + 0xff, 0x9f, 0xff, 0x0, 0x7, 0xff, 0xcf, 0xff, + 0x80, 0x3, 0xff, 0xe7, 0xff, 0xc0, 0x1, 0xff, + 0xf3, 0xff, 0xe0, 0x0, 0xff, 0xf9, 0xff, 0xf0, + 0x0, 0x7f, 0xfc, 0xff, 0xf8, 0x0, 0x3f, 0xfe, + 0x7f, 0xfc, 0x0, 0x1f, 0xff, 0x3f, 0xfe, 0x0, + 0xf, 0xff, 0x9f, 0xff, 0x0, 0x7, 0xff, 0xcf, + 0xff, 0x80, 0x3, 0xff, 0xc7, 0xff, 0xc0, 0x3, + 0xff, 0xe3, 0xff, 0xe0, 0x1, 0xff, 0xf1, 0xff, + 0xf0, 0x1, 0xff, 0xf8, 0xff, 0xf8, 0x1, 0xff, + 0xf8, 0x7f, 0xfc, 0x1, 0xff, 0xfc, 0x3f, 0xff, + 0xff, 0xff, 0xfc, 0x1f, 0xff, 0xff, 0xff, 0xfe, + 0xf, 0xff, 0xff, 0xff, 0xfe, 0x7, 0xff, 0xff, + 0xff, 0xfc, 0x3, 0xff, 0xff, 0xff, 0xfc, 0x1, + 0xff, 0xff, 0xff, 0xfe, 0x0, 0xff, 0xff, 0xff, + 0xff, 0xc0, 0x7f, 0xff, 0xff, 0xff, 0xf0, 0x3f, + 0xff, 0xff, 0xff, 0xfc, 0x1f, 0xff, 0xff, 0xff, + 0xff, 0xf, 0xff, 0xff, 0xff, 0xff, 0xc7, 0xff, + 0xff, 0xff, 0xff, 0xf3, 0xff, 0xe0, 0x7, 0xff, + 0xf9, 0xff, 0xf0, 0x0, 0xff, 0xfe, 0xff, 0xf8, + 0x0, 0x3f, 0xff, 0x7f, 0xfc, 0x0, 0xf, 0xff, + 0xbf, 0xfe, 0x0, 0x7, 0xff, 0xdf, 0xff, 0x0, + 0x1, 0xff, 0xff, 0xff, 0x80, 0x0, 0xff, 0xff, + 0xff, 0xc0, 0x0, 0x7f, 0xff, 0xff, 0xe0, 0x0, + 0x3f, 0xff, 0xff, 0xf0, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0xf, 0xff, 0xff, 0xfc, 0x0, 0x7, + 0xff, 0xff, 0xfe, 0x0, 0x3, 0xff, 0xff, 0xff, + 0x0, 0x1, 0xff, 0xff, 0xff, 0x80, 0x0, 0xff, + 0xff, 0xff, 0xc0, 0x0, 0x7f, 0xff, 0xff, 0xe0, + 0x0, 0x3f, 0xff, 0xff, 0xf0, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0xf, 0xff, 0xff, 0xfc, 0x0, + 0x7, 0xff, 0xff, 0xfe, 0x0, 0x3, 0xff, 0xff, + 0xff, 0x0, 0x1, 0xff, 0xff, 0xff, 0x80, 0x1, + 0xff, 0xff, 0xff, 0xc0, 0x0, 0xff, 0xff, 0xff, + 0xe0, 0x0, 0xff, 0xfd, 0xff, 0xf0, 0x1, 0xff, + 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f, 0xff, + 0xff, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, + 0x9f, 0xff, 0xff, 0xff, 0xff, 0x8f, 0xff, 0xff, + 0xff, 0xff, 0xc7, 0xff, 0xff, 0xff, 0xff, 0xc3, + 0xff, 0xff, 0xff, 0xff, 0xc1, 0xff, 0xff, 0xff, + 0xff, 0xc0, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x7f, + 0xff, 0xff, 0xff, 0x80, 0x3f, 0xff, 0xff, 0xff, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x0, + + /* U+0043 "C" */ + 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, + 0xe0, 0x0, 0x1, 0xff, 0xff, 0xf0, 0x0, 0xf, + 0xff, 0xff, 0xf8, 0x0, 0x3f, 0xff, 0xff, 0xf8, + 0x0, 0xff, 0xff, 0xff, 0xf8, 0x3, 0xff, 0xff, + 0xff, 0xf8, 0xf, 0xff, 0xff, 0xff, 0xf8, 0x1f, + 0xff, 0xff, 0xff, 0xf0, 0x7f, 0xff, 0xff, 0xff, + 0xf0, 0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, + 0xff, 0xff, 0xe7, 0xff, 0xf8, 0x3f, 0xff, 0xcf, + 0xff, 0xc0, 0x1f, 0xff, 0x9f, 0xff, 0x0, 0x1f, + 0xff, 0x7f, 0xfe, 0x0, 0x3f, 0xff, 0xff, 0xf8, + 0x0, 0x3f, 0xff, 0xff, 0xf0, 0x0, 0x7f, 0xff, + 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, 0xc0, 0x1, + 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0xff, + 0x0, 0x7, 0xff, 0xff, 0xfe, 0x0, 0xf, 0xff, + 0xff, 0xfc, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x3f, 0xff, 0xff, 0xf0, 0x0, 0x7f, 0xff, 0xff, + 0xe0, 0x0, 0xff, 0xff, 0xff, 0xc0, 0x1, 0xff, + 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0xff, 0x0, + 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x7f, + 0xfc, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, + 0x1, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xe0, + 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0xf, + 0xff, 0x80, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, + 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xfc, + 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x1, + 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, + 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0xf, 0xff, + 0x80, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, + 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, + 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x1, 0xff, + 0xf0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, + 0x7, 0xff, 0xc0, 0x0, 0x0, 0xf, 0xff, 0x80, + 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x3f, + 0xfe, 0x0, 0xf, 0xff, 0xff, 0xfc, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x3f, 0xff, 0xff, 0xf0, + 0x0, 0x7f, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff, + 0xff, 0xc0, 0x1, 0xff, 0xff, 0xff, 0x80, 0x3, + 0xff, 0xff, 0xff, 0x0, 0x7, 0xff, 0xff, 0xfe, + 0x0, 0xf, 0xff, 0xff, 0xfc, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x3f, 0xff, 0xff, 0xf0, 0x0, + 0x7f, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, + 0xc0, 0x1, 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, + 0xff, 0xff, 0x0, 0x7, 0xff, 0xff, 0xff, 0x0, + 0x1f, 0xff, 0xbf, 0xfe, 0x0, 0x3f, 0xfe, 0x7f, + 0xfe, 0x0, 0xff, 0xfc, 0xff, 0xff, 0x7, 0xff, + 0xf9, 0xff, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, + 0xff, 0xff, 0xc3, 0xff, 0xff, 0xff, 0xff, 0x83, + 0xff, 0xff, 0xff, 0xfe, 0x7, 0xff, 0xff, 0xff, + 0xfc, 0x7, 0xff, 0xff, 0xff, 0xf0, 0x7, 0xff, + 0xff, 0xff, 0xc0, 0x7, 0xff, 0xff, 0xff, 0x0, + 0x7, 0xff, 0xff, 0xfc, 0x0, 0x3, 0xff, 0xff, + 0xe0, 0x0, 0x1, 0xff, 0xff, 0x0, 0x0, 0x0, + 0x7f, 0xf0, 0x0, 0x0, + + /* U+0044 "D" */ + 0xff, 0xff, 0xff, 0xc0, 0x0, 0xff, 0xff, 0xff, + 0xf8, 0x0, 0xff, 0xff, 0xff, 0xff, 0x0, 0xff, + 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, + 0xc0, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xff, 0xff, + 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xf8, + 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, + 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, + 0xff, 0xff, 0xff, 0xfe, 0xff, 0xf8, 0x1, 0xff, + 0xfe, 0xff, 0xf8, 0x0, 0x7f, 0xfe, 0xff, 0xf8, + 0x0, 0x3f, 0xfe, 0xff, 0xf8, 0x0, 0x3f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x3f, + 0xff, 0xff, 0xf8, 0x0, 0x3f, 0xfe, 0xff, 0xf8, + 0x0, 0x7f, 0xfe, 0xff, 0xf8, 0x1, 0xff, 0xfe, + 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, + 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, + 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, + 0xf8, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, + 0xff, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xc0, + 0xff, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, + 0xfe, 0x0, 0xff, 0xff, 0xff, 0xf8, 0x0, 0xff, + 0xff, 0xff, 0xc0, 0x0, + + /* U+0045 "E" */ + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, + 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0xff, + 0xf8, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, + 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, + 0x0, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0x80, + 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, + 0x80, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0xf, + 0xff, 0x80, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, + 0xf, 0xff, 0x80, 0x0, 0x0, 0xff, 0xf8, 0x0, + 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0xff, 0xf8, + 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0xff, + 0xf8, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, + 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, + 0x0, 0xff, 0xff, 0xff, 0xff, 0xf, 0xff, 0xff, + 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xf, 0xff, + 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xf, + 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, + 0xf, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, + 0xff, 0xf, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, + 0xff, 0xff, 0xf, 0xff, 0xff, 0xff, 0xf0, 0xff, + 0xf8, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, + 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, + 0x0, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0x80, + 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, + 0x80, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0xf, + 0xff, 0x80, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, + 0xf, 0xff, 0x80, 0x0, 0x0, 0xff, 0xf8, 0x0, + 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0xff, 0xf8, + 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0xff, + 0xf8, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, + 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, + 0x0, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0x80, + 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, + 0x80, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0xf, + 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, + + /* U+0046 "F" */ + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, + 0x1, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xfe, 0x0, + 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xf8, + 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x3, 0xff, + 0xe0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0xf, + 0xff, 0x80, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, + 0x3f, 0xfe, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, + 0x0, 0xff, 0xf8, 0x0, 0x0, 0x1f, 0xff, 0x0, + 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xfc, + 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x1, 0xff, + 0xf0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x7, + 0xff, 0xc0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, + 0x1f, 0xff, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, + 0x0, 0x7f, 0xff, 0xff, 0xfe, 0xf, 0xff, 0xff, + 0xff, 0xc1, 0xff, 0xff, 0xff, 0xf8, 0x3f, 0xff, + 0xff, 0xff, 0x7, 0xff, 0xff, 0xff, 0xe0, 0xff, + 0xff, 0xff, 0xfc, 0x1f, 0xff, 0xff, 0xff, 0x83, + 0xff, 0xff, 0xff, 0xf0, 0x7f, 0xff, 0xff, 0xfe, + 0xf, 0xff, 0xff, 0xff, 0xc1, 0xff, 0xff, 0xff, + 0xf8, 0x3f, 0xff, 0xff, 0xff, 0x7, 0xff, 0xc0, + 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x1f, 0xff, + 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x7f, + 0xfc, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x1, + 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, + 0x7, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xf8, 0x0, + 0x0, 0x1f, 0xff, 0x0, 0x0, 0x3, 0xff, 0xe0, + 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0xf, 0xff, + 0x80, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x3f, + 0xfe, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, + 0xff, 0xf8, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, + 0x3, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xfc, 0x0, + 0x0, 0xf, 0xff, 0x80, 0x0, 0x1, 0xff, 0xf0, + 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x7, 0xff, + 0xc0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x1f, + 0xff, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, + 0x7f, 0xfc, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, + 0x1, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xfe, 0x0, + 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xf8, + 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x3, 0xff, + 0xe0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, + + /* U+0047 "G" */ + 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xff, + 0xf8, 0x0, 0x0, 0x7f, 0xff, 0xfe, 0x0, 0x1, + 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0xff, + 0xc0, 0x7, 0xff, 0xff, 0xff, 0xe0, 0xf, 0xff, + 0xff, 0xff, 0xf0, 0x1f, 0xff, 0xff, 0xff, 0xf0, + 0x1f, 0xff, 0xff, 0xff, 0xf8, 0x3f, 0xff, 0xff, + 0xff, 0xfc, 0x3f, 0xff, 0xff, 0xff, 0xfc, 0x7f, + 0xff, 0xff, 0xff, 0xfc, 0x7f, 0xff, 0x81, 0xff, + 0xfe, 0x7f, 0xfe, 0x0, 0x7f, 0xfe, 0x7f, 0xfc, + 0x0, 0x3f, 0xfe, 0xff, 0xfc, 0x0, 0x3f, 0xff, + 0xff, 0xf8, 0x0, 0x3f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x0, + 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf8, + 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, + 0xff, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, + 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xff, + 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, + 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf8, + 0xf, 0xff, 0xff, 0xff, 0xf8, 0xf, 0xff, 0xff, + 0xff, 0xf8, 0xf, 0xff, 0xff, 0xff, 0xf8, 0xf, + 0xff, 0xff, 0xff, 0xf8, 0xf, 0xff, 0xff, 0xff, + 0xf8, 0xf, 0xff, 0xff, 0xff, 0xf8, 0xf, 0xff, + 0xff, 0xff, 0xf8, 0xf, 0xff, 0xff, 0xff, 0xf8, + 0xf, 0xff, 0xff, 0xff, 0xf8, 0xf, 0xff, 0xff, + 0xff, 0xf8, 0xf, 0xff, 0xff, 0xff, 0xf8, 0xf, + 0xff, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xfc, + 0x0, 0x3f, 0xff, 0x7f, 0xfc, 0x0, 0x3f, 0xfe, + 0x7f, 0xfe, 0x0, 0x7f, 0xfe, 0x7f, 0xff, 0x81, + 0xff, 0xfe, 0x7f, 0xff, 0xff, 0xff, 0xfe, 0x3f, + 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xff, 0xff, 0xff, + 0xfc, 0x1f, 0xff, 0xff, 0xff, 0xf8, 0x1f, 0xff, + 0xff, 0xff, 0xf8, 0xf, 0xff, 0xff, 0xff, 0xf0, + 0x7, 0xff, 0xff, 0xff, 0xe0, 0x3, 0xff, 0xff, + 0xff, 0xc0, 0x1, 0xff, 0xff, 0xff, 0x80, 0x0, + 0x7f, 0xff, 0xfe, 0x0, 0x0, 0x1f, 0xff, 0xf8, + 0x0, 0x0, 0x1, 0xff, 0x80, 0x0, + + /* U+0048 "H" */ + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, + + /* U+0049 "I" */ + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf0, + + /* U+004A "J" */ + 0x0, 0xf, 0xff, 0x80, 0x7, 0xff, 0xc0, 0x3, + 0xff, 0xe0, 0x1, 0xff, 0xf0, 0x0, 0xff, 0xf8, + 0x0, 0x7f, 0xfc, 0x0, 0x3f, 0xfe, 0x0, 0x1f, + 0xff, 0x0, 0xf, 0xff, 0x80, 0x7, 0xff, 0xc0, + 0x3, 0xff, 0xe0, 0x1, 0xff, 0xf0, 0x0, 0xff, + 0xf8, 0x0, 0x7f, 0xfc, 0x0, 0x3f, 0xfe, 0x0, + 0x1f, 0xff, 0x0, 0xf, 0xff, 0x80, 0x7, 0xff, + 0xc0, 0x3, 0xff, 0xe0, 0x1, 0xff, 0xf0, 0x0, + 0xff, 0xf8, 0x0, 0x7f, 0xfc, 0x0, 0x3f, 0xfe, + 0x0, 0x1f, 0xff, 0x0, 0xf, 0xff, 0x80, 0x7, + 0xff, 0xc0, 0x3, 0xff, 0xe0, 0x1, 0xff, 0xf0, + 0x0, 0xff, 0xf8, 0x0, 0x7f, 0xfc, 0x0, 0x3f, + 0xfe, 0x0, 0x1f, 0xff, 0x0, 0xf, 0xff, 0x80, + 0x7, 0xff, 0xc0, 0x3, 0xff, 0xe0, 0x1, 0xff, + 0xf0, 0x0, 0xff, 0xf8, 0x0, 0x7f, 0xfc, 0x0, + 0x3f, 0xfe, 0x0, 0x1f, 0xff, 0x0, 0xf, 0xff, + 0x80, 0x7, 0xff, 0xc0, 0x3, 0xff, 0xe0, 0x1, + 0xff, 0xf0, 0x0, 0xff, 0xf8, 0x0, 0x7f, 0xfc, + 0x0, 0x3f, 0xfe, 0x0, 0x1f, 0xff, 0x0, 0xf, + 0xff, 0x80, 0x7, 0xff, 0xc0, 0x3, 0xff, 0xe0, + 0x1, 0xff, 0xf0, 0x0, 0xff, 0xf8, 0x0, 0x7f, + 0xfc, 0x0, 0x3f, 0xfe, 0x0, 0x1f, 0xff, 0x0, + 0xf, 0xff, 0x80, 0x7, 0xff, 0xc0, 0x3, 0xff, + 0xe0, 0x1, 0xff, 0xf0, 0x0, 0xff, 0xf8, 0x0, + 0x7f, 0xfc, 0x0, 0x3f, 0xfe, 0x0, 0x1f, 0xff, + 0x0, 0xf, 0xff, 0x80, 0x7, 0xff, 0xc0, 0x3, + 0xff, 0xe0, 0x1, 0xff, 0xf0, 0x1, 0xff, 0xf8, + 0x0, 0xff, 0xfc, 0x0, 0xff, 0xfc, 0x1, 0xff, + 0xfe, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xbf, + 0xff, 0xff, 0x9f, 0xff, 0xff, 0xcf, 0xff, 0xff, + 0xc7, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe1, 0xff, + 0xff, 0xe0, 0xff, 0xff, 0xe0, 0x7f, 0xff, 0xc0, + 0x3f, 0xff, 0x80, 0x1f, 0xfc, 0x0, 0x0, + + /* U+004B "K" */ + 0xff, 0xf8, 0x0, 0x3, 0xff, 0xff, 0xff, 0x0, + 0x0, 0xff, 0xfb, 0xff, 0xe0, 0x0, 0x1f, 0xff, + 0x7f, 0xfc, 0x0, 0x7, 0xff, 0xcf, 0xff, 0x80, + 0x0, 0xff, 0xf9, 0xff, 0xf0, 0x0, 0x3f, 0xfe, + 0x3f, 0xfe, 0x0, 0x7, 0xff, 0xc7, 0xff, 0xc0, + 0x1, 0xff, 0xf0, 0xff, 0xf8, 0x0, 0x3f, 0xfe, + 0x1f, 0xff, 0x0, 0xf, 0xff, 0x83, 0xff, 0xe0, + 0x1, 0xff, 0xf0, 0x7f, 0xfc, 0x0, 0x7f, 0xfc, + 0xf, 0xff, 0x80, 0xf, 0xff, 0x81, 0xff, 0xf0, + 0x3, 0xff, 0xe0, 0x3f, 0xfe, 0x0, 0x7f, 0xfc, + 0x7, 0xff, 0xc0, 0x1f, 0xff, 0x0, 0xff, 0xf8, + 0x3, 0xff, 0xe0, 0x1f, 0xff, 0x0, 0xff, 0xf8, + 0x3, 0xff, 0xe0, 0x1f, 0xff, 0x0, 0x7f, 0xfc, + 0x3, 0xff, 0xc0, 0xf, 0xff, 0x80, 0xff, 0xf8, + 0x1, 0xff, 0xf0, 0x1f, 0xfe, 0x0, 0x3f, 0xfe, + 0x7, 0xff, 0xc0, 0x7, 0xff, 0xc0, 0xff, 0xf0, + 0x0, 0xff, 0xf8, 0x3f, 0xfe, 0x0, 0x1f, 0xff, + 0x7, 0xff, 0x80, 0x3, 0xff, 0xe1, 0xff, 0xf0, + 0x0, 0x7f, 0xfc, 0x3f, 0xfc, 0x0, 0xf, 0xff, + 0x8f, 0xff, 0x0, 0x1, 0xff, 0xf1, 0xff, 0xe0, + 0x0, 0x3f, 0xfe, 0x7f, 0xf8, 0x0, 0x7, 0xff, + 0xcf, 0xff, 0x0, 0x0, 0xff, 0xfb, 0xff, 0xf0, + 0x0, 0x1f, 0xff, 0x7f, 0xfe, 0x0, 0x3, 0xff, + 0xff, 0xff, 0xc0, 0x0, 0x7f, 0xff, 0xff, 0xfc, + 0x0, 0xf, 0xff, 0xff, 0xff, 0x80, 0x1, 0xff, + 0xff, 0xff, 0xf0, 0x0, 0x3f, 0xff, 0xff, 0xff, + 0x0, 0x7, 0xff, 0xff, 0xff, 0xe0, 0x0, 0xff, + 0xff, 0xff, 0xfc, 0x0, 0x1f, 0xff, 0xff, 0xff, + 0x80, 0x3, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x7f, + 0xff, 0xff, 0xff, 0x0, 0xf, 0xff, 0xff, 0xff, + 0xe0, 0x1, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x3f, + 0xff, 0xff, 0xff, 0xc0, 0x7, 0xff, 0xfe, 0xff, + 0xf8, 0x0, 0xff, 0xff, 0x9f, 0xff, 0x80, 0x1f, + 0xff, 0xf3, 0xff, 0xf0, 0x3, 0xff, 0xfc, 0x7f, + 0xfe, 0x0, 0x7f, 0xff, 0x87, 0xff, 0xc0, 0xf, + 0xff, 0xe0, 0xff, 0xfc, 0x1, 0xff, 0xfc, 0x1f, + 0xff, 0x80, 0x3f, 0xff, 0x1, 0xff, 0xf0, 0x7, + 0xff, 0xe0, 0x3f, 0xff, 0x0, 0xff, 0xf8, 0x7, + 0xff, 0xe0, 0x1f, 0xff, 0x0, 0x7f, 0xfc, 0x3, + 0xff, 0xe0, 0xf, 0xff, 0xc0, 0x7f, 0xfc, 0x1, + 0xff, 0xf8, 0xf, 0xff, 0x80, 0x3f, 0xff, 0x1, + 0xff, 0xf0, 0x3, 0xff, 0xe0, 0x3f, 0xfe, 0x0, + 0x7f, 0xfe, 0x7, 0xff, 0xc0, 0xf, 0xff, 0xc0, + 0xff, 0xf8, 0x0, 0xff, 0xf8, 0x1f, 0xff, 0x0, + 0x1f, 0xff, 0x83, 0xff, 0xe0, 0x3, 0xff, 0xf0, + 0x7f, 0xfc, 0x0, 0x3f, 0xfe, 0xf, 0xff, 0x80, + 0x7, 0xff, 0xe1, 0xff, 0xf0, 0x0, 0xff, 0xfc, + 0x3f, 0xfe, 0x0, 0x1f, 0xff, 0x87, 0xff, 0xc0, + 0x1, 0xff, 0xf0, 0xff, 0xf8, 0x0, 0x3f, 0xff, + 0x1f, 0xff, 0x0, 0x7, 0xff, 0xe3, 0xff, 0xe0, + 0x0, 0x7f, 0xfc, 0x7f, 0xfc, 0x0, 0xf, 0xff, + 0xcf, 0xff, 0x80, 0x1, 0xff, 0xf9, 0xff, 0xf0, + 0x0, 0x3f, 0xff, 0x3f, 0xfe, 0x0, 0x3, 0xff, + 0xf7, 0xff, 0xc0, 0x0, 0x7f, 0xfe, 0xff, 0xf8, + 0x0, 0xf, 0xff, 0xdf, 0xff, 0x0, 0x0, 0xff, + 0xfb, 0xff, 0xe0, 0x0, 0x1f, 0xff, 0xff, 0xfc, + 0x0, 0x3, 0xff, 0xf0, + + /* U+004C "L" */ + 0xff, 0xf8, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, + 0x3, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xfc, 0x0, + 0x0, 0xf, 0xff, 0x80, 0x0, 0x1, 0xff, 0xf0, + 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x7, 0xff, + 0xc0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x1f, + 0xff, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, + 0x7f, 0xfc, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, + 0x1, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xfe, 0x0, + 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xf8, + 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x3, 0xff, + 0xe0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0xf, + 0xff, 0x80, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, + 0x3f, 0xfe, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, + 0x0, 0xff, 0xf8, 0x0, 0x0, 0x1f, 0xff, 0x0, + 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xfc, + 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x1, 0xff, + 0xf0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x7, + 0xff, 0xc0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, + 0x1f, 0xff, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, + 0x0, 0x7f, 0xfc, 0x0, 0x0, 0xf, 0xff, 0x80, + 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xfe, + 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0xff, + 0xf8, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x3, + 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, + 0xf, 0xff, 0x80, 0x0, 0x1, 0xff, 0xf0, 0x0, + 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x7, 0xff, 0xc0, + 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x1f, 0xff, + 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x7f, + 0xfc, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x1, + 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, + 0x7, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xf8, 0x0, + 0x0, 0x1f, 0xff, 0x0, 0x0, 0x3, 0xff, 0xe0, + 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0xf, 0xff, + 0x80, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x3f, + 0xfe, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, + 0xff, 0xf8, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, + 0x3, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xfc, 0x0, + 0x0, 0xf, 0xff, 0x80, 0x0, 0x1, 0xff, 0xf0, + 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x7, 0xff, + 0xc0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, + + /* U+004D "M" */ + 0xff, 0xff, 0xe0, 0x0, 0xf, 0xff, 0xff, 0xff, + 0xff, 0xc0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, + 0x80, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0x80, + 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x1, + 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x3, 0xff, + 0xff, 0xff, 0xff, 0xfc, 0x0, 0x7, 0xff, 0xff, + 0xff, 0xff, 0xf8, 0x0, 0xf, 0xff, 0xff, 0xff, + 0xff, 0xf0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, + 0xe0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xc0, + 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x1, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x0, 0x7, 0xff, 0xff, + 0xff, 0xff, 0xfe, 0x0, 0xf, 0xff, 0xff, 0xff, + 0xff, 0xfc, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, + 0xf8, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xf0, + 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x1, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x3, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc0, 0x7, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x80, 0xf, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x0, 0x1f, 0xef, 0xff, 0xff, 0xff, + 0xfe, 0x0, 0x3f, 0xdf, 0xff, 0xff, 0xf7, 0xfc, + 0x0, 0xff, 0xbf, 0xff, 0xff, 0xef, 0xfc, 0x1, + 0xff, 0x7f, 0xff, 0xff, 0xdf, 0xf8, 0x3, 0xfe, + 0xff, 0xff, 0xff, 0xbf, 0xf0, 0x7, 0xfd, 0xff, + 0xff, 0xff, 0x7f, 0xe0, 0xf, 0xfb, 0xff, 0xff, + 0xfe, 0xff, 0xc0, 0x1f, 0xe7, 0xff, 0xff, 0xfc, + 0xff, 0x80, 0x3f, 0xcf, 0xff, 0xff, 0xf9, 0xff, + 0x0, 0xff, 0x9f, 0xff, 0xff, 0xf3, 0xff, 0x1, + 0xff, 0x3f, 0xff, 0xff, 0xe7, 0xfe, 0x3, 0xfe, + 0x7f, 0xff, 0xff, 0xcf, 0xfc, 0x7, 0xfc, 0xff, + 0xff, 0xff, 0x9f, 0xf8, 0xf, 0xf9, 0xff, 0xff, + 0xff, 0x3f, 0xf0, 0x1f, 0xe3, 0xff, 0xff, 0xfe, + 0x3f, 0xe0, 0x3f, 0xc7, 0xff, 0xff, 0xfc, 0x7f, + 0xc0, 0xff, 0x8f, 0xff, 0xff, 0xf8, 0xff, 0x81, + 0xff, 0x1f, 0xff, 0xff, 0xf1, 0xff, 0x83, 0xfe, + 0x3f, 0xff, 0xff, 0xe3, 0xff, 0x7, 0xfc, 0x7f, + 0xff, 0xff, 0xc7, 0xfe, 0xf, 0xf8, 0xff, 0xff, + 0xff, 0x8f, 0xfc, 0x1f, 0xe1, 0xff, 0xff, 0xff, + 0xf, 0xf8, 0x3f, 0xc3, 0xff, 0xff, 0xfe, 0x1f, + 0xf0, 0x7f, 0x87, 0xff, 0xff, 0xfc, 0x3f, 0xe1, + 0xff, 0xf, 0xff, 0xff, 0xf8, 0x7f, 0xe3, 0xfe, + 0x1f, 0xff, 0xff, 0xf0, 0xff, 0xc7, 0xfc, 0x3f, + 0xff, 0xff, 0xe1, 0xff, 0x8f, 0xf0, 0x7f, 0xff, + 0xff, 0xc1, 0xff, 0x1f, 0xe0, 0xff, 0xff, 0xff, + 0x83, 0xfe, 0x3f, 0xc1, 0xff, 0xff, 0xff, 0x7, + 0xfc, 0x7f, 0x83, 0xff, 0xff, 0xfe, 0xf, 0xf9, + 0xff, 0x7, 0xff, 0xff, 0xfc, 0x1f, 0xfb, 0xfe, + 0xf, 0xff, 0xff, 0xf8, 0x3f, 0xf7, 0xfc, 0x1f, + 0xff, 0xff, 0xf0, 0x7f, 0xef, 0xf0, 0x3f, 0xff, + 0xff, 0xe0, 0x7f, 0xdf, 0xe0, 0x7f, 0xff, 0xff, + 0xc0, 0xff, 0xbf, 0xc0, 0xff, 0xff, 0xff, 0x81, + 0xff, 0x7f, 0x81, 0xff, 0xff, 0xff, 0x3, 0xff, + 0xff, 0x3, 0xff, 0xff, 0xfe, 0x7, 0xff, 0xfe, + 0x7, 0xff, 0xff, 0xfc, 0xf, 0xff, 0xfc, 0xf, + 0xff, 0xff, 0xf8, 0x1f, 0xff, 0xf0, 0x1f, 0xff, + 0xff, 0xf0, 0x1f, 0xff, 0xe0, 0x3f, 0xff, 0xff, + 0xe0, 0x3f, 0xff, 0xc0, 0x7f, 0xff, 0xff, 0xc0, + 0x7f, 0xff, 0x80, 0xff, 0xff, 0xff, 0x80, 0xff, + 0xff, 0x1, 0xff, 0xff, 0xff, 0x1, 0xff, 0xfe, + 0x3, 0xff, 0xff, 0xfe, 0x3, 0xff, 0xfc, 0x7, + 0xff, 0xff, 0xfc, 0x3, 0xff, 0xf0, 0xf, 0xff, + 0xff, 0xf8, 0x7, 0xff, 0xe0, 0x1f, 0xff, 0xff, + 0xf0, 0xf, 0xff, 0xc0, 0x3f, 0xff, 0xff, 0xe0, + 0x1f, 0xff, 0x80, 0x7f, 0xff, 0xff, 0xc0, 0x3f, + 0xff, 0x0, 0xff, 0xff, 0xff, 0x80, 0x7f, 0xfe, + 0x1, 0xff, 0xff, 0xff, 0x0, 0xff, 0xf8, 0x3, + 0xff, 0xff, 0xfe, 0x0, 0xff, 0xf0, 0x7, 0xff, + 0xff, 0xfc, 0x1, 0xff, 0xe0, 0xf, 0xff, 0xff, + 0xf8, 0x3, 0xff, 0xc0, 0x1f, 0xff, 0xff, 0xf0, + 0x7, 0xff, 0x80, 0x3f, 0xff, 0xff, 0xe0, 0xf, + 0xff, 0x0, 0x7f, 0xff, 0xff, 0xc0, 0x1f, 0xfe, + 0x0, 0xff, 0xff, 0xff, 0x80, 0x3f, 0xf8, 0x1, + 0xff, 0xf0, + + /* U+004E "N" */ + 0xff, 0xff, 0x80, 0x7, 0xff, 0xff, 0xff, 0xc0, + 0x3, 0xff, 0xff, 0xff, 0xe0, 0x1, 0xff, 0xff, + 0xff, 0xf0, 0x0, 0xff, 0xff, 0xff, 0xfc, 0x0, + 0x7f, 0xff, 0xff, 0xfe, 0x0, 0x3f, 0xff, 0xff, + 0xff, 0x0, 0x1f, 0xff, 0xff, 0xff, 0x80, 0xf, + 0xff, 0xff, 0xff, 0xe0, 0x7, 0xff, 0xff, 0xff, + 0xf0, 0x3, 0xff, 0xff, 0xff, 0xf8, 0x1, 0xff, + 0xff, 0xff, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xff, + 0x0, 0x7f, 0xff, 0xff, 0xff, 0x80, 0x3f, 0xff, + 0xff, 0xff, 0xc0, 0x1f, 0xff, 0xff, 0xff, 0xe0, + 0xf, 0xff, 0xff, 0xff, 0xf8, 0x7, 0xff, 0xff, + 0xff, 0xfc, 0x3, 0xff, 0xff, 0xff, 0xfe, 0x1, + 0xff, 0xff, 0xff, 0xff, 0x0, 0xff, 0xff, 0xff, + 0xff, 0xc0, 0x7f, 0xff, 0xff, 0xff, 0xe0, 0x3f, + 0xff, 0xff, 0xff, 0xf0, 0x1f, 0xff, 0xff, 0xff, + 0xf8, 0xf, 0xff, 0xff, 0xff, 0xfe, 0x7, 0xff, + 0xff, 0xfb, 0xff, 0x3, 0xff, 0xff, 0xfd, 0xff, + 0x81, 0xff, 0xff, 0xfe, 0xff, 0xc0, 0xff, 0xff, + 0xff, 0x7f, 0xf0, 0x7f, 0xff, 0xff, 0x9f, 0xf8, + 0x3f, 0xff, 0xff, 0xcf, 0xfc, 0x1f, 0xff, 0xff, + 0xe7, 0xfe, 0xf, 0xff, 0xff, 0xf3, 0xff, 0x87, + 0xff, 0xff, 0xf8, 0xff, 0xc3, 0xff, 0xff, 0xfc, + 0x7f, 0xe1, 0xff, 0xff, 0xfe, 0x3f, 0xf0, 0xff, + 0xff, 0xff, 0x1f, 0xfc, 0x7f, 0xff, 0xff, 0x87, + 0xfe, 0x3f, 0xff, 0xff, 0xc3, 0xff, 0x1f, 0xff, + 0xff, 0xe1, 0xff, 0x8f, 0xff, 0xff, 0xf0, 0xff, + 0xe7, 0xff, 0xff, 0xf8, 0x3f, 0xf3, 0xff, 0xff, + 0xfc, 0x1f, 0xf9, 0xff, 0xff, 0xfe, 0xf, 0xfc, + 0xff, 0xff, 0xff, 0x7, 0xff, 0x7f, 0xff, 0xff, + 0x81, 0xff, 0xbf, 0xff, 0xff, 0xc0, 0xff, 0xdf, + 0xff, 0xff, 0xe0, 0x7f, 0xef, 0xff, 0xff, 0xf0, + 0x3f, 0xff, 0xff, 0xff, 0xf8, 0xf, 0xff, 0xff, + 0xff, 0xfc, 0x7, 0xff, 0xff, 0xff, 0xfe, 0x3, + 0xff, 0xff, 0xff, 0xff, 0x1, 0xff, 0xff, 0xff, + 0xff, 0x80, 0x7f, 0xff, 0xff, 0xff, 0xc0, 0x3f, + 0xff, 0xff, 0xff, 0xe0, 0x1f, 0xff, 0xff, 0xff, + 0xf0, 0xf, 0xff, 0xff, 0xff, 0xf8, 0x3, 0xff, + 0xff, 0xff, 0xfc, 0x1, 0xff, 0xff, 0xff, 0xfe, + 0x0, 0xff, 0xff, 0xff, 0xff, 0x0, 0x7f, 0xff, + 0xff, 0xff, 0x80, 0x1f, 0xff, 0xff, 0xff, 0xc0, + 0xf, 0xff, 0xff, 0xff, 0xe0, 0x7, 0xff, 0xff, + 0xff, 0xf0, 0x3, 0xff, 0xff, 0xff, 0xf8, 0x0, + 0xff, 0xff, 0xff, 0xfc, 0x0, 0x7f, 0xff, 0xff, + 0xfe, 0x0, 0x3f, 0xff, 0xff, 0xff, 0x0, 0x1f, + 0xff, 0xff, 0xff, 0x80, 0x7, 0xff, 0xff, 0xff, + 0xc0, 0x3, 0xff, 0xff, 0xff, 0xe0, 0x1, 0xff, + 0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xff, 0xf8, + 0x0, 0x3f, 0xff, 0xff, 0xfc, 0x0, 0x1f, 0xff, + 0xff, 0xfe, 0x0, 0xf, 0xff, 0xff, 0xff, 0x0, + 0x7, 0xff, 0xff, 0xff, 0x80, 0x1, 0xff, 0xff, + 0xff, 0xc0, 0x0, 0xff, 0xff, 0xff, 0xe0, 0x0, + 0x7f, 0xff, 0xff, 0xf0, 0x0, 0x3f, 0xff, 0xff, + 0xf8, 0x0, 0xf, 0xff, 0xff, 0xfc, 0x0, 0x7, + 0xff, 0xff, 0xfe, 0x0, 0x3, 0xff, 0xf0, + + /* U+004F "O" */ + 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xff, + 0xf8, 0x0, 0x0, 0x7f, 0xff, 0xfe, 0x0, 0x1, + 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0xff, + 0xc0, 0x7, 0xff, 0xff, 0xff, 0xe0, 0xf, 0xff, + 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xf0, + 0x1f, 0xff, 0xff, 0xff, 0xf8, 0x3f, 0xff, 0xff, + 0xff, 0xfc, 0x3f, 0xff, 0xff, 0xff, 0xfc, 0x7f, + 0xff, 0xff, 0xff, 0xfc, 0x7f, 0xff, 0x81, 0xff, + 0xfe, 0x7f, 0xfe, 0x0, 0x7f, 0xfe, 0x7f, 0xfc, + 0x0, 0x3f, 0xfe, 0xff, 0xfc, 0x0, 0x3f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xfc, + 0x0, 0x3f, 0xff, 0x7f, 0xfc, 0x0, 0x3f, 0xfe, + 0x7f, 0xfe, 0x0, 0x7f, 0xfe, 0x7f, 0xff, 0x81, + 0xff, 0xfe, 0x7f, 0xff, 0xff, 0xff, 0xfc, 0x3f, + 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xff, 0xff, 0xff, + 0xfc, 0x1f, 0xff, 0xff, 0xff, 0xf8, 0xf, 0xff, + 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xf0, + 0x7, 0xff, 0xff, 0xff, 0xe0, 0x3, 0xff, 0xff, + 0xff, 0xc0, 0x1, 0xff, 0xff, 0xff, 0x80, 0x0, + 0x7f, 0xff, 0xfe, 0x0, 0x0, 0x1f, 0xff, 0xf8, + 0x0, 0x0, 0x1, 0xff, 0x80, 0x0, + + /* U+0050 "P" */ + 0xff, 0xff, 0xff, 0x80, 0x1, 0xff, 0xff, 0xff, + 0xe0, 0x3, 0xff, 0xff, 0xff, 0xf8, 0x7, 0xff, + 0xff, 0xff, 0xf8, 0xf, 0xff, 0xff, 0xff, 0xf8, + 0x1f, 0xff, 0xff, 0xff, 0xf8, 0x3f, 0xff, 0xff, + 0xff, 0xf8, 0x7f, 0xff, 0xff, 0xff, 0xf8, 0xff, + 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xff, + 0xf3, 0xff, 0xff, 0xff, 0xff, 0xe7, 0xff, 0xff, + 0xff, 0xff, 0xef, 0xff, 0x80, 0x3f, 0xff, 0xdf, + 0xff, 0x0, 0x1f, 0xff, 0xbf, 0xfe, 0x0, 0x1f, + 0xff, 0x7f, 0xfc, 0x0, 0x3f, 0xff, 0xff, 0xf8, + 0x0, 0x3f, 0xff, 0xff, 0xf0, 0x0, 0x7f, 0xff, + 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, 0xc0, 0x1, + 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0xff, + 0x0, 0x7, 0xff, 0xff, 0xfe, 0x0, 0xf, 0xff, + 0xff, 0xfc, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x3f, 0xff, 0xff, 0xf0, 0x0, 0x7f, 0xff, 0xff, + 0xe0, 0x0, 0xff, 0xff, 0xff, 0xc0, 0x1, 0xff, + 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0xff, 0x0, + 0x7, 0xff, 0xff, 0xfe, 0x0, 0xf, 0xff, 0xff, + 0xfc, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x3f, + 0xff, 0xff, 0xf0, 0x0, 0x7f, 0xff, 0xff, 0xe0, + 0x1, 0xff, 0xff, 0xff, 0xc0, 0x3, 0xff, 0xef, + 0xff, 0x80, 0xf, 0xff, 0xdf, 0xff, 0x0, 0x7f, + 0xff, 0xbf, 0xff, 0xff, 0xff, 0xff, 0x7f, 0xff, + 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xf9, + 0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, + 0xff, 0xc7, 0xff, 0xff, 0xff, 0xff, 0xf, 0xff, + 0xff, 0xff, 0xfc, 0x1f, 0xff, 0xff, 0xff, 0xf0, + 0x3f, 0xff, 0xff, 0xff, 0xc0, 0x7f, 0xff, 0xff, + 0xfe, 0x0, 0xff, 0xff, 0xff, 0xf0, 0x1, 0xff, + 0xff, 0xff, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, + 0x7, 0xff, 0xc0, 0x0, 0x0, 0xf, 0xff, 0x80, + 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x3f, + 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, + 0x0, 0xff, 0xf8, 0x0, 0x0, 0x1, 0xff, 0xf0, + 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x7, + 0xff, 0xc0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, + 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x3f, 0xfe, + 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, + 0xff, 0xf8, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, + 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, + 0xc0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, + 0x1f, 0xff, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, + 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0xff, + 0xf8, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, + 0x3, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0xc0, + 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x1f, + 0xff, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, + 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xf8, + 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x3, + 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, + 0x0, 0x0, + + /* U+0051 "Q" */ + 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, + 0xff, 0x80, 0x0, 0x0, 0x7f, 0xff, 0xfe, 0x0, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x3, 0xff, + 0xff, 0xff, 0xc0, 0x0, 0x7f, 0xff, 0xff, 0xfe, + 0x0, 0xf, 0xff, 0xff, 0xff, 0xf0, 0x0, 0xff, + 0xff, 0xff, 0xff, 0x0, 0x1f, 0xff, 0xff, 0xff, + 0xf8, 0x3, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x3f, + 0xff, 0xff, 0xff, 0xfc, 0x7, 0xff, 0xff, 0xff, + 0xff, 0xc0, 0x7f, 0xff, 0x81, 0xff, 0xfe, 0x7, + 0xff, 0xe0, 0x7, 0xff, 0xe0, 0x7f, 0xfc, 0x0, + 0x3f, 0xfe, 0xf, 0xff, 0xc0, 0x3, 0xff, 0xf0, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xf, 0xff, 0x80, + 0x1, 0xff, 0xf0, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xf, 0xff, 0x80, 0x1, 0xff, 0xf0, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xf, 0xff, 0x80, 0x1, 0xff, + 0xf0, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xf, 0xff, + 0x80, 0x1, 0xff, 0xf0, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xf, 0xff, 0x80, 0x1, 0xff, 0xf0, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xf, 0xff, 0x80, 0x1, + 0xff, 0xf0, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xf, + 0xff, 0x80, 0x1, 0xff, 0xf0, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xf, 0xff, 0x80, 0x1, 0xff, 0xf0, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xf, 0xff, 0x80, + 0x1, 0xff, 0xf0, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xf, 0xff, 0x80, 0x1, 0xff, 0xf0, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xf, 0xff, 0x80, 0x1, 0xff, + 0xf0, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xf, 0xff, + 0x80, 0x1, 0xff, 0xf0, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xf, 0xff, 0x80, 0x1, 0xff, 0xf0, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xf, 0xff, 0x80, 0x1, + 0xff, 0xf0, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xf, + 0xff, 0x80, 0x1, 0xff, 0xf0, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xf, 0xff, 0x80, 0x1, 0xff, 0xf0, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xf, 0xff, 0x80, + 0x1, 0xff, 0xf0, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xf, 0xff, 0x80, 0x1, 0xff, 0xf0, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xf, 0xff, 0x80, 0x1, 0xff, + 0xf0, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xf, 0xff, + 0x80, 0x1, 0xff, 0xf0, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xf, 0xff, 0x80, 0x1, 0xff, 0xf0, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xf, 0xff, 0x80, 0x1, + 0xff, 0xf0, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xf, + 0xff, 0x80, 0x1, 0xff, 0xf0, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xf, 0xff, 0x80, 0x1, 0xff, 0xf0, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xf, 0xff, 0x80, + 0x1, 0xff, 0xf0, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xf, 0xff, 0x80, 0x1, 0xff, 0xf0, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xf, 0xff, 0x80, 0x1, 0xff, + 0xf0, 0xff, 0xfc, 0x0, 0x3f, 0xff, 0x7, 0xff, + 0xc0, 0x3, 0xff, 0xe0, 0x7f, 0xfe, 0x0, 0x7f, + 0xfe, 0x7, 0xff, 0xf8, 0x1f, 0xff, 0xe0, 0x7f, + 0xff, 0xff, 0xff, 0xfe, 0x3, 0xff, 0xff, 0xff, + 0xff, 0xc0, 0x3f, 0xff, 0xff, 0xff, 0xfc, 0x1, + 0xff, 0xff, 0xff, 0xff, 0x80, 0xf, 0xff, 0xff, + 0xff, 0xf8, 0x0, 0xff, 0xff, 0xff, 0xff, 0x80, + 0x7, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x3f, 0xff, + 0xff, 0xff, 0xff, 0x1, 0xff, 0xff, 0xff, 0xff, + 0xf0, 0x7, 0xff, 0xff, 0xff, 0xff, 0x0, 0x1f, + 0xff, 0xff, 0xff, 0xf0, 0x0, 0x3f, 0xfc, 0x7f, + 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf0, 0x0, + 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x3, + 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, + 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, + 0x3, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf0, + + /* U+0052 "R" */ + 0xff, 0xff, 0xff, 0x80, 0x0, 0x7f, 0xff, 0xff, + 0xfc, 0x0, 0x3f, 0xff, 0xff, 0xff, 0x80, 0x1f, + 0xff, 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, + 0xfc, 0x7, 0xff, 0xff, 0xff, 0xff, 0x3, 0xff, + 0xff, 0xff, 0xff, 0xc1, 0xff, 0xff, 0xff, 0xff, + 0xe0, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x7f, 0xff, + 0xff, 0xff, 0xfc, 0x3f, 0xff, 0xff, 0xff, 0xff, + 0x1f, 0xff, 0xff, 0xff, 0xff, 0x8f, 0xff, 0x80, + 0x3f, 0xff, 0xc7, 0xff, 0xc0, 0x7, 0xff, 0xe3, + 0xff, 0xe0, 0x1, 0xff, 0xf9, 0xff, 0xf0, 0x0, + 0xff, 0xfc, 0xff, 0xf8, 0x0, 0x3f, 0xfe, 0x7f, + 0xfc, 0x0, 0x1f, 0xff, 0x3f, 0xfe, 0x0, 0xf, + 0xff, 0x9f, 0xff, 0x0, 0x7, 0xff, 0xcf, 0xff, + 0x80, 0x3, 0xff, 0xe7, 0xff, 0xc0, 0x1, 0xff, + 0xf3, 0xff, 0xe0, 0x0, 0xff, 0xf9, 0xff, 0xf0, + 0x0, 0x7f, 0xfc, 0xff, 0xf8, 0x0, 0x3f, 0xfe, + 0x7f, 0xfc, 0x0, 0x1f, 0xff, 0x3f, 0xfe, 0x0, + 0xf, 0xff, 0x9f, 0xff, 0x0, 0x7, 0xff, 0xcf, + 0xff, 0x80, 0x3, 0xff, 0xe7, 0xff, 0xc0, 0x1, + 0xff, 0xf3, 0xff, 0xe0, 0x0, 0xff, 0xf1, 0xff, + 0xf0, 0x0, 0xff, 0xf8, 0xff, 0xf8, 0x0, 0x7f, + 0xfc, 0x7f, 0xfc, 0x0, 0x7f, 0xfe, 0x3f, 0xfe, + 0x0, 0x7f, 0xfe, 0x1f, 0xff, 0x0, 0xff, 0xff, + 0xf, 0xff, 0xff, 0xff, 0xff, 0x7, 0xff, 0xff, + 0xff, 0xff, 0x3, 0xff, 0xff, 0xff, 0xff, 0x1, + 0xff, 0xff, 0xff, 0xff, 0x0, 0xff, 0xff, 0xff, + 0xff, 0x0, 0x7f, 0xff, 0xff, 0xff, 0x0, 0x3f, + 0xff, 0xff, 0xff, 0xe0, 0x1f, 0xff, 0xff, 0xff, + 0xf8, 0xf, 0xff, 0xff, 0xff, 0xfe, 0x7, 0xff, + 0xff, 0xff, 0xff, 0x83, 0xff, 0xff, 0xff, 0xff, + 0xe1, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xf8, + 0x7, 0xff, 0xfc, 0x7f, 0xfc, 0x0, 0xff, 0xfe, + 0x3f, 0xfe, 0x0, 0x3f, 0xff, 0x1f, 0xff, 0x0, + 0xf, 0xff, 0x8f, 0xff, 0x80, 0x7, 0xff, 0xe7, + 0xff, 0xc0, 0x1, 0xff, 0xf3, 0xff, 0xe0, 0x0, + 0xff, 0xf9, 0xff, 0xf0, 0x0, 0x7f, 0xfc, 0xff, + 0xf8, 0x0, 0x3f, 0xfe, 0x7f, 0xfc, 0x0, 0x1f, + 0xff, 0x3f, 0xfe, 0x0, 0xf, 0xff, 0x9f, 0xff, + 0x0, 0x7, 0xff, 0xcf, 0xff, 0x80, 0x3, 0xff, + 0xe7, 0xff, 0xc0, 0x1, 0xff, 0xf3, 0xff, 0xe0, + 0x0, 0xff, 0xf9, 0xff, 0xf0, 0x0, 0x7f, 0xfc, + 0xff, 0xf8, 0x0, 0x3f, 0xfe, 0x7f, 0xfc, 0x0, + 0x1f, 0xff, 0x3f, 0xfe, 0x0, 0xf, 0xff, 0x9f, + 0xff, 0x0, 0x7, 0xff, 0xcf, 0xff, 0x80, 0x3, + 0xff, 0xe7, 0xff, 0xc0, 0x1, 0xff, 0xf3, 0xff, + 0xe0, 0x0, 0xff, 0xf9, 0xff, 0xf0, 0x0, 0x7f, + 0xfc, 0xff, 0xf8, 0x0, 0x3f, 0xfe, 0x7f, 0xfc, + 0x0, 0x1f, 0xff, 0x3f, 0xfe, 0x0, 0xf, 0xff, + 0x9f, 0xff, 0x0, 0x7, 0xff, 0xcf, 0xff, 0x80, + 0x3, 0xff, 0xe7, 0xff, 0xc0, 0x1, 0xff, 0xf3, + 0xff, 0xe0, 0x0, 0xff, 0xf9, 0xff, 0xf0, 0x0, + 0x7f, 0xfc, 0xff, 0xf8, 0x0, 0x3f, 0xfe, 0x7f, + 0xfc, 0x0, 0x1f, 0xff, 0xbf, 0xfe, 0x0, 0x7, + 0xff, 0xdf, 0xff, 0x0, 0x3, 0xff, 0xe0, + + /* U+0053 "S" */ + 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, + 0xe0, 0x0, 0x1, 0xff, 0xff, 0xf0, 0x0, 0xf, + 0xff, 0xff, 0xf8, 0x0, 0x3f, 0xff, 0xff, 0xf8, + 0x0, 0xff, 0xff, 0xff, 0xf8, 0x3, 0xff, 0xff, + 0xff, 0xf8, 0xf, 0xff, 0xff, 0xff, 0xf8, 0x1f, + 0xff, 0xff, 0xff, 0xf0, 0x7f, 0xff, 0xff, 0xff, + 0xf0, 0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, + 0xff, 0xff, 0xe7, 0xff, 0xf8, 0x3f, 0xff, 0xcf, + 0xff, 0xc0, 0x1f, 0xff, 0x9f, 0xff, 0x0, 0x1f, + 0xff, 0x7f, 0xfe, 0x0, 0x3f, 0xff, 0xff, 0xf8, + 0x0, 0x3f, 0xff, 0xff, 0xf0, 0x0, 0x7f, 0xff, + 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, 0xc0, 0x1, + 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0xff, + 0x0, 0x7, 0xff, 0xff, 0xfe, 0x0, 0xf, 0xff, + 0xff, 0xfc, 0x0, 0x1f, 0xff, 0xff, 0xfc, 0x0, + 0x3f, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x1, 0xff, + 0xf0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, + 0x7, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xe0, + 0x0, 0x0, 0xf, 0xff, 0xe0, 0x0, 0x0, 0x1f, + 0xff, 0xe0, 0x0, 0x0, 0x1f, 0xff, 0xe0, 0x0, + 0x0, 0x3f, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, + 0xe0, 0x0, 0x0, 0x7f, 0xff, 0xe0, 0x0, 0x0, + 0x7f, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xff, 0xe0, + 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xff, + 0xff, 0xe0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, + 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xff, + 0xe0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0, + 0xff, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xff, 0xe0, + 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xff, + 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xff, 0xc0, 0x0, + 0x0, 0x7f, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, + 0xc0, 0x0, 0x0, 0x7f, 0xff, 0x80, 0x0, 0x0, + 0x7f, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0x0, + 0x0, 0x0, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, + 0xfe, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, + 0x1, 0xff, 0xf8, 0x0, 0x0, 0x1, 0xff, 0xf0, + 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0x80, 0x7, + 0xff, 0xff, 0xff, 0x0, 0x7, 0xff, 0xff, 0xfe, + 0x0, 0xf, 0xff, 0xff, 0xfc, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x3f, 0xff, 0xff, 0xf0, 0x0, + 0x7f, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, + 0xc0, 0x1, 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, + 0xff, 0xff, 0x0, 0x7, 0xff, 0xff, 0xff, 0x0, + 0x1f, 0xff, 0xbf, 0xfe, 0x0, 0x3f, 0xfe, 0x7f, + 0xfe, 0x0, 0xff, 0xfc, 0xff, 0xff, 0x7, 0xff, + 0xf9, 0xff, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, + 0xff, 0xff, 0xc3, 0xff, 0xff, 0xff, 0xff, 0x83, + 0xff, 0xff, 0xff, 0xfe, 0x7, 0xff, 0xff, 0xff, + 0xf8, 0x7, 0xff, 0xff, 0xff, 0xf0, 0x7, 0xff, + 0xff, 0xff, 0xc0, 0x7, 0xff, 0xff, 0xff, 0x0, + 0x7, 0xff, 0xff, 0xfc, 0x0, 0x7, 0xff, 0xff, + 0xe0, 0x0, 0x3, 0xff, 0xff, 0x0, 0x0, 0x0, + 0x7f, 0xf0, 0x0, 0x0, + + /* U+0054 "T" */ + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x3f, + 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, + 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x7, 0xff, + 0xc0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, + 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xf8, + 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, + 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, + 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x7, + 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, + 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, + 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, + 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xff, + 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, + 0x7, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xe0, + 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, + 0xff, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, + 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x1f, + 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, + 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, + 0xe0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, + 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xfc, + 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, + 0x1f, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, + 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x3, + 0xff, 0xe0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, + 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x7f, + 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, + 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, + 0x80, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, + 0x3, 0xff, 0xe0, 0x0, 0x0, 0x1, 0xff, 0xf0, + 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, + 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, + 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0xf, + 0xff, 0x80, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, + 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x1, 0xff, + 0xf0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, + 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xfe, + 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, + 0xf, 0xff, 0x80, 0x0, 0x0, 0x7, 0xff, 0xc0, + 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x1, + 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, + 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x3f, + 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, + 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x7, 0xff, + 0xc0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, + 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xf8, + 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, + + /* U+0055 "U" */ + 0xff, 0xf8, 0x0, 0x3f, 0xff, 0xff, 0xf0, 0x0, + 0x7f, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, + 0xc0, 0x1, 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, + 0xff, 0xff, 0x0, 0x7, 0xff, 0xff, 0xfe, 0x0, + 0xf, 0xff, 0xff, 0xfc, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x3f, 0xff, 0xff, 0xf0, 0x0, 0x7f, + 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, 0xc0, + 0x1, 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, + 0xff, 0x0, 0x7, 0xff, 0xff, 0xfe, 0x0, 0xf, + 0xff, 0xff, 0xfc, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x3f, 0xff, 0xff, 0xf0, 0x0, 0x7f, 0xff, + 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, 0xc0, 0x1, + 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0xff, + 0x0, 0x7, 0xff, 0xff, 0xfe, 0x0, 0xf, 0xff, + 0xff, 0xfc, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x3f, 0xff, 0xff, 0xf0, 0x0, 0x7f, 0xff, 0xff, + 0xe0, 0x0, 0xff, 0xff, 0xff, 0xc0, 0x1, 0xff, + 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0xff, 0x0, + 0x7, 0xff, 0xff, 0xfe, 0x0, 0xf, 0xff, 0xff, + 0xfc, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x3f, + 0xff, 0xff, 0xf0, 0x0, 0x7f, 0xff, 0xff, 0xe0, + 0x0, 0xff, 0xff, 0xff, 0xc0, 0x1, 0xff, 0xff, + 0xff, 0x80, 0x3, 0xff, 0xff, 0xff, 0x0, 0x7, + 0xff, 0xff, 0xfe, 0x0, 0xf, 0xff, 0xff, 0xfc, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x3f, 0xff, + 0xff, 0xf0, 0x0, 0x7f, 0xff, 0xff, 0xe0, 0x0, + 0xff, 0xff, 0xff, 0xc0, 0x1, 0xff, 0xff, 0xff, + 0x80, 0x3, 0xff, 0xff, 0xff, 0x0, 0x7, 0xff, + 0xff, 0xfe, 0x0, 0xf, 0xff, 0xff, 0xfc, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x3f, 0xff, 0xff, + 0xf0, 0x0, 0x7f, 0xff, 0xff, 0xe0, 0x0, 0xff, + 0xff, 0xff, 0xc0, 0x1, 0xff, 0xff, 0xff, 0x80, + 0x3, 0xff, 0xff, 0xff, 0x0, 0x7, 0xff, 0xff, + 0xfe, 0x0, 0xf, 0xff, 0xff, 0xfc, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x3f, 0xff, 0xff, 0xf0, + 0x0, 0x7f, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff, + 0xff, 0xc0, 0x1, 0xff, 0xff, 0xff, 0x80, 0x3, + 0xff, 0xff, 0xff, 0x0, 0x7, 0xff, 0xff, 0xfe, + 0x0, 0xf, 0xff, 0xff, 0xfc, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x3f, 0xff, 0xff, 0xf0, 0x0, + 0x7f, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, + 0xc0, 0x1, 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, + 0xff, 0xff, 0x80, 0xf, 0xff, 0xdf, 0xff, 0x0, + 0x1f, 0xff, 0x3f, 0xff, 0x0, 0x7f, 0xfe, 0x7f, + 0xff, 0x83, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, + 0xf8, 0xff, 0xff, 0xff, 0xff, 0xe1, 0xff, 0xff, + 0xff, 0xff, 0xc1, 0xff, 0xff, 0xff, 0xff, 0x3, + 0xff, 0xff, 0xff, 0xfe, 0x3, 0xff, 0xff, 0xff, + 0xf8, 0x3, 0xff, 0xff, 0xff, 0xe0, 0x3, 0xff, + 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0xfe, 0x0, + 0x1, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xff, 0xff, + 0x80, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, + + /* U+0056 "V" */ + 0x7f, 0xfc, 0x0, 0x1, 0xff, 0xef, 0xff, 0x80, + 0x0, 0x3f, 0xfd, 0xff, 0xf0, 0x0, 0x7, 0xff, + 0xbf, 0xfe, 0x0, 0x0, 0xff, 0xf7, 0xff, 0xc0, + 0x0, 0x1f, 0xfe, 0xff, 0xf8, 0x0, 0x3, 0xff, + 0xdf, 0xff, 0x80, 0x0, 0xff, 0xf1, 0xff, 0xf0, + 0x0, 0x1f, 0xfe, 0x3f, 0xfe, 0x0, 0x3, 0xff, + 0xc7, 0xff, 0xc0, 0x0, 0x7f, 0xf8, 0xff, 0xf8, + 0x0, 0xf, 0xff, 0x1f, 0xff, 0x0, 0x1, 0xff, + 0xe3, 0xff, 0xe0, 0x0, 0x3f, 0xfc, 0x7f, 0xfe, + 0x0, 0xf, 0xff, 0x7, 0xff, 0xc0, 0x1, 0xff, + 0xe0, 0xff, 0xf8, 0x0, 0x3f, 0xfc, 0x1f, 0xff, + 0x0, 0x7, 0xff, 0x83, 0xff, 0xe0, 0x0, 0xff, + 0xf0, 0x7f, 0xfc, 0x0, 0x1f, 0xfe, 0xf, 0xff, + 0x80, 0x3, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x7f, + 0xf0, 0x1f, 0xff, 0x0, 0x1f, 0xfe, 0x3, 0xff, + 0xe0, 0x3, 0xff, 0xc0, 0x7f, 0xfc, 0x0, 0x7f, + 0xf8, 0xf, 0xff, 0x80, 0xf, 0xff, 0x1, 0xff, + 0xf0, 0x1, 0xff, 0xe0, 0x3f, 0xfe, 0x0, 0x3f, + 0xf8, 0x3, 0xff, 0xc0, 0x7, 0xff, 0x0, 0x7f, + 0xfc, 0x1, 0xff, 0xe0, 0xf, 0xff, 0x80, 0x3f, + 0xfc, 0x1, 0xff, 0xf0, 0x7, 0xff, 0x80, 0x3f, + 0xfe, 0x0, 0xff, 0xf0, 0x7, 0xff, 0xc0, 0x1f, + 0xfc, 0x0, 0x7f, 0xf8, 0x3, 0xff, 0x80, 0xf, + 0xff, 0x0, 0x7f, 0xf0, 0x1, 0xff, 0xe0, 0xf, + 0xfe, 0x0, 0x3f, 0xfe, 0x3, 0xff, 0xc0, 0x7, + 0xff, 0xc0, 0x7f, 0xf8, 0x0, 0xff, 0xf8, 0xf, + 0xff, 0x0, 0x1f, 0xff, 0x1, 0xff, 0xc0, 0x1, + 0xff, 0xe0, 0x3f, 0xf8, 0x0, 0x3f, 0xfc, 0x7, + 0xff, 0x0, 0x7, 0xff, 0x80, 0xff, 0xe0, 0x0, + 0xff, 0xf8, 0x1f, 0xfc, 0x0, 0x1f, 0xff, 0x7, + 0xff, 0x80, 0x3, 0xff, 0xe0, 0xff, 0xf0, 0x0, + 0x7f, 0xfc, 0x1f, 0xfc, 0x0, 0x7, 0xff, 0x83, + 0xff, 0x80, 0x0, 0xff, 0xf0, 0x7f, 0xf0, 0x0, + 0x1f, 0xfe, 0xf, 0xfe, 0x0, 0x3, 0xff, 0xc1, + 0xff, 0xc0, 0x0, 0x7f, 0xfc, 0x7f, 0xf8, 0x0, + 0xf, 0xff, 0x8f, 0xfe, 0x0, 0x0, 0xff, 0xf1, + 0xff, 0xc0, 0x0, 0x1f, 0xfe, 0x3f, 0xf8, 0x0, + 0x3, 0xff, 0xc7, 0xff, 0x0, 0x0, 0x7f, 0xf8, + 0xff, 0xe0, 0x0, 0xf, 0xff, 0x1f, 0xfc, 0x0, + 0x1, 0xff, 0xf3, 0xff, 0x80, 0x0, 0x3f, 0xfe, + 0xff, 0xe0, 0x0, 0x3, 0xff, 0xdf, 0xfc, 0x0, + 0x0, 0x7f, 0xfb, 0xff, 0x80, 0x0, 0xf, 0xff, + 0x7f, 0xf0, 0x0, 0x1, 0xff, 0xef, 0xfe, 0x0, + 0x0, 0x3f, 0xfd, 0xff, 0xc0, 0x0, 0x7, 0xff, + 0xff, 0xf8, 0x0, 0x0, 0x7f, 0xff, 0xfe, 0x0, + 0x0, 0xf, 0xff, 0xff, 0xc0, 0x0, 0x1, 0xff, + 0xff, 0xf8, 0x0, 0x0, 0x3f, 0xff, 0xff, 0x0, + 0x0, 0x7, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xff, + 0xff, 0xfc, 0x0, 0x0, 0x1f, 0xff, 0xff, 0x0, + 0x0, 0x1, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, + 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0x80, + 0x0, 0x0, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, + 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xc0, + 0x0, 0x0, 0x7f, 0xff, 0xf0, 0x0, 0x0, 0x7, + 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xc0, + 0x0, 0x0, 0x1f, 0xff, 0xf8, 0x0, 0x0, 0x3, + 0xff, 0xff, 0x0, 0x0, + + /* U+0057 "W" */ + 0xff, 0xf8, 0x0, 0x7f, 0xfe, 0x0, 0xf, 0xff, + 0xff, 0xf0, 0x0, 0xff, 0xfc, 0x0, 0x3f, 0xff, + 0xff, 0xe0, 0x1, 0xff, 0xfc, 0x0, 0x7f, 0xff, + 0xff, 0xc0, 0x3, 0xff, 0xf8, 0x0, 0xff, 0xff, + 0xff, 0x80, 0xf, 0xff, 0xf0, 0x1, 0xff, 0xff, + 0xff, 0x0, 0x1f, 0xff, 0xe0, 0x3, 0xff, 0xff, + 0xfe, 0x0, 0x3f, 0xff, 0xc0, 0x7, 0xff, 0x3f, + 0xfc, 0x0, 0x7f, 0xff, 0x80, 0xf, 0xfe, 0x7f, + 0xf8, 0x0, 0xff, 0xff, 0x0, 0x1f, 0xfc, 0xff, + 0xf0, 0x1, 0xff, 0xfe, 0x0, 0x3f, 0xf9, 0xff, + 0xe0, 0x3, 0xff, 0xfc, 0x0, 0x7f, 0xf3, 0xff, + 0xe0, 0x7, 0xff, 0xf8, 0x0, 0xff, 0xe7, 0xff, + 0xc0, 0xf, 0xff, 0xf0, 0x3, 0xff, 0xcf, 0xff, + 0x80, 0x1f, 0xff, 0xf0, 0x7, 0xff, 0x9f, 0xff, + 0x0, 0x7f, 0xff, 0xe0, 0xf, 0xff, 0x3f, 0xfe, + 0x0, 0xff, 0xff, 0xc0, 0x1f, 0xfc, 0x7f, 0xfc, + 0x1, 0xff, 0xff, 0x80, 0x3f, 0xf8, 0x7f, 0xf8, + 0x3, 0xff, 0xff, 0x0, 0x7f, 0xf0, 0xff, 0xf0, + 0x7, 0xff, 0xfe, 0x0, 0xff, 0xe1, 0xff, 0xe0, + 0xf, 0xff, 0xfc, 0x1, 0xff, 0xc3, 0xff, 0xc0, + 0x1f, 0xff, 0xf8, 0x3, 0xff, 0x87, 0xff, 0x80, + 0x3f, 0xff, 0xf0, 0x7, 0xff, 0xf, 0xff, 0x80, + 0x7f, 0xff, 0xe0, 0xf, 0xfe, 0x1f, 0xff, 0x0, + 0xff, 0xff, 0xe0, 0x3f, 0xfc, 0x3f, 0xfe, 0x3, + 0xff, 0xff, 0xc0, 0x7f, 0xf8, 0x7f, 0xfc, 0x7, + 0xff, 0xff, 0x80, 0xff, 0xe0, 0xff, 0xf8, 0xf, + 0xff, 0xff, 0x1, 0xff, 0xc0, 0xff, 0xf0, 0x1f, + 0xff, 0xfe, 0x3, 0xff, 0x81, 0xff, 0xe0, 0x3f, + 0xff, 0xfc, 0x7, 0xff, 0x3, 0xff, 0xc0, 0x7f, + 0xff, 0xf8, 0xf, 0xfe, 0x7, 0xff, 0x80, 0xff, + 0xff, 0xf0, 0x1f, 0xfc, 0xf, 0xff, 0x1, 0xff, + 0x3f, 0xe0, 0x3f, 0xf8, 0x1f, 0xfe, 0x3, 0xfe, + 0x7f, 0xc0, 0x7f, 0xf0, 0x3f, 0xfe, 0x7, 0xfc, + 0xff, 0xc0, 0xff, 0xe0, 0x7f, 0xfc, 0xf, 0xf9, + 0xff, 0x83, 0xff, 0xc0, 0xff, 0xf8, 0x3f, 0xf3, + 0xff, 0x7, 0xff, 0x0, 0xff, 0xf0, 0x7f, 0xe7, + 0xfe, 0xf, 0xfe, 0x1, 0xff, 0xe0, 0xff, 0xcf, + 0xfc, 0x1f, 0xfc, 0x3, 0xff, 0xc1, 0xff, 0x9f, + 0xf8, 0x3f, 0xf8, 0x7, 0xff, 0x83, 0xff, 0x3f, + 0xf0, 0x7f, 0xf0, 0xf, 0xff, 0x7, 0xfc, 0x7f, + 0xe0, 0xff, 0xe0, 0x1f, 0xfe, 0xf, 0xf8, 0x7f, + 0xc1, 0xff, 0xc0, 0x3f, 0xfc, 0x1f, 0xf0, 0xff, + 0x83, 0xff, 0x80, 0x7f, 0xf8, 0x3f, 0xe1, 0xff, + 0x7, 0xff, 0x0, 0xff, 0xf8, 0x7f, 0xc3, 0xff, + 0xf, 0xfe, 0x1, 0xff, 0xf1, 0xff, 0x87, 0xfe, + 0x3f, 0xf8, 0x1, 0xff, 0xe3, 0xff, 0xf, 0xfc, + 0x7f, 0xf0, 0x3, 0xff, 0xc7, 0xfe, 0x1f, 0xf8, + 0xff, 0xe0, 0x7, 0xff, 0x8f, 0xfc, 0x3f, 0xf1, + 0xff, 0xc0, 0xf, 0xff, 0x1f, 0xf8, 0x7f, 0xe3, + 0xff, 0x80, 0x1f, 0xfe, 0x3f, 0xe0, 0x7f, 0xc7, + 0xff, 0x0, 0x3f, 0xfc, 0x7f, 0xc0, 0xff, 0x8f, + 0xfe, 0x0, 0x7f, 0xf8, 0xff, 0x81, 0xff, 0x1f, + 0xfc, 0x0, 0xff, 0xf1, 0xff, 0x3, 0xfe, 0x3f, + 0xf8, 0x1, 0xff, 0xe3, 0xfe, 0x7, 0xfe, 0x7f, + 0xf0, 0x3, 0xff, 0xef, 0xfc, 0xf, 0xfc, 0xff, + 0xc0, 0x3, 0xff, 0xdf, 0xf8, 0x1f, 0xfb, 0xff, + 0x80, 0x7, 0xff, 0xbf, 0xf0, 0x3f, 0xf7, 0xff, + 0x0, 0xf, 0xff, 0x7f, 0xe0, 0x7f, 0xef, 0xfe, + 0x0, 0x1f, 0xfe, 0xff, 0x80, 0xff, 0xdf, 0xfc, + 0x0, 0x3f, 0xfd, 0xff, 0x0, 0xff, 0xbf, 0xf8, + 0x0, 0x7f, 0xfb, 0xfe, 0x1, 0xff, 0x7f, 0xf0, + 0x0, 0xff, 0xf7, 0xfc, 0x3, 0xfe, 0xff, 0xe0, + 0x1, 0xff, 0xef, 0xf8, 0x7, 0xfd, 0xff, 0xc0, + 0x3, 0xff, 0xdf, 0xf0, 0xf, 0xff, 0xff, 0x80, + 0x7, 0xff, 0xff, 0xe0, 0x1f, 0xff, 0xfe, 0x0, + 0x7, 0xff, 0xff, 0xc0, 0x3f, 0xff, 0xfc, 0x0, + 0xf, 0xff, 0xff, 0x80, 0x7f, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0x0, 0xff, 0xff, 0xf0, 0x0, + 0x3f, 0xff, 0xfc, 0x0, 0xff, 0xff, 0xe0, 0x0, + 0x7f, 0xff, 0xf8, 0x1, 0xff, 0xff, 0xc0, 0x0, + 0xff, 0xff, 0xf0, 0x3, 0xff, 0xff, 0x80, 0x1, + 0xff, 0xff, 0xe0, 0x7, 0xff, 0xff, 0x0, 0x3, + 0xff, 0xff, 0xc0, 0xf, 0xff, 0xfe, 0x0, 0x7, + 0xff, 0xff, 0x80, 0x1f, 0xff, 0xf8, 0x0, 0xf, + 0xff, 0xff, 0x0, 0x3f, 0xff, 0xf0, 0x0, 0xf, + 0xff, 0xfe, 0x0, 0x7f, 0xff, 0xe0, 0x0, 0x1f, + 0xff, 0xfc, 0x0, 0xff, 0xff, 0xc0, 0x0, 0x3f, + 0xff, 0xf0, 0x0, 0xff, 0xff, 0x80, 0x0, 0x7f, + 0xff, 0xe0, 0x1, 0xff, 0xff, 0x0, 0x0, 0xff, + 0xff, 0xc0, 0x3, 0xff, 0xfe, 0x0, 0x1, 0xff, + 0xff, 0x80, 0x7, 0xff, 0xfc, 0x0, 0x3, 0xff, + 0xff, 0x0, 0xf, 0xff, 0xf8, 0x0, 0x7, 0xff, + 0xfe, 0x0, 0x1f, 0xff, 0xf0, 0x0, + + /* U+0058 "X" */ + 0x7f, 0xfe, 0x0, 0x0, 0x7f, 0xfc, 0xff, 0xf8, + 0x0, 0x1, 0xff, 0xe3, 0xff, 0xf0, 0x0, 0xf, + 0xff, 0x8f, 0xff, 0xc0, 0x0, 0x3f, 0xfc, 0x1f, + 0xff, 0x0, 0x0, 0xff, 0xf0, 0x7f, 0xfe, 0x0, + 0x7, 0xff, 0xc1, 0xff, 0xf8, 0x0, 0x1f, 0xfe, + 0x3, 0xff, 0xe0, 0x0, 0x7f, 0xf8, 0xf, 0xff, + 0xc0, 0x3, 0xff, 0xe0, 0x3f, 0xff, 0x0, 0xf, + 0xff, 0x0, 0x7f, 0xfc, 0x0, 0x3f, 0xfc, 0x1, + 0xff, 0xf8, 0x1, 0xff, 0xf0, 0x7, 0xff, 0xe0, + 0x7, 0xff, 0x80, 0xf, 0xff, 0x80, 0x1f, 0xfe, + 0x0, 0x3f, 0xff, 0x0, 0xff, 0xf8, 0x0, 0x7f, + 0xfc, 0x3, 0xff, 0xc0, 0x1, 0xff, 0xf0, 0xf, + 0xff, 0x0, 0x7, 0xff, 0xe0, 0x7f, 0xfc, 0x0, + 0xf, 0xff, 0x81, 0xff, 0xe0, 0x0, 0x3f, 0xfe, + 0x7, 0xff, 0x80, 0x0, 0xff, 0xfc, 0x3f, 0xfc, + 0x0, 0x1, 0xff, 0xf0, 0xff, 0xf0, 0x0, 0x7, + 0xff, 0xc3, 0xff, 0xc0, 0x0, 0x1f, 0xff, 0x9f, + 0xfe, 0x0, 0x0, 0x3f, 0xfe, 0x7f, 0xf8, 0x0, + 0x0, 0xff, 0xf9, 0xff, 0xe0, 0x0, 0x3, 0xff, + 0xff, 0xff, 0x0, 0x0, 0x7, 0xff, 0xff, 0xfc, + 0x0, 0x0, 0x1f, 0xff, 0xff, 0xf0, 0x0, 0x0, + 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, + 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xf8, 0x0, + 0x0, 0x7, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, + 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xf8, + 0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0, + 0x3, 0xff, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, + 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf0, 0x0, + 0x0, 0x0, 0x7f, 0xff, 0xc0, 0x0, 0x0, 0x1, + 0xff, 0xfe, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf8, + 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf0, 0x0, 0x0, + 0x0, 0x7f, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, + 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xfe, 0x0, + 0x0, 0x0, 0x3f, 0xff, 0xf8, 0x0, 0x0, 0x1, + 0xff, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0xff, + 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0x0, 0x0, + 0x0, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, + 0xff, 0xf8, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, + 0x0, 0x0, 0x7f, 0xff, 0xff, 0xc0, 0x0, 0x1, + 0xff, 0xff, 0xff, 0x0, 0x0, 0xf, 0xff, 0x7f, + 0xfc, 0x0, 0x0, 0x3f, 0xfd, 0xff, 0xf8, 0x0, + 0x0, 0xff, 0xf3, 0xff, 0xe0, 0x0, 0x7, 0xff, + 0x8f, 0xff, 0x80, 0x0, 0x1f, 0xfe, 0x3f, 0xff, + 0x0, 0x0, 0x7f, 0xf8, 0x7f, 0xfc, 0x0, 0x3, + 0xff, 0xc1, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x7, + 0xff, 0xe0, 0x0, 0x3f, 0xfc, 0xf, 0xff, 0x80, + 0x1, 0xff, 0xe0, 0x3f, 0xfe, 0x0, 0x7, 0xff, + 0x80, 0xff, 0xfc, 0x0, 0x1f, 0xfe, 0x1, 0xff, + 0xf0, 0x0, 0xff, 0xf0, 0x7, 0xff, 0xe0, 0x3, + 0xff, 0xc0, 0x1f, 0xff, 0x80, 0x1f, 0xff, 0x0, + 0x3f, 0xfe, 0x0, 0x7f, 0xf8, 0x0, 0xff, 0xfc, + 0x1, 0xff, 0xe0, 0x3, 0xff, 0xf0, 0xf, 0xff, + 0x80, 0x7, 0xff, 0xc0, 0x3f, 0xfc, 0x0, 0x1f, + 0xff, 0x80, 0xff, 0xf0, 0x0, 0x7f, 0xfe, 0x7, + 0xff, 0xc0, 0x0, 0xff, 0xf8, 0x1f, 0xfe, 0x0, + 0x3, 0xff, 0xf0, 0x7f, 0xf8, 0x0, 0xf, 0xff, + 0xc3, 0xff, 0xe0, 0x0, 0x1f, 0xff, 0xf, 0xff, + 0x0, 0x0, 0x7f, 0xfe, 0x3f, 0xfc, 0x0, 0x1, + 0xff, 0xf9, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xf7, + 0xff, 0x80, 0x0, 0xf, 0xff, 0xff, 0xfe, 0x0, + 0x0, 0x3f, 0xff, + + /* U+0059 "Y" */ + 0xff, 0xfc, 0x0, 0x0, 0xff, 0xfb, 0xff, 0xf0, + 0x0, 0x7, 0xff, 0x9f, 0xff, 0x80, 0x0, 0x7f, + 0xfc, 0xff, 0xfc, 0x0, 0x3, 0xff, 0xe3, 0xff, + 0xe0, 0x0, 0x1f, 0xfe, 0x1f, 0xff, 0x80, 0x0, + 0xff, 0xf0, 0xff, 0xfc, 0x0, 0xf, 0xff, 0x83, + 0xff, 0xe0, 0x0, 0x7f, 0xf8, 0x1f, 0xff, 0x80, + 0x3, 0xff, 0xc0, 0xff, 0xfc, 0x0, 0x3f, 0xfe, + 0x3, 0xff, 0xe0, 0x1, 0xff, 0xf0, 0x1f, 0xff, + 0x0, 0xf, 0xff, 0x0, 0xff, 0xfc, 0x0, 0xff, + 0xf8, 0x7, 0xff, 0xe0, 0x7, 0xff, 0xc0, 0x1f, + 0xff, 0x0, 0x3f, 0xfc, 0x0, 0xff, 0xfc, 0x1, + 0xff, 0xe0, 0x7, 0xff, 0xe0, 0x1f, 0xff, 0x0, + 0x1f, 0xff, 0x0, 0xff, 0xf0, 0x0, 0xff, 0xf8, + 0x7, 0xff, 0x80, 0x7, 0xff, 0xe0, 0x7f, 0xfc, + 0x0, 0x1f, 0xff, 0x3, 0xff, 0xc0, 0x0, 0xff, + 0xf8, 0x1f, 0xfe, 0x0, 0x7, 0xff, 0xe0, 0xff, + 0xf0, 0x0, 0x1f, 0xff, 0xf, 0xff, 0x0, 0x0, + 0xff, 0xf8, 0x7f, 0xf8, 0x0, 0x7, 0xff, 0xc3, + 0xff, 0xc0, 0x0, 0x1f, 0xff, 0x3f, 0xfc, 0x0, + 0x0, 0xff, 0xf9, 0xff, 0xe0, 0x0, 0x7, 0xff, + 0xcf, 0xff, 0x0, 0x0, 0x1f, 0xff, 0x7f, 0xf0, + 0x0, 0x0, 0xff, 0xff, 0xff, 0x80, 0x0, 0x7, + 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1f, 0xff, 0xff, + 0xc0, 0x0, 0x0, 0xff, 0xff, 0xfe, 0x0, 0x0, + 0x7, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, + 0xff, 0x0, 0x0, 0x0, 0xff, 0xff, 0xf8, 0x0, + 0x0, 0x7, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, + 0xff, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, + 0x0, 0x0, 0x7, 0xff, 0xff, 0x0, 0x0, 0x0, + 0x1f, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, + 0x80, 0x0, 0x0, 0x7, 0xff, 0xfc, 0x0, 0x0, + 0x0, 0x1f, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xff, + 0xfe, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf0, 0x0, + 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, + 0xff, 0xf8, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, + 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, + 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, + 0x80, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, + 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1f, + 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, + 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0, + 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf0, + 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, + 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x3, 0xff, + 0xe0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, + 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x7, + 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, + 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, + 0xf, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7f, 0xfc, + 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, + 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, + 0xf8, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, + 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x1, + 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, + 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, + 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1f, 0xff, + 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, + 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3f, + 0xfe, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, + 0x0, + + /* U+005A "Z" */ + 0x7f, 0xff, 0xff, 0xff, 0xfd, 0xff, 0xff, 0xff, + 0xff, 0xf7, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xff, + 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xfd, + 0xff, 0xff, 0xff, 0xff, 0xf7, 0xff, 0xff, 0xff, + 0xff, 0xdf, 0xff, 0xff, 0xff, 0xff, 0x7f, 0xff, + 0xff, 0xff, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xf7, + 0xff, 0xff, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xff, + 0xff, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, + 0x7, 0xff, 0xe0, 0x0, 0x0, 0x1f, 0xff, 0x80, + 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x3, 0xff, + 0xf0, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, + 0x7f, 0xfe, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, + 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, + 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x7, + 0xff, 0xe0, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, + 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x3, 0xff, 0xf0, + 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x7f, + 0xfe, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, + 0x7, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xff, 0x0, + 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, + 0xe0, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, + 0x7f, 0xfc, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, + 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xfe, + 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x7, + 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, + 0x0, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xe0, + 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x7f, + 0xfc, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, + 0xf, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xfe, 0x0, + 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x7, 0xff, + 0xc0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, + 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, + 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x7f, 0xfc, + 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0xf, + 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, + 0x1, 0xff, 0xf8, 0x0, 0x0, 0x7, 0xff, 0xc0, + 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0xff, + 0xfc, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, + 0x1f, 0xff, 0x80, 0x0, 0x0, 0x7f, 0xfc, 0x0, + 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, + 0xc0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x1, + 0xff, 0xf8, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, + 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + + /* U+005B "[" */ + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xfe, + 0x0, 0xff, 0xf8, 0x3, 0xff, 0xe0, 0xf, 0xff, + 0x80, 0x3f, 0xfe, 0x0, 0xff, 0xf8, 0x3, 0xff, + 0xe0, 0xf, 0xff, 0x80, 0x3f, 0xfe, 0x0, 0xff, + 0xf8, 0x3, 0xff, 0xe0, 0xf, 0xff, 0x80, 0x3f, + 0xfe, 0x0, 0xff, 0xf8, 0x3, 0xff, 0xe0, 0xf, + 0xff, 0x80, 0x3f, 0xfe, 0x0, 0xff, 0xf8, 0x3, + 0xff, 0xe0, 0xf, 0xff, 0x80, 0x3f, 0xfe, 0x0, + 0xff, 0xf8, 0x3, 0xff, 0xe0, 0xf, 0xff, 0x80, + 0x3f, 0xfe, 0x0, 0xff, 0xf8, 0x3, 0xff, 0xe0, + 0xf, 0xff, 0x80, 0x3f, 0xfe, 0x0, 0xff, 0xf8, + 0x3, 0xff, 0xe0, 0xf, 0xff, 0x80, 0x3f, 0xfe, + 0x0, 0xff, 0xf8, 0x3, 0xff, 0xe0, 0xf, 0xff, + 0x80, 0x3f, 0xfe, 0x0, 0xff, 0xf8, 0x3, 0xff, + 0xe0, 0xf, 0xff, 0x80, 0x3f, 0xfe, 0x0, 0xff, + 0xf8, 0x3, 0xff, 0xe0, 0xf, 0xff, 0x80, 0x3f, + 0xfe, 0x0, 0xff, 0xf8, 0x3, 0xff, 0xe0, 0xf, + 0xff, 0x80, 0x3f, 0xfe, 0x0, 0xff, 0xf8, 0x3, + 0xff, 0xe0, 0xf, 0xff, 0x80, 0x3f, 0xfe, 0x0, + 0xff, 0xf8, 0x3, 0xff, 0xe0, 0xf, 0xff, 0x80, + 0x3f, 0xfe, 0x0, 0xff, 0xf8, 0x3, 0xff, 0xe0, + 0xf, 0xff, 0x80, 0x3f, 0xfe, 0x0, 0xff, 0xf8, + 0x3, 0xff, 0xe0, 0xf, 0xff, 0x80, 0x3f, 0xfe, + 0x0, 0xff, 0xf8, 0x3, 0xff, 0xe0, 0xf, 0xff, + 0x80, 0x3f, 0xfe, 0x0, 0xff, 0xf8, 0x3, 0xff, + 0xe0, 0xf, 0xff, 0x80, 0x3f, 0xfe, 0x0, 0xff, + 0xf8, 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + + /* U+005C "\\" */ + 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, + 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, + 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, + 0x80, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, 0x0, + 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x3, + 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xfe, 0x0, + 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, 0x0, + 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xfe, + 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x0, + 0x0, 0x3, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, + 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, 0x0, + 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, + 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf8, + 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, + 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, + 0xf8, 0x0, 0x0, 0x0, 0x1, 0xff, 0xc0, 0x0, + 0x0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x0, 0x0, + 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, + 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, + 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, 0x1, 0xff, + 0xe0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, + 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x1, + 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7, 0xff, 0x0, + 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, 0x0, + 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7, 0xff, + 0x0, 0x0, 0x0, 0x0, 0x3f, 0xfc, 0x0, 0x0, + 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x7, + 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xfc, 0x0, + 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, 0x0, 0x0, + 0x7, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, 0xfc, + 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, + 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, 0x1f, + 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, + 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x0, + 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, 0xf0, + 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, + 0x0, 0x1f, 0xfe, 0x0, 0x0, 0x0, 0x0, 0x7f, + 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, 0x0, + 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, 0x0, + 0x7f, 0xf0, 0x0, 0x0, 0x0, 0x3, 0xff, 0xc0, + 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, 0x0, + 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x1, 0xff, + 0xc0, 0x0, 0x0, 0x0, 0xf, 0xfe, 0x0, 0x0, + 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x1, + 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x0, + 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, 0x0, + 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, 0xff, + 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, + 0x0, 0x1, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xf, + 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, 0x0, + 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, 0x0, + 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, 0xf8, + 0x0, 0x0, 0x0, 0x1, 0xff, 0xe0, 0x0, 0x0, + 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, 0x3f, + 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, 0x0, + 0x0, 0x0, 0x7, 0xff, 0x0, 0x0, 0x0, 0x0, + 0x3f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, 0xe0, + 0x0, 0x0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x0, + 0x0, 0x1f, 0xfc, 0x0, 0x0, 0x0, 0x0, 0xff, + 0xe0, + + /* U+005D "]" */ + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x1f, + 0xff, 0x0, 0x7f, 0xfc, 0x1, 0xff, 0xf0, 0x7, + 0xff, 0xc0, 0x1f, 0xff, 0x0, 0x7f, 0xfc, 0x1, + 0xff, 0xf0, 0x7, 0xff, 0xc0, 0x1f, 0xff, 0x0, + 0x7f, 0xfc, 0x1, 0xff, 0xf0, 0x7, 0xff, 0xc0, + 0x1f, 0xff, 0x0, 0x7f, 0xfc, 0x1, 0xff, 0xf0, + 0x7, 0xff, 0xc0, 0x1f, 0xff, 0x0, 0x7f, 0xfc, + 0x1, 0xff, 0xf0, 0x7, 0xff, 0xc0, 0x1f, 0xff, + 0x0, 0x7f, 0xfc, 0x1, 0xff, 0xf0, 0x7, 0xff, + 0xc0, 0x1f, 0xff, 0x0, 0x7f, 0xfc, 0x1, 0xff, + 0xf0, 0x7, 0xff, 0xc0, 0x1f, 0xff, 0x0, 0x7f, + 0xfc, 0x1, 0xff, 0xf0, 0x7, 0xff, 0xc0, 0x1f, + 0xff, 0x0, 0x7f, 0xfc, 0x1, 0xff, 0xf0, 0x7, + 0xff, 0xc0, 0x1f, 0xff, 0x0, 0x7f, 0xfc, 0x1, + 0xff, 0xf0, 0x7, 0xff, 0xc0, 0x1f, 0xff, 0x0, + 0x7f, 0xfc, 0x1, 0xff, 0xf0, 0x7, 0xff, 0xc0, + 0x1f, 0xff, 0x0, 0x7f, 0xfc, 0x1, 0xff, 0xf0, + 0x7, 0xff, 0xc0, 0x1f, 0xff, 0x0, 0x7f, 0xfc, + 0x1, 0xff, 0xf0, 0x7, 0xff, 0xc0, 0x1f, 0xff, + 0x0, 0x7f, 0xfc, 0x1, 0xff, 0xf0, 0x7, 0xff, + 0xc0, 0x1f, 0xff, 0x0, 0x7f, 0xfc, 0x1, 0xff, + 0xf0, 0x7, 0xff, 0xc0, 0x1f, 0xff, 0x0, 0x7f, + 0xfc, 0x1, 0xff, 0xf0, 0x7, 0xff, 0xc0, 0x1f, + 0xff, 0x0, 0x7f, 0xfc, 0x1, 0xff, 0xf0, 0x7, + 0xff, 0xc0, 0x1f, 0xff, 0x0, 0x7f, 0xfc, 0x1, + 0xff, 0xf0, 0x7, 0xff, 0xc0, 0x1f, 0xff, 0x0, + 0x7f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + + /* U+005E "^" */ + 0x0, 0x0, 0x7f, 0xc0, 0x0, 0x0, 0x0, 0xf, + 0xfc, 0x0, 0x0, 0x0, 0x3, 0xff, 0x80, 0x0, + 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x0, 0x0, 0x1f, + 0xff, 0x0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, + 0x0, 0x0, 0xff, 0xfe, 0x0, 0x0, 0x0, 0x1f, + 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0xfe, 0x0, + 0x0, 0x0, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x3f, + 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0x80, + 0x0, 0x1, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x3f, + 0xf7, 0xff, 0x0, 0x0, 0xf, 0xfe, 0x7f, 0xf0, + 0x0, 0x1, 0xff, 0x8f, 0xfe, 0x0, 0x0, 0x7f, + 0xf0, 0xff, 0xe0, 0x0, 0x1f, 0xfc, 0x1f, 0xfc, + 0x0, 0x3, 0xff, 0x81, 0xff, 0xc0, 0x0, 0xff, + 0xe0, 0x1f, 0xf8, 0x0, 0x1f, 0xfc, 0x3, 0xff, + 0x80, 0x7, 0xff, 0x0, 0x3f, 0xf0, 0x0, 0xff, + 0xe0, 0x7, 0xff, 0x0, 0x3f, 0xf8, 0x0, 0x7f, + 0xe0, 0x7, 0xff, 0x0, 0xf, 0xfe, 0x1, 0xff, + 0xc0, 0x0, 0xff, 0xe0, 0x3f, 0xf8, 0x0, 0x1f, + 0xfc, 0xf, 0xfe, 0x0, 0x1, 0xff, 0xc1, 0xff, + 0x80, 0x0, 0x3f, 0xf8, 0x7f, 0xf0, 0x0, 0x3, + 0xff, 0x8f, 0xfc, 0x0, 0x0, 0x7f, 0xf3, 0xff, + 0x80, 0x0, 0x7, 0xff, 0x7f, 0xe0, 0x0, 0x0, + 0xff, 0xe0, + + /* U+005F "_" */ + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf0, + + /* U+0060 "`" */ + 0x7f, 0xfe, 0x0, 0x7f, 0xfe, 0x0, 0x7f, 0xfc, + 0x0, 0x7f, 0xfc, 0x0, 0x7f, 0xfc, 0x0, 0xff, + 0xf8, 0x0, 0xff, 0xf8, 0x0, 0xff, 0xf0, 0x0, + 0xff, 0xf0, 0x0, 0xff, 0xe0, 0x0, 0xff, 0xe0, + 0x0, 0xff, 0xe0, 0x0, 0xff, 0xc0, 0x0, 0xff, + 0xc0, + + /* U+0061 "a" */ + 0x0, 0x3, 0xff, 0xff, 0x0, 0x0, 0x0, 0xf, + 0xff, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xff, 0xf0, + 0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0, + 0x7, 0xff, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xff, + 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xf8, 0x0, + 0x0, 0x1, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x7, + 0xff, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xff, 0xff, + 0x0, 0x0, 0x0, 0xff, 0xff, 0xfc, 0x0, 0x0, + 0x3, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, + 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xff, 0xff, 0x0, + 0x0, 0x0, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x3, + 0xff, 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfd, 0xff, + 0xe0, 0x0, 0x0, 0x7f, 0xf7, 0xff, 0x80, 0x0, + 0x1, 0xff, 0xdf, 0xfe, 0x0, 0x0, 0x7, 0xff, + 0x7f, 0xf8, 0x0, 0x0, 0x1f, 0xfd, 0xff, 0xe0, + 0x0, 0x0, 0x7f, 0xe3, 0xff, 0xc0, 0x0, 0x3, + 0xff, 0x8f, 0xff, 0x0, 0x0, 0xf, 0xfe, 0x3f, + 0xfc, 0x0, 0x0, 0x3f, 0xf8, 0xff, 0xf0, 0x0, + 0x0, 0xff, 0xe3, 0xff, 0xc0, 0x0, 0x3, 0xff, + 0x8f, 0xff, 0x0, 0x0, 0xf, 0xfe, 0x3f, 0xfc, + 0x0, 0x0, 0x7f, 0xf0, 0x7f, 0xf8, 0x0, 0x1, + 0xff, 0xc1, 0xff, 0xe0, 0x0, 0x7, 0xff, 0x7, + 0xff, 0x80, 0x0, 0x1f, 0xfc, 0x1f, 0xfe, 0x0, + 0x0, 0x7f, 0xf0, 0x7f, 0xf8, 0x0, 0x1, 0xff, + 0xc1, 0xff, 0xe0, 0x0, 0xf, 0xff, 0x7, 0xff, + 0xc0, 0x0, 0x3f, 0xfc, 0xf, 0xff, 0x0, 0x0, + 0xff, 0xe0, 0x3f, 0xfc, 0x0, 0x3, 0xff, 0x80, + 0xff, 0xf0, 0x0, 0xf, 0xfe, 0x3, 0xff, 0xc0, + 0x0, 0x3f, 0xf8, 0xf, 0xff, 0x0, 0x0, 0xff, + 0xe0, 0x3f, 0xfe, 0x0, 0x7, 0xff, 0x80, 0xff, + 0xf8, 0x0, 0x1f, 0xfe, 0x1, 0xff, 0xe0, 0x0, + 0x7f, 0xf0, 0x7, 0xff, 0x80, 0x1, 0xff, 0xc0, + 0x1f, 0xfe, 0x0, 0x7, 0xff, 0x0, 0x7f, 0xf8, + 0x0, 0x1f, 0xfc, 0x1, 0xff, 0xf0, 0x0, 0xff, + 0xf0, 0x7, 0xff, 0xc0, 0x3, 0xff, 0xc0, 0x1f, + 0xff, 0x0, 0xf, 0xff, 0x0, 0x3f, 0xfc, 0x0, + 0x3f, 0xf8, 0x0, 0xff, 0xf0, 0x0, 0xff, 0xe0, + 0x3, 0xff, 0xc0, 0x3, 0xff, 0x80, 0xf, 0xff, + 0x80, 0x1f, 0xfe, 0x0, 0x3f, 0xfe, 0x0, 0x7f, + 0xf8, 0x0, 0xff, 0xf8, 0x1, 0xff, 0xe0, 0x3, + 0xff, 0xe0, 0x7, 0xff, 0xff, 0xff, 0xff, 0x80, + 0x1f, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x7f, 0xff, + 0xff, 0xff, 0xfc, 0x3, 0xff, 0xff, 0xff, 0xff, + 0xf0, 0xf, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x3f, + 0xff, 0xff, 0xff, 0xff, 0x0, 0xff, 0xff, 0xff, + 0xff, 0xfc, 0x3, 0xff, 0xff, 0xff, 0xff, 0xf0, + 0xf, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x7f, 0xff, + 0xff, 0xff, 0xff, 0x81, 0xff, 0xff, 0xff, 0xff, + 0xfe, 0x7, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x1f, + 0xfe, 0x0, 0x3, 0xff, 0xe0, 0x7f, 0xf8, 0x0, + 0xf, 0xff, 0x81, 0xff, 0xe0, 0x0, 0x3f, 0xfe, + 0xf, 0xff, 0x80, 0x0, 0x7f, 0xfc, 0x3f, 0xfc, + 0x0, 0x1, 0xff, 0xf0, 0xff, 0xf0, 0x0, 0x7, + 0xff, 0xc3, 0xff, 0xc0, 0x0, 0x1f, 0xff, 0xf, + 0xff, 0x0, 0x0, 0x7f, 0xfc, 0x3f, 0xfc, 0x0, + 0x1, 0xff, 0xf1, 0xff, 0xf0, 0x0, 0x3, 0xff, + 0xe7, 0xff, 0xc0, 0x0, 0xf, 0xff, 0x9f, 0xfe, + 0x0, 0x0, 0x3f, 0xfe, 0x7f, 0xf8, 0x0, 0x0, + 0xff, 0xf9, 0xff, 0xe0, 0x0, 0x3, 0xff, 0xe7, + 0xff, 0x80, 0x0, 0xf, 0xff, 0x9f, 0xfe, 0x0, + 0x0, 0x3f, 0xff, + + /* U+0062 "b" */ + 0xff, 0xff, 0xff, 0xc0, 0x0, 0x7f, 0xff, 0xff, + 0xfc, 0x0, 0x3f, 0xff, 0xff, 0xff, 0x80, 0x1f, + 0xff, 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, + 0xfc, 0x7, 0xff, 0xff, 0xff, 0xff, 0x3, 0xff, + 0xff, 0xff, 0xff, 0xc1, 0xff, 0xff, 0xff, 0xff, + 0xe0, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x7f, 0xff, + 0xff, 0xff, 0xfc, 0x3f, 0xff, 0xff, 0xff, 0xff, + 0x1f, 0xff, 0xff, 0xff, 0xff, 0x8f, 0xff, 0x80, + 0x3f, 0xff, 0xc7, 0xff, 0xc0, 0x7, 0xff, 0xf3, + 0xff, 0xe0, 0x1, 0xff, 0xf9, 0xff, 0xf0, 0x0, + 0xff, 0xfc, 0xff, 0xf8, 0x0, 0x3f, 0xfe, 0x7f, + 0xfc, 0x0, 0x1f, 0xff, 0x3f, 0xfe, 0x0, 0xf, + 0xff, 0x9f, 0xff, 0x0, 0x7, 0xff, 0xcf, 0xff, + 0x80, 0x3, 0xff, 0xe7, 0xff, 0xc0, 0x1, 0xff, + 0xf3, 0xff, 0xe0, 0x0, 0xff, 0xf9, 0xff, 0xf0, + 0x0, 0x7f, 0xfc, 0xff, 0xf8, 0x0, 0x3f, 0xfe, + 0x7f, 0xfc, 0x0, 0x1f, 0xff, 0x3f, 0xfe, 0x0, + 0xf, 0xff, 0x9f, 0xff, 0x0, 0x7, 0xff, 0xcf, + 0xff, 0x80, 0x3, 0xff, 0xc7, 0xff, 0xc0, 0x3, + 0xff, 0xe3, 0xff, 0xe0, 0x1, 0xff, 0xf1, 0xff, + 0xf0, 0x1, 0xff, 0xf8, 0xff, 0xf8, 0x1, 0xff, + 0xf8, 0x7f, 0xfc, 0x1, 0xff, 0xfc, 0x3f, 0xff, + 0xff, 0xff, 0xfc, 0x1f, 0xff, 0xff, 0xff, 0xfe, + 0xf, 0xff, 0xff, 0xff, 0xfe, 0x7, 0xff, 0xff, + 0xff, 0xfc, 0x3, 0xff, 0xff, 0xff, 0xfc, 0x1, + 0xff, 0xff, 0xff, 0xfe, 0x0, 0xff, 0xff, 0xff, + 0xff, 0xc0, 0x7f, 0xff, 0xff, 0xff, 0xf0, 0x3f, + 0xff, 0xff, 0xff, 0xfc, 0x1f, 0xff, 0xff, 0xff, + 0xff, 0xf, 0xff, 0xff, 0xff, 0xff, 0xc7, 0xff, + 0xff, 0xff, 0xff, 0xf3, 0xff, 0xe0, 0x7, 0xff, + 0xf9, 0xff, 0xf0, 0x0, 0xff, 0xfe, 0xff, 0xf8, + 0x0, 0x3f, 0xff, 0x7f, 0xfc, 0x0, 0xf, 0xff, + 0xbf, 0xfe, 0x0, 0x7, 0xff, 0xdf, 0xff, 0x0, + 0x1, 0xff, 0xff, 0xff, 0x80, 0x0, 0xff, 0xff, + 0xff, 0xc0, 0x0, 0x7f, 0xff, 0xff, 0xe0, 0x0, + 0x3f, 0xff, 0xff, 0xf0, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0xf, 0xff, 0xff, 0xfc, 0x0, 0x7, + 0xff, 0xff, 0xfe, 0x0, 0x3, 0xff, 0xff, 0xff, + 0x0, 0x1, 0xff, 0xff, 0xff, 0x80, 0x0, 0xff, + 0xff, 0xff, 0xc0, 0x0, 0x7f, 0xff, 0xff, 0xe0, + 0x0, 0x3f, 0xff, 0xff, 0xf0, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0xf, 0xff, 0xff, 0xfc, 0x0, + 0x7, 0xff, 0xff, 0xfe, 0x0, 0x3, 0xff, 0xff, + 0xff, 0x0, 0x1, 0xff, 0xff, 0xff, 0x80, 0x1, + 0xff, 0xff, 0xff, 0xc0, 0x0, 0xff, 0xff, 0xff, + 0xe0, 0x0, 0xff, 0xfd, 0xff, 0xf0, 0x1, 0xff, + 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7f, 0xff, + 0xff, 0xff, 0xff, 0x3f, 0xff, 0xff, 0xff, 0xff, + 0x9f, 0xff, 0xff, 0xff, 0xff, 0x8f, 0xff, 0xff, + 0xff, 0xff, 0xc7, 0xff, 0xff, 0xff, 0xff, 0xc3, + 0xff, 0xff, 0xff, 0xff, 0xc1, 0xff, 0xff, 0xff, + 0xff, 0xc0, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x7f, + 0xff, 0xff, 0xff, 0x80, 0x3f, 0xff, 0xff, 0xff, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x0, + + /* U+0063 "c" */ + 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, + 0xe0, 0x0, 0x1, 0xff, 0xff, 0xf0, 0x0, 0xf, + 0xff, 0xff, 0xf8, 0x0, 0x3f, 0xff, 0xff, 0xf8, + 0x0, 0xff, 0xff, 0xff, 0xf8, 0x3, 0xff, 0xff, + 0xff, 0xf8, 0xf, 0xff, 0xff, 0xff, 0xf8, 0x1f, + 0xff, 0xff, 0xff, 0xf0, 0x7f, 0xff, 0xff, 0xff, + 0xf0, 0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, + 0xff, 0xff, 0xe7, 0xff, 0xf8, 0x3f, 0xff, 0xcf, + 0xff, 0xc0, 0x1f, 0xff, 0x9f, 0xff, 0x0, 0x1f, + 0xff, 0x7f, 0xfe, 0x0, 0x3f, 0xff, 0xff, 0xf8, + 0x0, 0x3f, 0xff, 0xff, 0xf0, 0x0, 0x7f, 0xff, + 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, 0xc0, 0x1, + 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0xff, + 0x0, 0x7, 0xff, 0xff, 0xfe, 0x0, 0xf, 0xff, + 0xff, 0xfc, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x3f, 0xff, 0xff, 0xf0, 0x0, 0x7f, 0xff, 0xff, + 0xe0, 0x0, 0xff, 0xff, 0xff, 0xc0, 0x1, 0xff, + 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0xff, 0x0, + 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x7f, + 0xfc, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, + 0x1, 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xe0, + 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0xf, + 0xff, 0x80, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, + 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xfc, + 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x1, + 0xff, 0xf0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, + 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0xf, 0xff, + 0x80, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, + 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, + 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x1, 0xff, + 0xf0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, + 0x7, 0xff, 0xc0, 0x0, 0x0, 0xf, 0xff, 0x80, + 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x3f, + 0xfe, 0x0, 0xf, 0xff, 0xff, 0xfc, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x3f, 0xff, 0xff, 0xf0, + 0x0, 0x7f, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff, + 0xff, 0xc0, 0x1, 0xff, 0xff, 0xff, 0x80, 0x3, + 0xff, 0xff, 0xff, 0x0, 0x7, 0xff, 0xff, 0xfe, + 0x0, 0xf, 0xff, 0xff, 0xfc, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x3f, 0xff, 0xff, 0xf0, 0x0, + 0x7f, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, + 0xc0, 0x1, 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, + 0xff, 0xff, 0x0, 0x7, 0xff, 0xff, 0xff, 0x0, + 0x1f, 0xff, 0xbf, 0xfe, 0x0, 0x3f, 0xfe, 0x7f, + 0xfe, 0x0, 0xff, 0xfc, 0xff, 0xff, 0x7, 0xff, + 0xf9, 0xff, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, + 0xff, 0xff, 0xc3, 0xff, 0xff, 0xff, 0xff, 0x83, + 0xff, 0xff, 0xff, 0xfe, 0x7, 0xff, 0xff, 0xff, + 0xfc, 0x7, 0xff, 0xff, 0xff, 0xf0, 0x7, 0xff, + 0xff, 0xff, 0xc0, 0x7, 0xff, 0xff, 0xff, 0x0, + 0x7, 0xff, 0xff, 0xfc, 0x0, 0x3, 0xff, 0xff, + 0xe0, 0x0, 0x1, 0xff, 0xff, 0x0, 0x0, 0x0, + 0x7f, 0xf0, 0x0, 0x0, + + /* U+0064 "d" */ + 0xff, 0xff, 0xff, 0xc0, 0x0, 0xff, 0xff, 0xff, + 0xf8, 0x0, 0xff, 0xff, 0xff, 0xff, 0x0, 0xff, + 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, 0xff, + 0xc0, 0xff, 0xff, 0xff, 0xff, 0xe0, 0xff, 0xff, + 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xf8, + 0xff, 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, + 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, + 0xff, 0xff, 0xff, 0xfe, 0xff, 0xf8, 0x1, 0xff, + 0xfe, 0xff, 0xf8, 0x0, 0x7f, 0xfe, 0xff, 0xf8, + 0x0, 0x3f, 0xfe, 0xff, 0xf8, 0x0, 0x3f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x3f, + 0xff, 0xff, 0xf8, 0x0, 0x3f, 0xfe, 0xff, 0xf8, + 0x0, 0x7f, 0xfe, 0xff, 0xf8, 0x1, 0xff, 0xfe, + 0xff, 0xff, 0xff, 0xff, 0xfe, 0xff, 0xff, 0xff, + 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xfc, 0xff, + 0xff, 0xff, 0xff, 0xf8, 0xff, 0xff, 0xff, 0xff, + 0xf8, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, + 0xff, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xc0, + 0xff, 0xff, 0xff, 0xff, 0x80, 0xff, 0xff, 0xff, + 0xfe, 0x0, 0xff, 0xff, 0xff, 0xf8, 0x0, 0xff, + 0xff, 0xff, 0xc0, 0x0, + + /* U+0065 "e" */ + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, + 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0xff, + 0xf8, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, + 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, + 0x0, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0x80, + 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, + 0x80, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0xf, + 0xff, 0x80, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, + 0xf, 0xff, 0x80, 0x0, 0x0, 0xff, 0xf8, 0x0, + 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0xff, 0xf8, + 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0xff, + 0xf8, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, + 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, + 0x0, 0xff, 0xff, 0xff, 0xff, 0xf, 0xff, 0xff, + 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xf, 0xff, + 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, 0xf, + 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, 0xff, + 0xf, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, 0xff, + 0xff, 0xf, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xff, + 0xff, 0xff, 0xf, 0xff, 0xff, 0xff, 0xf0, 0xff, + 0xf8, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, + 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, + 0x0, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0x80, + 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, + 0x80, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0xf, + 0xff, 0x80, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, + 0xf, 0xff, 0x80, 0x0, 0x0, 0xff, 0xf8, 0x0, + 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0xff, 0xf8, + 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0xff, + 0xf8, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, + 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, + 0x0, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, 0x80, + 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0xf, 0xff, + 0x80, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0xf, + 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, + + /* U+0066 "f" */ + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x0, + 0x1, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xfe, 0x0, + 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xf8, + 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x3, 0xff, + 0xe0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0xf, + 0xff, 0x80, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, + 0x3f, 0xfe, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, + 0x0, 0xff, 0xf8, 0x0, 0x0, 0x1f, 0xff, 0x0, + 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xfc, + 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x1, 0xff, + 0xf0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x7, + 0xff, 0xc0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, + 0x1f, 0xff, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, + 0x0, 0x7f, 0xff, 0xff, 0xfe, 0xf, 0xff, 0xff, + 0xff, 0xc1, 0xff, 0xff, 0xff, 0xf8, 0x3f, 0xff, + 0xff, 0xff, 0x7, 0xff, 0xff, 0xff, 0xe0, 0xff, + 0xff, 0xff, 0xfc, 0x1f, 0xff, 0xff, 0xff, 0x83, + 0xff, 0xff, 0xff, 0xf0, 0x7f, 0xff, 0xff, 0xfe, + 0xf, 0xff, 0xff, 0xff, 0xc1, 0xff, 0xff, 0xff, + 0xf8, 0x3f, 0xff, 0xff, 0xff, 0x7, 0xff, 0xc0, + 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x1f, 0xff, + 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x7f, + 0xfc, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x1, + 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, + 0x7, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xf8, 0x0, + 0x0, 0x1f, 0xff, 0x0, 0x0, 0x3, 0xff, 0xe0, + 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0xf, 0xff, + 0x80, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x3f, + 0xfe, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, + 0xff, 0xf8, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, + 0x3, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xfc, 0x0, + 0x0, 0xf, 0xff, 0x80, 0x0, 0x1, 0xff, 0xf0, + 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x7, 0xff, + 0xc0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x1f, + 0xff, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, + 0x7f, 0xfc, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, + 0x1, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xfe, 0x0, + 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xf8, + 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x3, 0xff, + 0xe0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, + + /* U+0067 "g" */ + 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xff, + 0xf8, 0x0, 0x0, 0x7f, 0xff, 0xfe, 0x0, 0x1, + 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0xff, + 0xc0, 0x7, 0xff, 0xff, 0xff, 0xe0, 0xf, 0xff, + 0xff, 0xff, 0xf0, 0x1f, 0xff, 0xff, 0xff, 0xf0, + 0x1f, 0xff, 0xff, 0xff, 0xf8, 0x3f, 0xff, 0xff, + 0xff, 0xfc, 0x3f, 0xff, 0xff, 0xff, 0xfc, 0x7f, + 0xff, 0xff, 0xff, 0xfc, 0x7f, 0xff, 0x81, 0xff, + 0xfe, 0x7f, 0xfe, 0x0, 0x7f, 0xfe, 0x7f, 0xfc, + 0x0, 0x3f, 0xfe, 0xff, 0xfc, 0x0, 0x3f, 0xff, + 0xff, 0xf8, 0x0, 0x3f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x0, + 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf8, + 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, + 0xff, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, + 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xff, + 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, + 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0xff, 0xf8, + 0xf, 0xff, 0xff, 0xff, 0xf8, 0xf, 0xff, 0xff, + 0xff, 0xf8, 0xf, 0xff, 0xff, 0xff, 0xf8, 0xf, + 0xff, 0xff, 0xff, 0xf8, 0xf, 0xff, 0xff, 0xff, + 0xf8, 0xf, 0xff, 0xff, 0xff, 0xf8, 0xf, 0xff, + 0xff, 0xff, 0xf8, 0xf, 0xff, 0xff, 0xff, 0xf8, + 0xf, 0xff, 0xff, 0xff, 0xf8, 0xf, 0xff, 0xff, + 0xff, 0xf8, 0xf, 0xff, 0xff, 0xff, 0xf8, 0xf, + 0xff, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xfc, + 0x0, 0x3f, 0xff, 0x7f, 0xfc, 0x0, 0x3f, 0xfe, + 0x7f, 0xfe, 0x0, 0x7f, 0xfe, 0x7f, 0xff, 0x81, + 0xff, 0xfe, 0x7f, 0xff, 0xff, 0xff, 0xfe, 0x3f, + 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xff, 0xff, 0xff, + 0xfc, 0x1f, 0xff, 0xff, 0xff, 0xf8, 0x1f, 0xff, + 0xff, 0xff, 0xf8, 0xf, 0xff, 0xff, 0xff, 0xf0, + 0x7, 0xff, 0xff, 0xff, 0xe0, 0x3, 0xff, 0xff, + 0xff, 0xc0, 0x1, 0xff, 0xff, 0xff, 0x80, 0x0, + 0x7f, 0xff, 0xfe, 0x0, 0x0, 0x1f, 0xff, 0xf8, + 0x0, 0x0, 0x1, 0xff, 0x80, 0x0, + + /* U+0068 "h" */ + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, + + /* U+0069 "i" */ + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xf0, + + /* U+006A "j" */ + 0x0, 0xf, 0xff, 0x80, 0x7, 0xff, 0xc0, 0x3, + 0xff, 0xe0, 0x1, 0xff, 0xf0, 0x0, 0xff, 0xf8, + 0x0, 0x7f, 0xfc, 0x0, 0x3f, 0xfe, 0x0, 0x1f, + 0xff, 0x0, 0xf, 0xff, 0x80, 0x7, 0xff, 0xc0, + 0x3, 0xff, 0xe0, 0x1, 0xff, 0xf0, 0x0, 0xff, + 0xf8, 0x0, 0x7f, 0xfc, 0x0, 0x3f, 0xfe, 0x0, + 0x1f, 0xff, 0x0, 0xf, 0xff, 0x80, 0x7, 0xff, + 0xc0, 0x3, 0xff, 0xe0, 0x1, 0xff, 0xf0, 0x0, + 0xff, 0xf8, 0x0, 0x7f, 0xfc, 0x0, 0x3f, 0xfe, + 0x0, 0x1f, 0xff, 0x0, 0xf, 0xff, 0x80, 0x7, + 0xff, 0xc0, 0x3, 0xff, 0xe0, 0x1, 0xff, 0xf0, + 0x0, 0xff, 0xf8, 0x0, 0x7f, 0xfc, 0x0, 0x3f, + 0xfe, 0x0, 0x1f, 0xff, 0x0, 0xf, 0xff, 0x80, + 0x7, 0xff, 0xc0, 0x3, 0xff, 0xe0, 0x1, 0xff, + 0xf0, 0x0, 0xff, 0xf8, 0x0, 0x7f, 0xfc, 0x0, + 0x3f, 0xfe, 0x0, 0x1f, 0xff, 0x0, 0xf, 0xff, + 0x80, 0x7, 0xff, 0xc0, 0x3, 0xff, 0xe0, 0x1, + 0xff, 0xf0, 0x0, 0xff, 0xf8, 0x0, 0x7f, 0xfc, + 0x0, 0x3f, 0xfe, 0x0, 0x1f, 0xff, 0x0, 0xf, + 0xff, 0x80, 0x7, 0xff, 0xc0, 0x3, 0xff, 0xe0, + 0x1, 0xff, 0xf0, 0x0, 0xff, 0xf8, 0x0, 0x7f, + 0xfc, 0x0, 0x3f, 0xfe, 0x0, 0x1f, 0xff, 0x0, + 0xf, 0xff, 0x80, 0x7, 0xff, 0xc0, 0x3, 0xff, + 0xe0, 0x1, 0xff, 0xf0, 0x0, 0xff, 0xf8, 0x0, + 0x7f, 0xfc, 0x0, 0x3f, 0xfe, 0x0, 0x1f, 0xff, + 0x0, 0xf, 0xff, 0x80, 0x7, 0xff, 0xc0, 0x3, + 0xff, 0xe0, 0x1, 0xff, 0xf0, 0x1, 0xff, 0xf8, + 0x0, 0xff, 0xfc, 0x0, 0xff, 0xfc, 0x1, 0xff, + 0xfe, 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xbf, + 0xff, 0xff, 0x9f, 0xff, 0xff, 0xcf, 0xff, 0xff, + 0xc7, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xe1, 0xff, + 0xff, 0xe0, 0xff, 0xff, 0xe0, 0x7f, 0xff, 0xc0, + 0x3f, 0xff, 0x80, 0x1f, 0xfc, 0x0, 0x0, + + /* U+006B "k" */ + 0xff, 0xf8, 0x0, 0x3, 0xff, 0xff, 0xff, 0x0, + 0x0, 0xff, 0xfb, 0xff, 0xe0, 0x0, 0x1f, 0xff, + 0x7f, 0xfc, 0x0, 0x7, 0xff, 0xcf, 0xff, 0x80, + 0x0, 0xff, 0xf9, 0xff, 0xf0, 0x0, 0x3f, 0xfe, + 0x3f, 0xfe, 0x0, 0x7, 0xff, 0xc7, 0xff, 0xc0, + 0x1, 0xff, 0xf0, 0xff, 0xf8, 0x0, 0x3f, 0xfe, + 0x1f, 0xff, 0x0, 0xf, 0xff, 0x83, 0xff, 0xe0, + 0x1, 0xff, 0xf0, 0x7f, 0xfc, 0x0, 0x7f, 0xfc, + 0xf, 0xff, 0x80, 0xf, 0xff, 0x81, 0xff, 0xf0, + 0x3, 0xff, 0xe0, 0x3f, 0xfe, 0x0, 0x7f, 0xfc, + 0x7, 0xff, 0xc0, 0x1f, 0xff, 0x0, 0xff, 0xf8, + 0x3, 0xff, 0xe0, 0x1f, 0xff, 0x0, 0xff, 0xf8, + 0x3, 0xff, 0xe0, 0x1f, 0xff, 0x0, 0x7f, 0xfc, + 0x3, 0xff, 0xc0, 0xf, 0xff, 0x80, 0xff, 0xf8, + 0x1, 0xff, 0xf0, 0x1f, 0xfe, 0x0, 0x3f, 0xfe, + 0x7, 0xff, 0xc0, 0x7, 0xff, 0xc0, 0xff, 0xf0, + 0x0, 0xff, 0xf8, 0x3f, 0xfe, 0x0, 0x1f, 0xff, + 0x7, 0xff, 0x80, 0x3, 0xff, 0xe1, 0xff, 0xf0, + 0x0, 0x7f, 0xfc, 0x3f, 0xfc, 0x0, 0xf, 0xff, + 0x8f, 0xff, 0x0, 0x1, 0xff, 0xf1, 0xff, 0xe0, + 0x0, 0x3f, 0xfe, 0x7f, 0xf8, 0x0, 0x7, 0xff, + 0xcf, 0xff, 0x0, 0x0, 0xff, 0xfb, 0xff, 0xf0, + 0x0, 0x1f, 0xff, 0x7f, 0xfe, 0x0, 0x3, 0xff, + 0xff, 0xff, 0xc0, 0x0, 0x7f, 0xff, 0xff, 0xfc, + 0x0, 0xf, 0xff, 0xff, 0xff, 0x80, 0x1, 0xff, + 0xff, 0xff, 0xf0, 0x0, 0x3f, 0xff, 0xff, 0xff, + 0x0, 0x7, 0xff, 0xff, 0xff, 0xe0, 0x0, 0xff, + 0xff, 0xff, 0xfc, 0x0, 0x1f, 0xff, 0xff, 0xff, + 0x80, 0x3, 0xff, 0xff, 0xff, 0xf8, 0x0, 0x7f, + 0xff, 0xff, 0xff, 0x0, 0xf, 0xff, 0xff, 0xff, + 0xe0, 0x1, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x3f, + 0xff, 0xff, 0xff, 0xc0, 0x7, 0xff, 0xfe, 0xff, + 0xf8, 0x0, 0xff, 0xff, 0x9f, 0xff, 0x80, 0x1f, + 0xff, 0xf3, 0xff, 0xf0, 0x3, 0xff, 0xfc, 0x7f, + 0xfe, 0x0, 0x7f, 0xff, 0x87, 0xff, 0xc0, 0xf, + 0xff, 0xe0, 0xff, 0xfc, 0x1, 0xff, 0xfc, 0x1f, + 0xff, 0x80, 0x3f, 0xff, 0x1, 0xff, 0xf0, 0x7, + 0xff, 0xe0, 0x3f, 0xff, 0x0, 0xff, 0xf8, 0x7, + 0xff, 0xe0, 0x1f, 0xff, 0x0, 0x7f, 0xfc, 0x3, + 0xff, 0xe0, 0xf, 0xff, 0xc0, 0x7f, 0xfc, 0x1, + 0xff, 0xf8, 0xf, 0xff, 0x80, 0x3f, 0xff, 0x1, + 0xff, 0xf0, 0x3, 0xff, 0xe0, 0x3f, 0xfe, 0x0, + 0x7f, 0xfe, 0x7, 0xff, 0xc0, 0xf, 0xff, 0xc0, + 0xff, 0xf8, 0x0, 0xff, 0xf8, 0x1f, 0xff, 0x0, + 0x1f, 0xff, 0x83, 0xff, 0xe0, 0x3, 0xff, 0xf0, + 0x7f, 0xfc, 0x0, 0x3f, 0xfe, 0xf, 0xff, 0x80, + 0x7, 0xff, 0xe1, 0xff, 0xf0, 0x0, 0xff, 0xfc, + 0x3f, 0xfe, 0x0, 0x1f, 0xff, 0x87, 0xff, 0xc0, + 0x1, 0xff, 0xf0, 0xff, 0xf8, 0x0, 0x3f, 0xff, + 0x1f, 0xff, 0x0, 0x7, 0xff, 0xe3, 0xff, 0xe0, + 0x0, 0x7f, 0xfc, 0x7f, 0xfc, 0x0, 0xf, 0xff, + 0xcf, 0xff, 0x80, 0x1, 0xff, 0xf9, 0xff, 0xf0, + 0x0, 0x3f, 0xff, 0x3f, 0xfe, 0x0, 0x3, 0xff, + 0xf7, 0xff, 0xc0, 0x0, 0x7f, 0xfe, 0xff, 0xf8, + 0x0, 0xf, 0xff, 0xdf, 0xff, 0x0, 0x0, 0xff, + 0xfb, 0xff, 0xe0, 0x0, 0x1f, 0xff, 0xff, 0xfc, + 0x0, 0x3, 0xff, 0xf0, + + /* U+006C "l" */ + 0xff, 0xf8, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, + 0x3, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xfc, 0x0, + 0x0, 0xf, 0xff, 0x80, 0x0, 0x1, 0xff, 0xf0, + 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x7, 0xff, + 0xc0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x1f, + 0xff, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, + 0x7f, 0xfc, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, + 0x1, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xfe, 0x0, + 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xf8, + 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x3, 0xff, + 0xe0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0xf, + 0xff, 0x80, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, + 0x3f, 0xfe, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, + 0x0, 0xff, 0xf8, 0x0, 0x0, 0x1f, 0xff, 0x0, + 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xfc, + 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x1, 0xff, + 0xf0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x7, + 0xff, 0xc0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, + 0x1f, 0xff, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, + 0x0, 0x7f, 0xfc, 0x0, 0x0, 0xf, 0xff, 0x80, + 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xfe, + 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0xff, + 0xf8, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x3, + 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, + 0xf, 0xff, 0x80, 0x0, 0x1, 0xff, 0xf0, 0x0, + 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x7, 0xff, 0xc0, + 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x1f, 0xff, + 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x7f, + 0xfc, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x1, + 0xff, 0xf0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, + 0x7, 0xff, 0xc0, 0x0, 0x0, 0xff, 0xf8, 0x0, + 0x0, 0x1f, 0xff, 0x0, 0x0, 0x3, 0xff, 0xe0, + 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0xf, 0xff, + 0x80, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x3f, + 0xfe, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, + 0xff, 0xf8, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, + 0x3, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xfc, 0x0, + 0x0, 0xf, 0xff, 0x80, 0x0, 0x1, 0xff, 0xf0, + 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x7, 0xff, + 0xc0, 0x0, 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, + + /* U+006D "m" */ + 0xff, 0xff, 0xe0, 0x0, 0xf, 0xff, 0xff, 0xff, + 0xff, 0xc0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, + 0x80, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0x80, + 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x1, + 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x3, 0xff, + 0xff, 0xff, 0xff, 0xfc, 0x0, 0x7, 0xff, 0xff, + 0xff, 0xff, 0xf8, 0x0, 0xf, 0xff, 0xff, 0xff, + 0xff, 0xf0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, + 0xe0, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xc0, + 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x1, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, + 0xff, 0xff, 0xff, 0xff, 0x0, 0x7, 0xff, 0xff, + 0xff, 0xff, 0xfe, 0x0, 0xf, 0xff, 0xff, 0xff, + 0xff, 0xfc, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, + 0xf8, 0x0, 0x7f, 0xff, 0xff, 0xff, 0xff, 0xf0, + 0x0, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x1, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xe0, 0x3, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xc0, 0x7, 0xff, 0xff, + 0xff, 0xff, 0xff, 0x80, 0xf, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x0, 0x1f, 0xef, 0xff, 0xff, 0xff, + 0xfe, 0x0, 0x3f, 0xdf, 0xff, 0xff, 0xf7, 0xfc, + 0x0, 0xff, 0xbf, 0xff, 0xff, 0xef, 0xfc, 0x1, + 0xff, 0x7f, 0xff, 0xff, 0xdf, 0xf8, 0x3, 0xfe, + 0xff, 0xff, 0xff, 0xbf, 0xf0, 0x7, 0xfd, 0xff, + 0xff, 0xff, 0x7f, 0xe0, 0xf, 0xfb, 0xff, 0xff, + 0xfe, 0xff, 0xc0, 0x1f, 0xe7, 0xff, 0xff, 0xfc, + 0xff, 0x80, 0x3f, 0xcf, 0xff, 0xff, 0xf9, 0xff, + 0x0, 0xff, 0x9f, 0xff, 0xff, 0xf3, 0xff, 0x1, + 0xff, 0x3f, 0xff, 0xff, 0xe7, 0xfe, 0x3, 0xfe, + 0x7f, 0xff, 0xff, 0xcf, 0xfc, 0x7, 0xfc, 0xff, + 0xff, 0xff, 0x9f, 0xf8, 0xf, 0xf9, 0xff, 0xff, + 0xff, 0x3f, 0xf0, 0x1f, 0xe3, 0xff, 0xff, 0xfe, + 0x3f, 0xe0, 0x3f, 0xc7, 0xff, 0xff, 0xfc, 0x7f, + 0xc0, 0xff, 0x8f, 0xff, 0xff, 0xf8, 0xff, 0x81, + 0xff, 0x1f, 0xff, 0xff, 0xf1, 0xff, 0x83, 0xfe, + 0x3f, 0xff, 0xff, 0xe3, 0xff, 0x7, 0xfc, 0x7f, + 0xff, 0xff, 0xc7, 0xfe, 0xf, 0xf8, 0xff, 0xff, + 0xff, 0x8f, 0xfc, 0x1f, 0xe1, 0xff, 0xff, 0xff, + 0xf, 0xf8, 0x3f, 0xc3, 0xff, 0xff, 0xfe, 0x1f, + 0xf0, 0x7f, 0x87, 0xff, 0xff, 0xfc, 0x3f, 0xe1, + 0xff, 0xf, 0xff, 0xff, 0xf8, 0x7f, 0xe3, 0xfe, + 0x1f, 0xff, 0xff, 0xf0, 0xff, 0xc7, 0xfc, 0x3f, + 0xff, 0xff, 0xe1, 0xff, 0x8f, 0xf0, 0x7f, 0xff, + 0xff, 0xc1, 0xff, 0x1f, 0xe0, 0xff, 0xff, 0xff, + 0x83, 0xfe, 0x3f, 0xc1, 0xff, 0xff, 0xff, 0x7, + 0xfc, 0x7f, 0x83, 0xff, 0xff, 0xfe, 0xf, 0xf9, + 0xff, 0x7, 0xff, 0xff, 0xfc, 0x1f, 0xfb, 0xfe, + 0xf, 0xff, 0xff, 0xf8, 0x3f, 0xf7, 0xfc, 0x1f, + 0xff, 0xff, 0xf0, 0x7f, 0xef, 0xf0, 0x3f, 0xff, + 0xff, 0xe0, 0x7f, 0xdf, 0xe0, 0x7f, 0xff, 0xff, + 0xc0, 0xff, 0xbf, 0xc0, 0xff, 0xff, 0xff, 0x81, + 0xff, 0x7f, 0x81, 0xff, 0xff, 0xff, 0x3, 0xff, + 0xff, 0x3, 0xff, 0xff, 0xfe, 0x7, 0xff, 0xfe, + 0x7, 0xff, 0xff, 0xfc, 0xf, 0xff, 0xfc, 0xf, + 0xff, 0xff, 0xf8, 0x1f, 0xff, 0xf0, 0x1f, 0xff, + 0xff, 0xf0, 0x1f, 0xff, 0xe0, 0x3f, 0xff, 0xff, + 0xe0, 0x3f, 0xff, 0xc0, 0x7f, 0xff, 0xff, 0xc0, + 0x7f, 0xff, 0x80, 0xff, 0xff, 0xff, 0x80, 0xff, + 0xff, 0x1, 0xff, 0xff, 0xff, 0x1, 0xff, 0xfe, + 0x3, 0xff, 0xff, 0xfe, 0x3, 0xff, 0xfc, 0x7, + 0xff, 0xff, 0xfc, 0x3, 0xff, 0xf0, 0xf, 0xff, + 0xff, 0xf8, 0x7, 0xff, 0xe0, 0x1f, 0xff, 0xff, + 0xf0, 0xf, 0xff, 0xc0, 0x3f, 0xff, 0xff, 0xe0, + 0x1f, 0xff, 0x80, 0x7f, 0xff, 0xff, 0xc0, 0x3f, + 0xff, 0x0, 0xff, 0xff, 0xff, 0x80, 0x7f, 0xfe, + 0x1, 0xff, 0xff, 0xff, 0x0, 0xff, 0xf8, 0x3, + 0xff, 0xff, 0xfe, 0x0, 0xff, 0xf0, 0x7, 0xff, + 0xff, 0xfc, 0x1, 0xff, 0xe0, 0xf, 0xff, 0xff, + 0xf8, 0x3, 0xff, 0xc0, 0x1f, 0xff, 0xff, 0xf0, + 0x7, 0xff, 0x80, 0x3f, 0xff, 0xff, 0xe0, 0xf, + 0xff, 0x0, 0x7f, 0xff, 0xff, 0xc0, 0x1f, 0xfe, + 0x0, 0xff, 0xff, 0xff, 0x80, 0x3f, 0xf8, 0x1, + 0xff, 0xf0, + + /* U+006E "n" */ + 0xff, 0xff, 0x80, 0x7, 0xff, 0xff, 0xff, 0xc0, + 0x3, 0xff, 0xff, 0xff, 0xe0, 0x1, 0xff, 0xff, + 0xff, 0xf0, 0x0, 0xff, 0xff, 0xff, 0xfc, 0x0, + 0x7f, 0xff, 0xff, 0xfe, 0x0, 0x3f, 0xff, 0xff, + 0xff, 0x0, 0x1f, 0xff, 0xff, 0xff, 0x80, 0xf, + 0xff, 0xff, 0xff, 0xe0, 0x7, 0xff, 0xff, 0xff, + 0xf0, 0x3, 0xff, 0xff, 0xff, 0xf8, 0x1, 0xff, + 0xff, 0xff, 0xfc, 0x0, 0xff, 0xff, 0xff, 0xff, + 0x0, 0x7f, 0xff, 0xff, 0xff, 0x80, 0x3f, 0xff, + 0xff, 0xff, 0xc0, 0x1f, 0xff, 0xff, 0xff, 0xe0, + 0xf, 0xff, 0xff, 0xff, 0xf8, 0x7, 0xff, 0xff, + 0xff, 0xfc, 0x3, 0xff, 0xff, 0xff, 0xfe, 0x1, + 0xff, 0xff, 0xff, 0xff, 0x0, 0xff, 0xff, 0xff, + 0xff, 0xc0, 0x7f, 0xff, 0xff, 0xff, 0xe0, 0x3f, + 0xff, 0xff, 0xff, 0xf0, 0x1f, 0xff, 0xff, 0xff, + 0xf8, 0xf, 0xff, 0xff, 0xff, 0xfe, 0x7, 0xff, + 0xff, 0xfb, 0xff, 0x3, 0xff, 0xff, 0xfd, 0xff, + 0x81, 0xff, 0xff, 0xfe, 0xff, 0xc0, 0xff, 0xff, + 0xff, 0x7f, 0xf0, 0x7f, 0xff, 0xff, 0x9f, 0xf8, + 0x3f, 0xff, 0xff, 0xcf, 0xfc, 0x1f, 0xff, 0xff, + 0xe7, 0xfe, 0xf, 0xff, 0xff, 0xf3, 0xff, 0x87, + 0xff, 0xff, 0xf8, 0xff, 0xc3, 0xff, 0xff, 0xfc, + 0x7f, 0xe1, 0xff, 0xff, 0xfe, 0x3f, 0xf0, 0xff, + 0xff, 0xff, 0x1f, 0xfc, 0x7f, 0xff, 0xff, 0x87, + 0xfe, 0x3f, 0xff, 0xff, 0xc3, 0xff, 0x1f, 0xff, + 0xff, 0xe1, 0xff, 0x8f, 0xff, 0xff, 0xf0, 0xff, + 0xe7, 0xff, 0xff, 0xf8, 0x3f, 0xf3, 0xff, 0xff, + 0xfc, 0x1f, 0xf9, 0xff, 0xff, 0xfe, 0xf, 0xfc, + 0xff, 0xff, 0xff, 0x7, 0xff, 0x7f, 0xff, 0xff, + 0x81, 0xff, 0xbf, 0xff, 0xff, 0xc0, 0xff, 0xdf, + 0xff, 0xff, 0xe0, 0x7f, 0xef, 0xff, 0xff, 0xf0, + 0x3f, 0xff, 0xff, 0xff, 0xf8, 0xf, 0xff, 0xff, + 0xff, 0xfc, 0x7, 0xff, 0xff, 0xff, 0xfe, 0x3, + 0xff, 0xff, 0xff, 0xff, 0x1, 0xff, 0xff, 0xff, + 0xff, 0x80, 0x7f, 0xff, 0xff, 0xff, 0xc0, 0x3f, + 0xff, 0xff, 0xff, 0xe0, 0x1f, 0xff, 0xff, 0xff, + 0xf0, 0xf, 0xff, 0xff, 0xff, 0xf8, 0x3, 0xff, + 0xff, 0xff, 0xfc, 0x1, 0xff, 0xff, 0xff, 0xfe, + 0x0, 0xff, 0xff, 0xff, 0xff, 0x0, 0x7f, 0xff, + 0xff, 0xff, 0x80, 0x1f, 0xff, 0xff, 0xff, 0xc0, + 0xf, 0xff, 0xff, 0xff, 0xe0, 0x7, 0xff, 0xff, + 0xff, 0xf0, 0x3, 0xff, 0xff, 0xff, 0xf8, 0x0, + 0xff, 0xff, 0xff, 0xfc, 0x0, 0x7f, 0xff, 0xff, + 0xfe, 0x0, 0x3f, 0xff, 0xff, 0xff, 0x0, 0x1f, + 0xff, 0xff, 0xff, 0x80, 0x7, 0xff, 0xff, 0xff, + 0xc0, 0x3, 0xff, 0xff, 0xff, 0xe0, 0x1, 0xff, + 0xff, 0xff, 0xf0, 0x0, 0xff, 0xff, 0xff, 0xf8, + 0x0, 0x3f, 0xff, 0xff, 0xfc, 0x0, 0x1f, 0xff, + 0xff, 0xfe, 0x0, 0xf, 0xff, 0xff, 0xff, 0x0, + 0x7, 0xff, 0xff, 0xff, 0x80, 0x1, 0xff, 0xff, + 0xff, 0xc0, 0x0, 0xff, 0xff, 0xff, 0xe0, 0x0, + 0x7f, 0xff, 0xff, 0xf0, 0x0, 0x3f, 0xff, 0xff, + 0xf8, 0x0, 0xf, 0xff, 0xff, 0xfc, 0x0, 0x7, + 0xff, 0xff, 0xfe, 0x0, 0x3, 0xff, 0xf0, + + /* U+006F "o" */ + 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x1f, 0xff, + 0xf8, 0x0, 0x0, 0x7f, 0xff, 0xfe, 0x0, 0x1, + 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0xff, + 0xc0, 0x7, 0xff, 0xff, 0xff, 0xe0, 0xf, 0xff, + 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xf0, + 0x1f, 0xff, 0xff, 0xff, 0xf8, 0x3f, 0xff, 0xff, + 0xff, 0xfc, 0x3f, 0xff, 0xff, 0xff, 0xfc, 0x7f, + 0xff, 0xff, 0xff, 0xfc, 0x7f, 0xff, 0x81, 0xff, + 0xfe, 0x7f, 0xfe, 0x0, 0x7f, 0xfe, 0x7f, 0xfc, + 0x0, 0x3f, 0xfe, 0xff, 0xfc, 0x0, 0x3f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xff, 0xfc, + 0x0, 0x3f, 0xff, 0x7f, 0xfc, 0x0, 0x3f, 0xfe, + 0x7f, 0xfe, 0x0, 0x7f, 0xfe, 0x7f, 0xff, 0x81, + 0xff, 0xfe, 0x7f, 0xff, 0xff, 0xff, 0xfc, 0x3f, + 0xff, 0xff, 0xff, 0xfc, 0x3f, 0xff, 0xff, 0xff, + 0xfc, 0x1f, 0xff, 0xff, 0xff, 0xf8, 0xf, 0xff, + 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, 0xf0, + 0x7, 0xff, 0xff, 0xff, 0xe0, 0x3, 0xff, 0xff, + 0xff, 0xc0, 0x1, 0xff, 0xff, 0xff, 0x80, 0x0, + 0x7f, 0xff, 0xfe, 0x0, 0x0, 0x1f, 0xff, 0xf8, + 0x0, 0x0, 0x1, 0xff, 0x80, 0x0, + + /* U+0070 "p" */ + 0xff, 0xff, 0xff, 0x80, 0x1, 0xff, 0xff, 0xff, + 0xe0, 0x3, 0xff, 0xff, 0xff, 0xf8, 0x7, 0xff, + 0xff, 0xff, 0xf8, 0xf, 0xff, 0xff, 0xff, 0xf8, + 0x1f, 0xff, 0xff, 0xff, 0xf8, 0x3f, 0xff, 0xff, + 0xff, 0xf8, 0x7f, 0xff, 0xff, 0xff, 0xf8, 0xff, + 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, 0xff, 0xff, + 0xf3, 0xff, 0xff, 0xff, 0xff, 0xe7, 0xff, 0xff, + 0xff, 0xff, 0xef, 0xff, 0x80, 0x3f, 0xff, 0xdf, + 0xff, 0x0, 0x1f, 0xff, 0xbf, 0xfe, 0x0, 0x1f, + 0xff, 0x7f, 0xfc, 0x0, 0x3f, 0xff, 0xff, 0xf8, + 0x0, 0x3f, 0xff, 0xff, 0xf0, 0x0, 0x7f, 0xff, + 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, 0xc0, 0x1, + 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0xff, + 0x0, 0x7, 0xff, 0xff, 0xfe, 0x0, 0xf, 0xff, + 0xff, 0xfc, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x3f, 0xff, 0xff, 0xf0, 0x0, 0x7f, 0xff, 0xff, + 0xe0, 0x0, 0xff, 0xff, 0xff, 0xc0, 0x1, 0xff, + 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0xff, 0x0, + 0x7, 0xff, 0xff, 0xfe, 0x0, 0xf, 0xff, 0xff, + 0xfc, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x3f, + 0xff, 0xff, 0xf0, 0x0, 0x7f, 0xff, 0xff, 0xe0, + 0x1, 0xff, 0xff, 0xff, 0xc0, 0x3, 0xff, 0xef, + 0xff, 0x80, 0xf, 0xff, 0xdf, 0xff, 0x0, 0x7f, + 0xff, 0xbf, 0xff, 0xff, 0xff, 0xff, 0x7f, 0xff, + 0xff, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, 0xf9, + 0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, 0xff, + 0xff, 0xc7, 0xff, 0xff, 0xff, 0xff, 0xf, 0xff, + 0xff, 0xff, 0xfc, 0x1f, 0xff, 0xff, 0xff, 0xf0, + 0x3f, 0xff, 0xff, 0xff, 0xc0, 0x7f, 0xff, 0xff, + 0xfe, 0x0, 0xff, 0xff, 0xff, 0xf0, 0x1, 0xff, + 0xff, 0xff, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, + 0x7, 0xff, 0xc0, 0x0, 0x0, 0xf, 0xff, 0x80, + 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x3f, + 0xfe, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, + 0x0, 0xff, 0xf8, 0x0, 0x0, 0x1, 0xff, 0xf0, + 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x7, + 0xff, 0xc0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, + 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x3f, 0xfe, + 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, + 0xff, 0xf8, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, + 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, + 0xc0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, + 0x1f, 0xff, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, + 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0xff, + 0xf8, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, + 0x3, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0xc0, + 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x1f, + 0xff, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, + 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xf8, + 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x3, + 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, + 0x0, 0x0, + + /* U+0071 "q" */ + 0x0, 0x1, 0xff, 0x80, 0x0, 0x0, 0x1, 0xff, + 0xff, 0x80, 0x0, 0x0, 0x7f, 0xff, 0xfe, 0x0, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x3, 0xff, + 0xff, 0xff, 0xc0, 0x0, 0x7f, 0xff, 0xff, 0xfe, + 0x0, 0xf, 0xff, 0xff, 0xff, 0xf0, 0x0, 0xff, + 0xff, 0xff, 0xff, 0x0, 0x1f, 0xff, 0xff, 0xff, + 0xf8, 0x3, 0xff, 0xff, 0xff, 0xff, 0xc0, 0x3f, + 0xff, 0xff, 0xff, 0xfc, 0x7, 0xff, 0xff, 0xff, + 0xff, 0xc0, 0x7f, 0xff, 0x81, 0xff, 0xfe, 0x7, + 0xff, 0xe0, 0x7, 0xff, 0xe0, 0x7f, 0xfc, 0x0, + 0x3f, 0xfe, 0xf, 0xff, 0xc0, 0x3, 0xff, 0xf0, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xf, 0xff, 0x80, + 0x1, 0xff, 0xf0, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xf, 0xff, 0x80, 0x1, 0xff, 0xf0, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xf, 0xff, 0x80, 0x1, 0xff, + 0xf0, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xf, 0xff, + 0x80, 0x1, 0xff, 0xf0, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xf, 0xff, 0x80, 0x1, 0xff, 0xf0, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xf, 0xff, 0x80, 0x1, + 0xff, 0xf0, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xf, + 0xff, 0x80, 0x1, 0xff, 0xf0, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xf, 0xff, 0x80, 0x1, 0xff, 0xf0, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xf, 0xff, 0x80, + 0x1, 0xff, 0xf0, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xf, 0xff, 0x80, 0x1, 0xff, 0xf0, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xf, 0xff, 0x80, 0x1, 0xff, + 0xf0, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xf, 0xff, + 0x80, 0x1, 0xff, 0xf0, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xf, 0xff, 0x80, 0x1, 0xff, 0xf0, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xf, 0xff, 0x80, 0x1, + 0xff, 0xf0, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xf, + 0xff, 0x80, 0x1, 0xff, 0xf0, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xf, 0xff, 0x80, 0x1, 0xff, 0xf0, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xf, 0xff, 0x80, + 0x1, 0xff, 0xf0, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xf, 0xff, 0x80, 0x1, 0xff, 0xf0, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xf, 0xff, 0x80, 0x1, 0xff, + 0xf0, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xf, 0xff, + 0x80, 0x1, 0xff, 0xf0, 0xff, 0xf8, 0x0, 0x1f, + 0xff, 0xf, 0xff, 0x80, 0x1, 0xff, 0xf0, 0xff, + 0xf8, 0x0, 0x1f, 0xff, 0xf, 0xff, 0x80, 0x1, + 0xff, 0xf0, 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xf, + 0xff, 0x80, 0x1, 0xff, 0xf0, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xf, 0xff, 0x80, 0x1, 0xff, 0xf0, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xf, 0xff, 0x80, + 0x1, 0xff, 0xf0, 0xff, 0xf8, 0x0, 0x1f, 0xff, + 0xf, 0xff, 0x80, 0x1, 0xff, 0xf0, 0xff, 0xf8, + 0x0, 0x1f, 0xff, 0xf, 0xff, 0x80, 0x1, 0xff, + 0xf0, 0xff, 0xfc, 0x0, 0x3f, 0xff, 0x7, 0xff, + 0xc0, 0x3, 0xff, 0xe0, 0x7f, 0xfe, 0x0, 0x7f, + 0xfe, 0x7, 0xff, 0xf8, 0x1f, 0xff, 0xe0, 0x7f, + 0xff, 0xff, 0xff, 0xfe, 0x3, 0xff, 0xff, 0xff, + 0xff, 0xc0, 0x3f, 0xff, 0xff, 0xff, 0xfc, 0x1, + 0xff, 0xff, 0xff, 0xff, 0x80, 0xf, 0xff, 0xff, + 0xff, 0xf8, 0x0, 0xff, 0xff, 0xff, 0xff, 0x80, + 0x7, 0xff, 0xff, 0xff, 0xfc, 0x0, 0x3f, 0xff, + 0xff, 0xff, 0xff, 0x1, 0xff, 0xff, 0xff, 0xff, + 0xf0, 0x7, 0xff, 0xff, 0xff, 0xff, 0x0, 0x1f, + 0xff, 0xff, 0xff, 0xf0, 0x0, 0x3f, 0xfc, 0x7f, + 0xff, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf0, 0x0, + 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0x3, + 0xff, 0xf0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, + 0x0, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x0, 0x0, + 0x3, 0xff, 0x0, 0x0, 0x0, 0x0, 0xf, 0xf0, + + /* U+0072 "r" */ + 0xff, 0xff, 0xff, 0x80, 0x0, 0x7f, 0xff, 0xff, + 0xfc, 0x0, 0x3f, 0xff, 0xff, 0xff, 0x80, 0x1f, + 0xff, 0xff, 0xff, 0xf0, 0xf, 0xff, 0xff, 0xff, + 0xfc, 0x7, 0xff, 0xff, 0xff, 0xff, 0x3, 0xff, + 0xff, 0xff, 0xff, 0xc1, 0xff, 0xff, 0xff, 0xff, + 0xe0, 0xff, 0xff, 0xff, 0xff, 0xf8, 0x7f, 0xff, + 0xff, 0xff, 0xfc, 0x3f, 0xff, 0xff, 0xff, 0xff, + 0x1f, 0xff, 0xff, 0xff, 0xff, 0x8f, 0xff, 0x80, + 0x3f, 0xff, 0xc7, 0xff, 0xc0, 0x7, 0xff, 0xe3, + 0xff, 0xe0, 0x1, 0xff, 0xf9, 0xff, 0xf0, 0x0, + 0xff, 0xfc, 0xff, 0xf8, 0x0, 0x3f, 0xfe, 0x7f, + 0xfc, 0x0, 0x1f, 0xff, 0x3f, 0xfe, 0x0, 0xf, + 0xff, 0x9f, 0xff, 0x0, 0x7, 0xff, 0xcf, 0xff, + 0x80, 0x3, 0xff, 0xe7, 0xff, 0xc0, 0x1, 0xff, + 0xf3, 0xff, 0xe0, 0x0, 0xff, 0xf9, 0xff, 0xf0, + 0x0, 0x7f, 0xfc, 0xff, 0xf8, 0x0, 0x3f, 0xfe, + 0x7f, 0xfc, 0x0, 0x1f, 0xff, 0x3f, 0xfe, 0x0, + 0xf, 0xff, 0x9f, 0xff, 0x0, 0x7, 0xff, 0xcf, + 0xff, 0x80, 0x3, 0xff, 0xe7, 0xff, 0xc0, 0x1, + 0xff, 0xf3, 0xff, 0xe0, 0x0, 0xff, 0xf1, 0xff, + 0xf0, 0x0, 0xff, 0xf8, 0xff, 0xf8, 0x0, 0x7f, + 0xfc, 0x7f, 0xfc, 0x0, 0x7f, 0xfe, 0x3f, 0xfe, + 0x0, 0x7f, 0xfe, 0x1f, 0xff, 0x0, 0xff, 0xff, + 0xf, 0xff, 0xff, 0xff, 0xff, 0x7, 0xff, 0xff, + 0xff, 0xff, 0x3, 0xff, 0xff, 0xff, 0xff, 0x1, + 0xff, 0xff, 0xff, 0xff, 0x0, 0xff, 0xff, 0xff, + 0xff, 0x0, 0x7f, 0xff, 0xff, 0xff, 0x0, 0x3f, + 0xff, 0xff, 0xff, 0xe0, 0x1f, 0xff, 0xff, 0xff, + 0xf8, 0xf, 0xff, 0xff, 0xff, 0xfe, 0x7, 0xff, + 0xff, 0xff, 0xff, 0x83, 0xff, 0xff, 0xff, 0xff, + 0xe1, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xff, 0xf8, + 0x7, 0xff, 0xfc, 0x7f, 0xfc, 0x0, 0xff, 0xfe, + 0x3f, 0xfe, 0x0, 0x3f, 0xff, 0x1f, 0xff, 0x0, + 0xf, 0xff, 0x8f, 0xff, 0x80, 0x7, 0xff, 0xe7, + 0xff, 0xc0, 0x1, 0xff, 0xf3, 0xff, 0xe0, 0x0, + 0xff, 0xf9, 0xff, 0xf0, 0x0, 0x7f, 0xfc, 0xff, + 0xf8, 0x0, 0x3f, 0xfe, 0x7f, 0xfc, 0x0, 0x1f, + 0xff, 0x3f, 0xfe, 0x0, 0xf, 0xff, 0x9f, 0xff, + 0x0, 0x7, 0xff, 0xcf, 0xff, 0x80, 0x3, 0xff, + 0xe7, 0xff, 0xc0, 0x1, 0xff, 0xf3, 0xff, 0xe0, + 0x0, 0xff, 0xf9, 0xff, 0xf0, 0x0, 0x7f, 0xfc, + 0xff, 0xf8, 0x0, 0x3f, 0xfe, 0x7f, 0xfc, 0x0, + 0x1f, 0xff, 0x3f, 0xfe, 0x0, 0xf, 0xff, 0x9f, + 0xff, 0x0, 0x7, 0xff, 0xcf, 0xff, 0x80, 0x3, + 0xff, 0xe7, 0xff, 0xc0, 0x1, 0xff, 0xf3, 0xff, + 0xe0, 0x0, 0xff, 0xf9, 0xff, 0xf0, 0x0, 0x7f, + 0xfc, 0xff, 0xf8, 0x0, 0x3f, 0xfe, 0x7f, 0xfc, + 0x0, 0x1f, 0xff, 0x3f, 0xfe, 0x0, 0xf, 0xff, + 0x9f, 0xff, 0x0, 0x7, 0xff, 0xcf, 0xff, 0x80, + 0x3, 0xff, 0xe7, 0xff, 0xc0, 0x1, 0xff, 0xf3, + 0xff, 0xe0, 0x0, 0xff, 0xf9, 0xff, 0xf0, 0x0, + 0x7f, 0xfc, 0xff, 0xf8, 0x0, 0x3f, 0xfe, 0x7f, + 0xfc, 0x0, 0x1f, 0xff, 0xbf, 0xfe, 0x0, 0x7, + 0xff, 0xdf, 0xff, 0x0, 0x3, 0xff, 0xe0, + + /* U+0073 "s" */ + 0x0, 0x3, 0xff, 0x80, 0x0, 0x0, 0x3f, 0xff, + 0xe0, 0x0, 0x1, 0xff, 0xff, 0xf0, 0x0, 0xf, + 0xff, 0xff, 0xf8, 0x0, 0x3f, 0xff, 0xff, 0xf8, + 0x0, 0xff, 0xff, 0xff, 0xf8, 0x3, 0xff, 0xff, + 0xff, 0xf8, 0xf, 0xff, 0xff, 0xff, 0xf8, 0x1f, + 0xff, 0xff, 0xff, 0xf0, 0x7f, 0xff, 0xff, 0xff, + 0xf0, 0xff, 0xff, 0xff, 0xff, 0xe3, 0xff, 0xff, + 0xff, 0xff, 0xe7, 0xff, 0xf8, 0x3f, 0xff, 0xcf, + 0xff, 0xc0, 0x1f, 0xff, 0x9f, 0xff, 0x0, 0x1f, + 0xff, 0x7f, 0xfe, 0x0, 0x3f, 0xff, 0xff, 0xf8, + 0x0, 0x3f, 0xff, 0xff, 0xf0, 0x0, 0x7f, 0xff, + 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, 0xc0, 0x1, + 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0xff, + 0x0, 0x7, 0xff, 0xff, 0xfe, 0x0, 0xf, 0xff, + 0xff, 0xfc, 0x0, 0x1f, 0xff, 0xff, 0xfc, 0x0, + 0x3f, 0xff, 0xff, 0xf8, 0x0, 0x0, 0x1, 0xff, + 0xf0, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, + 0x7, 0xff, 0xe0, 0x0, 0x0, 0xf, 0xff, 0xe0, + 0x0, 0x0, 0xf, 0xff, 0xe0, 0x0, 0x0, 0x1f, + 0xff, 0xe0, 0x0, 0x0, 0x1f, 0xff, 0xe0, 0x0, + 0x0, 0x3f, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, + 0xe0, 0x0, 0x0, 0x7f, 0xff, 0xe0, 0x0, 0x0, + 0x7f, 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xff, 0xe0, + 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xff, + 0xff, 0xe0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, + 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xff, + 0xe0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0, + 0xff, 0xff, 0xe0, 0x0, 0x0, 0xff, 0xff, 0xe0, + 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xff, + 0xff, 0xe0, 0x0, 0x0, 0x7f, 0xff, 0xc0, 0x0, + 0x0, 0x7f, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xff, + 0xc0, 0x0, 0x0, 0x7f, 0xff, 0x80, 0x0, 0x0, + 0x7f, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, 0x0, + 0x0, 0x0, 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, + 0xfe, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, + 0x1, 0xff, 0xf8, 0x0, 0x0, 0x1, 0xff, 0xf0, + 0x0, 0x0, 0x3, 0xff, 0xff, 0xff, 0x80, 0x7, + 0xff, 0xff, 0xff, 0x0, 0x7, 0xff, 0xff, 0xfe, + 0x0, 0xf, 0xff, 0xff, 0xfc, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x3f, 0xff, 0xff, 0xf0, 0x0, + 0x7f, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, + 0xc0, 0x1, 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, + 0xff, 0xff, 0x0, 0x7, 0xff, 0xff, 0xff, 0x0, + 0x1f, 0xff, 0xbf, 0xfe, 0x0, 0x3f, 0xfe, 0x7f, + 0xfe, 0x0, 0xff, 0xfc, 0xff, 0xff, 0x7, 0xff, + 0xf9, 0xff, 0xff, 0xff, 0xff, 0xf1, 0xff, 0xff, + 0xff, 0xff, 0xc3, 0xff, 0xff, 0xff, 0xff, 0x83, + 0xff, 0xff, 0xff, 0xfe, 0x7, 0xff, 0xff, 0xff, + 0xf8, 0x7, 0xff, 0xff, 0xff, 0xf0, 0x7, 0xff, + 0xff, 0xff, 0xc0, 0x7, 0xff, 0xff, 0xff, 0x0, + 0x7, 0xff, 0xff, 0xfc, 0x0, 0x7, 0xff, 0xff, + 0xe0, 0x0, 0x3, 0xff, 0xff, 0x0, 0x0, 0x0, + 0x7f, 0xf0, 0x0, 0x0, + + /* U+0074 "t" */ + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x0, 0x3f, + 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, + 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x7, 0xff, + 0xc0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, + 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xf8, + 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, + 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, + 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x7, + 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, + 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, + 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, + 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xff, + 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, + 0x7, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, 0xe0, + 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, + 0xff, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, + 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x1f, + 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, + 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, + 0xe0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, + 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x7f, 0xfc, + 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, + 0x1f, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, + 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x3, + 0xff, 0xe0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, + 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x7f, + 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, + 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, + 0x80, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, + 0x3, 0xff, 0xe0, 0x0, 0x0, 0x1, 0xff, 0xf0, + 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, + 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, + 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0xf, + 0xff, 0x80, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, + 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x1, 0xff, + 0xf0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, + 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x3f, 0xfe, + 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, + 0xf, 0xff, 0x80, 0x0, 0x0, 0x7, 0xff, 0xc0, + 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x1, + 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, + 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x3f, + 0xfe, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, + 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, 0x7, 0xff, + 0xc0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, + 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xf8, + 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, + + /* U+0075 "u" */ + 0xff, 0xf8, 0x0, 0x3f, 0xff, 0xff, 0xf0, 0x0, + 0x7f, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, + 0xc0, 0x1, 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, + 0xff, 0xff, 0x0, 0x7, 0xff, 0xff, 0xfe, 0x0, + 0xf, 0xff, 0xff, 0xfc, 0x0, 0x1f, 0xff, 0xff, + 0xf8, 0x0, 0x3f, 0xff, 0xff, 0xf0, 0x0, 0x7f, + 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, 0xc0, + 0x1, 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, + 0xff, 0x0, 0x7, 0xff, 0xff, 0xfe, 0x0, 0xf, + 0xff, 0xff, 0xfc, 0x0, 0x1f, 0xff, 0xff, 0xf8, + 0x0, 0x3f, 0xff, 0xff, 0xf0, 0x0, 0x7f, 0xff, + 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, 0xc0, 0x1, + 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0xff, + 0x0, 0x7, 0xff, 0xff, 0xfe, 0x0, 0xf, 0xff, + 0xff, 0xfc, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, + 0x3f, 0xff, 0xff, 0xf0, 0x0, 0x7f, 0xff, 0xff, + 0xe0, 0x0, 0xff, 0xff, 0xff, 0xc0, 0x1, 0xff, + 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0xff, 0x0, + 0x7, 0xff, 0xff, 0xfe, 0x0, 0xf, 0xff, 0xff, + 0xfc, 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x3f, + 0xff, 0xff, 0xf0, 0x0, 0x7f, 0xff, 0xff, 0xe0, + 0x0, 0xff, 0xff, 0xff, 0xc0, 0x1, 0xff, 0xff, + 0xff, 0x80, 0x3, 0xff, 0xff, 0xff, 0x0, 0x7, + 0xff, 0xff, 0xfe, 0x0, 0xf, 0xff, 0xff, 0xfc, + 0x0, 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x3f, 0xff, + 0xff, 0xf0, 0x0, 0x7f, 0xff, 0xff, 0xe0, 0x0, + 0xff, 0xff, 0xff, 0xc0, 0x1, 0xff, 0xff, 0xff, + 0x80, 0x3, 0xff, 0xff, 0xff, 0x0, 0x7, 0xff, + 0xff, 0xfe, 0x0, 0xf, 0xff, 0xff, 0xfc, 0x0, + 0x1f, 0xff, 0xff, 0xf8, 0x0, 0x3f, 0xff, 0xff, + 0xf0, 0x0, 0x7f, 0xff, 0xff, 0xe0, 0x0, 0xff, + 0xff, 0xff, 0xc0, 0x1, 0xff, 0xff, 0xff, 0x80, + 0x3, 0xff, 0xff, 0xff, 0x0, 0x7, 0xff, 0xff, + 0xfe, 0x0, 0xf, 0xff, 0xff, 0xfc, 0x0, 0x1f, + 0xff, 0xff, 0xf8, 0x0, 0x3f, 0xff, 0xff, 0xf0, + 0x0, 0x7f, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff, + 0xff, 0xc0, 0x1, 0xff, 0xff, 0xff, 0x80, 0x3, + 0xff, 0xff, 0xff, 0x0, 0x7, 0xff, 0xff, 0xfe, + 0x0, 0xf, 0xff, 0xff, 0xfc, 0x0, 0x1f, 0xff, + 0xff, 0xf8, 0x0, 0x3f, 0xff, 0xff, 0xf0, 0x0, + 0x7f, 0xff, 0xff, 0xe0, 0x0, 0xff, 0xff, 0xff, + 0xc0, 0x1, 0xff, 0xff, 0xff, 0x80, 0x3, 0xff, + 0xff, 0xff, 0x80, 0xf, 0xff, 0xdf, 0xff, 0x0, + 0x1f, 0xff, 0x3f, 0xff, 0x0, 0x7f, 0xfe, 0x7f, + 0xff, 0x83, 0xff, 0xfc, 0xff, 0xff, 0xff, 0xff, + 0xf8, 0xff, 0xff, 0xff, 0xff, 0xe1, 0xff, 0xff, + 0xff, 0xff, 0xc1, 0xff, 0xff, 0xff, 0xff, 0x3, + 0xff, 0xff, 0xff, 0xfe, 0x3, 0xff, 0xff, 0xff, + 0xf8, 0x3, 0xff, 0xff, 0xff, 0xe0, 0x3, 0xff, + 0xff, 0xff, 0x80, 0x3, 0xff, 0xff, 0xfe, 0x0, + 0x1, 0xff, 0xff, 0xf0, 0x0, 0x0, 0xff, 0xff, + 0x80, 0x0, 0x0, 0x3f, 0xf8, 0x0, 0x0, + + /* U+0076 "v" */ + 0x7f, 0xfc, 0x0, 0x1, 0xff, 0xef, 0xff, 0x80, + 0x0, 0x3f, 0xfd, 0xff, 0xf0, 0x0, 0x7, 0xff, + 0xbf, 0xfe, 0x0, 0x0, 0xff, 0xf7, 0xff, 0xc0, + 0x0, 0x1f, 0xfe, 0xff, 0xf8, 0x0, 0x3, 0xff, + 0xdf, 0xff, 0x80, 0x0, 0xff, 0xf1, 0xff, 0xf0, + 0x0, 0x1f, 0xfe, 0x3f, 0xfe, 0x0, 0x3, 0xff, + 0xc7, 0xff, 0xc0, 0x0, 0x7f, 0xf8, 0xff, 0xf8, + 0x0, 0xf, 0xff, 0x1f, 0xff, 0x0, 0x1, 0xff, + 0xe3, 0xff, 0xe0, 0x0, 0x3f, 0xfc, 0x7f, 0xfe, + 0x0, 0xf, 0xff, 0x7, 0xff, 0xc0, 0x1, 0xff, + 0xe0, 0xff, 0xf8, 0x0, 0x3f, 0xfc, 0x1f, 0xff, + 0x0, 0x7, 0xff, 0x83, 0xff, 0xe0, 0x0, 0xff, + 0xf0, 0x7f, 0xfc, 0x0, 0x1f, 0xfe, 0xf, 0xff, + 0x80, 0x3, 0xff, 0x80, 0xff, 0xf0, 0x0, 0x7f, + 0xf0, 0x1f, 0xff, 0x0, 0x1f, 0xfe, 0x3, 0xff, + 0xe0, 0x3, 0xff, 0xc0, 0x7f, 0xfc, 0x0, 0x7f, + 0xf8, 0xf, 0xff, 0x80, 0xf, 0xff, 0x1, 0xff, + 0xf0, 0x1, 0xff, 0xe0, 0x3f, 0xfe, 0x0, 0x3f, + 0xf8, 0x3, 0xff, 0xc0, 0x7, 0xff, 0x0, 0x7f, + 0xfc, 0x1, 0xff, 0xe0, 0xf, 0xff, 0x80, 0x3f, + 0xfc, 0x1, 0xff, 0xf0, 0x7, 0xff, 0x80, 0x3f, + 0xfe, 0x0, 0xff, 0xf0, 0x7, 0xff, 0xc0, 0x1f, + 0xfc, 0x0, 0x7f, 0xf8, 0x3, 0xff, 0x80, 0xf, + 0xff, 0x0, 0x7f, 0xf0, 0x1, 0xff, 0xe0, 0xf, + 0xfe, 0x0, 0x3f, 0xfe, 0x3, 0xff, 0xc0, 0x7, + 0xff, 0xc0, 0x7f, 0xf8, 0x0, 0xff, 0xf8, 0xf, + 0xff, 0x0, 0x1f, 0xff, 0x1, 0xff, 0xc0, 0x1, + 0xff, 0xe0, 0x3f, 0xf8, 0x0, 0x3f, 0xfc, 0x7, + 0xff, 0x0, 0x7, 0xff, 0x80, 0xff, 0xe0, 0x0, + 0xff, 0xf8, 0x1f, 0xfc, 0x0, 0x1f, 0xff, 0x7, + 0xff, 0x80, 0x3, 0xff, 0xe0, 0xff, 0xf0, 0x0, + 0x7f, 0xfc, 0x1f, 0xfc, 0x0, 0x7, 0xff, 0x83, + 0xff, 0x80, 0x0, 0xff, 0xf0, 0x7f, 0xf0, 0x0, + 0x1f, 0xfe, 0xf, 0xfe, 0x0, 0x3, 0xff, 0xc1, + 0xff, 0xc0, 0x0, 0x7f, 0xfc, 0x7f, 0xf8, 0x0, + 0xf, 0xff, 0x8f, 0xfe, 0x0, 0x0, 0xff, 0xf1, + 0xff, 0xc0, 0x0, 0x1f, 0xfe, 0x3f, 0xf8, 0x0, + 0x3, 0xff, 0xc7, 0xff, 0x0, 0x0, 0x7f, 0xf8, + 0xff, 0xe0, 0x0, 0xf, 0xff, 0x1f, 0xfc, 0x0, + 0x1, 0xff, 0xf3, 0xff, 0x80, 0x0, 0x3f, 0xfe, + 0xff, 0xe0, 0x0, 0x3, 0xff, 0xdf, 0xfc, 0x0, + 0x0, 0x7f, 0xfb, 0xff, 0x80, 0x0, 0xf, 0xff, + 0x7f, 0xf0, 0x0, 0x1, 0xff, 0xef, 0xfe, 0x0, + 0x0, 0x3f, 0xfd, 0xff, 0xc0, 0x0, 0x7, 0xff, + 0xff, 0xf8, 0x0, 0x0, 0x7f, 0xff, 0xfe, 0x0, + 0x0, 0xf, 0xff, 0xff, 0xc0, 0x0, 0x1, 0xff, + 0xff, 0xf8, 0x0, 0x0, 0x3f, 0xff, 0xff, 0x0, + 0x0, 0x7, 0xff, 0xff, 0xe0, 0x0, 0x0, 0xff, + 0xff, 0xfc, 0x0, 0x0, 0x1f, 0xff, 0xff, 0x0, + 0x0, 0x1, 0xff, 0xff, 0xe0, 0x0, 0x0, 0x3f, + 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xff, 0x80, + 0x0, 0x0, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, + 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xc0, + 0x0, 0x0, 0x7f, 0xff, 0xf0, 0x0, 0x0, 0x7, + 0xff, 0xfe, 0x0, 0x0, 0x0, 0xff, 0xff, 0xc0, + 0x0, 0x0, 0x1f, 0xff, 0xf8, 0x0, 0x0, 0x3, + 0xff, 0xff, 0x0, 0x0, + + /* U+0077 "w" */ + 0xff, 0xf8, 0x0, 0x7f, 0xfe, 0x0, 0xf, 0xff, + 0xff, 0xf0, 0x0, 0xff, 0xfc, 0x0, 0x3f, 0xff, + 0xff, 0xe0, 0x1, 0xff, 0xfc, 0x0, 0x7f, 0xff, + 0xff, 0xc0, 0x3, 0xff, 0xf8, 0x0, 0xff, 0xff, + 0xff, 0x80, 0xf, 0xff, 0xf0, 0x1, 0xff, 0xff, + 0xff, 0x0, 0x1f, 0xff, 0xe0, 0x3, 0xff, 0xff, + 0xfe, 0x0, 0x3f, 0xff, 0xc0, 0x7, 0xff, 0x3f, + 0xfc, 0x0, 0x7f, 0xff, 0x80, 0xf, 0xfe, 0x7f, + 0xf8, 0x0, 0xff, 0xff, 0x0, 0x1f, 0xfc, 0xff, + 0xf0, 0x1, 0xff, 0xfe, 0x0, 0x3f, 0xf9, 0xff, + 0xe0, 0x3, 0xff, 0xfc, 0x0, 0x7f, 0xf3, 0xff, + 0xe0, 0x7, 0xff, 0xf8, 0x0, 0xff, 0xe7, 0xff, + 0xc0, 0xf, 0xff, 0xf0, 0x3, 0xff, 0xcf, 0xff, + 0x80, 0x1f, 0xff, 0xf0, 0x7, 0xff, 0x9f, 0xff, + 0x0, 0x7f, 0xff, 0xe0, 0xf, 0xff, 0x3f, 0xfe, + 0x0, 0xff, 0xff, 0xc0, 0x1f, 0xfc, 0x7f, 0xfc, + 0x1, 0xff, 0xff, 0x80, 0x3f, 0xf8, 0x7f, 0xf8, + 0x3, 0xff, 0xff, 0x0, 0x7f, 0xf0, 0xff, 0xf0, + 0x7, 0xff, 0xfe, 0x0, 0xff, 0xe1, 0xff, 0xe0, + 0xf, 0xff, 0xfc, 0x1, 0xff, 0xc3, 0xff, 0xc0, + 0x1f, 0xff, 0xf8, 0x3, 0xff, 0x87, 0xff, 0x80, + 0x3f, 0xff, 0xf0, 0x7, 0xff, 0xf, 0xff, 0x80, + 0x7f, 0xff, 0xe0, 0xf, 0xfe, 0x1f, 0xff, 0x0, + 0xff, 0xff, 0xe0, 0x3f, 0xfc, 0x3f, 0xfe, 0x3, + 0xff, 0xff, 0xc0, 0x7f, 0xf8, 0x7f, 0xfc, 0x7, + 0xff, 0xff, 0x80, 0xff, 0xe0, 0xff, 0xf8, 0xf, + 0xff, 0xff, 0x1, 0xff, 0xc0, 0xff, 0xf0, 0x1f, + 0xff, 0xfe, 0x3, 0xff, 0x81, 0xff, 0xe0, 0x3f, + 0xff, 0xfc, 0x7, 0xff, 0x3, 0xff, 0xc0, 0x7f, + 0xff, 0xf8, 0xf, 0xfe, 0x7, 0xff, 0x80, 0xff, + 0xff, 0xf0, 0x1f, 0xfc, 0xf, 0xff, 0x1, 0xff, + 0x3f, 0xe0, 0x3f, 0xf8, 0x1f, 0xfe, 0x3, 0xfe, + 0x7f, 0xc0, 0x7f, 0xf0, 0x3f, 0xfe, 0x7, 0xfc, + 0xff, 0xc0, 0xff, 0xe0, 0x7f, 0xfc, 0xf, 0xf9, + 0xff, 0x83, 0xff, 0xc0, 0xff, 0xf8, 0x3f, 0xf3, + 0xff, 0x7, 0xff, 0x0, 0xff, 0xf0, 0x7f, 0xe7, + 0xfe, 0xf, 0xfe, 0x1, 0xff, 0xe0, 0xff, 0xcf, + 0xfc, 0x1f, 0xfc, 0x3, 0xff, 0xc1, 0xff, 0x9f, + 0xf8, 0x3f, 0xf8, 0x7, 0xff, 0x83, 0xff, 0x3f, + 0xf0, 0x7f, 0xf0, 0xf, 0xff, 0x7, 0xfc, 0x7f, + 0xe0, 0xff, 0xe0, 0x1f, 0xfe, 0xf, 0xf8, 0x7f, + 0xc1, 0xff, 0xc0, 0x3f, 0xfc, 0x1f, 0xf0, 0xff, + 0x83, 0xff, 0x80, 0x7f, 0xf8, 0x3f, 0xe1, 0xff, + 0x7, 0xff, 0x0, 0xff, 0xf8, 0x7f, 0xc3, 0xff, + 0xf, 0xfe, 0x1, 0xff, 0xf1, 0xff, 0x87, 0xfe, + 0x3f, 0xf8, 0x1, 0xff, 0xe3, 0xff, 0xf, 0xfc, + 0x7f, 0xf0, 0x3, 0xff, 0xc7, 0xfe, 0x1f, 0xf8, + 0xff, 0xe0, 0x7, 0xff, 0x8f, 0xfc, 0x3f, 0xf1, + 0xff, 0xc0, 0xf, 0xff, 0x1f, 0xf8, 0x7f, 0xe3, + 0xff, 0x80, 0x1f, 0xfe, 0x3f, 0xe0, 0x7f, 0xc7, + 0xff, 0x0, 0x3f, 0xfc, 0x7f, 0xc0, 0xff, 0x8f, + 0xfe, 0x0, 0x7f, 0xf8, 0xff, 0x81, 0xff, 0x1f, + 0xfc, 0x0, 0xff, 0xf1, 0xff, 0x3, 0xfe, 0x3f, + 0xf8, 0x1, 0xff, 0xe3, 0xfe, 0x7, 0xfe, 0x7f, + 0xf0, 0x3, 0xff, 0xef, 0xfc, 0xf, 0xfc, 0xff, + 0xc0, 0x3, 0xff, 0xdf, 0xf8, 0x1f, 0xfb, 0xff, + 0x80, 0x7, 0xff, 0xbf, 0xf0, 0x3f, 0xf7, 0xff, + 0x0, 0xf, 0xff, 0x7f, 0xe0, 0x7f, 0xef, 0xfe, + 0x0, 0x1f, 0xfe, 0xff, 0x80, 0xff, 0xdf, 0xfc, + 0x0, 0x3f, 0xfd, 0xff, 0x0, 0xff, 0xbf, 0xf8, + 0x0, 0x7f, 0xfb, 0xfe, 0x1, 0xff, 0x7f, 0xf0, + 0x0, 0xff, 0xf7, 0xfc, 0x3, 0xfe, 0xff, 0xe0, + 0x1, 0xff, 0xef, 0xf8, 0x7, 0xfd, 0xff, 0xc0, + 0x3, 0xff, 0xdf, 0xf0, 0xf, 0xff, 0xff, 0x80, + 0x7, 0xff, 0xff, 0xe0, 0x1f, 0xff, 0xfe, 0x0, + 0x7, 0xff, 0xff, 0xc0, 0x3f, 0xff, 0xfc, 0x0, + 0xf, 0xff, 0xff, 0x80, 0x7f, 0xff, 0xf8, 0x0, + 0x1f, 0xff, 0xff, 0x0, 0xff, 0xff, 0xf0, 0x0, + 0x3f, 0xff, 0xfc, 0x0, 0xff, 0xff, 0xe0, 0x0, + 0x7f, 0xff, 0xf8, 0x1, 0xff, 0xff, 0xc0, 0x0, + 0xff, 0xff, 0xf0, 0x3, 0xff, 0xff, 0x80, 0x1, + 0xff, 0xff, 0xe0, 0x7, 0xff, 0xff, 0x0, 0x3, + 0xff, 0xff, 0xc0, 0xf, 0xff, 0xfe, 0x0, 0x7, + 0xff, 0xff, 0x80, 0x1f, 0xff, 0xf8, 0x0, 0xf, + 0xff, 0xff, 0x0, 0x3f, 0xff, 0xf0, 0x0, 0xf, + 0xff, 0xfe, 0x0, 0x7f, 0xff, 0xe0, 0x0, 0x1f, + 0xff, 0xfc, 0x0, 0xff, 0xff, 0xc0, 0x0, 0x3f, + 0xff, 0xf0, 0x0, 0xff, 0xff, 0x80, 0x0, 0x7f, + 0xff, 0xe0, 0x1, 0xff, 0xff, 0x0, 0x0, 0xff, + 0xff, 0xc0, 0x3, 0xff, 0xfe, 0x0, 0x1, 0xff, + 0xff, 0x80, 0x7, 0xff, 0xfc, 0x0, 0x3, 0xff, + 0xff, 0x0, 0xf, 0xff, 0xf8, 0x0, 0x7, 0xff, + 0xfe, 0x0, 0x1f, 0xff, 0xf0, 0x0, + + /* U+0078 "x" */ + 0x7f, 0xfe, 0x0, 0x0, 0x7f, 0xfc, 0xff, 0xf8, + 0x0, 0x1, 0xff, 0xe3, 0xff, 0xf0, 0x0, 0xf, + 0xff, 0x8f, 0xff, 0xc0, 0x0, 0x3f, 0xfc, 0x1f, + 0xff, 0x0, 0x0, 0xff, 0xf0, 0x7f, 0xfe, 0x0, + 0x7, 0xff, 0xc1, 0xff, 0xf8, 0x0, 0x1f, 0xfe, + 0x3, 0xff, 0xe0, 0x0, 0x7f, 0xf8, 0xf, 0xff, + 0xc0, 0x3, 0xff, 0xe0, 0x3f, 0xff, 0x0, 0xf, + 0xff, 0x0, 0x7f, 0xfc, 0x0, 0x3f, 0xfc, 0x1, + 0xff, 0xf8, 0x1, 0xff, 0xf0, 0x7, 0xff, 0xe0, + 0x7, 0xff, 0x80, 0xf, 0xff, 0x80, 0x1f, 0xfe, + 0x0, 0x3f, 0xff, 0x0, 0xff, 0xf8, 0x0, 0x7f, + 0xfc, 0x3, 0xff, 0xc0, 0x1, 0xff, 0xf0, 0xf, + 0xff, 0x0, 0x7, 0xff, 0xe0, 0x7f, 0xfc, 0x0, + 0xf, 0xff, 0x81, 0xff, 0xe0, 0x0, 0x3f, 0xfe, + 0x7, 0xff, 0x80, 0x0, 0xff, 0xfc, 0x3f, 0xfc, + 0x0, 0x1, 0xff, 0xf0, 0xff, 0xf0, 0x0, 0x7, + 0xff, 0xc3, 0xff, 0xc0, 0x0, 0x1f, 0xff, 0x9f, + 0xfe, 0x0, 0x0, 0x3f, 0xfe, 0x7f, 0xf8, 0x0, + 0x0, 0xff, 0xf9, 0xff, 0xe0, 0x0, 0x3, 0xff, + 0xff, 0xff, 0x0, 0x0, 0x7, 0xff, 0xff, 0xfc, + 0x0, 0x0, 0x1f, 0xff, 0xff, 0xf0, 0x0, 0x0, + 0x7f, 0xff, 0xff, 0x80, 0x0, 0x0, 0xff, 0xff, + 0xfe, 0x0, 0x0, 0x3, 0xff, 0xff, 0xf8, 0x0, + 0x0, 0x7, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, + 0xff, 0xff, 0x0, 0x0, 0x0, 0x7f, 0xff, 0xf8, + 0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, 0x0, 0x0, + 0x3, 0xff, 0xff, 0x80, 0x0, 0x0, 0xf, 0xff, + 0xfc, 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf0, 0x0, + 0x0, 0x0, 0x7f, 0xff, 0xc0, 0x0, 0x0, 0x1, + 0xff, 0xfe, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf8, + 0x0, 0x0, 0x0, 0x1f, 0xff, 0xf0, 0x0, 0x0, + 0x0, 0x7f, 0xff, 0xc0, 0x0, 0x0, 0x3, 0xff, + 0xff, 0x0, 0x0, 0x0, 0xf, 0xff, 0xfe, 0x0, + 0x0, 0x0, 0x3f, 0xff, 0xf8, 0x0, 0x0, 0x1, + 0xff, 0xff, 0xe0, 0x0, 0x0, 0x7, 0xff, 0xff, + 0xc0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0x0, 0x0, + 0x0, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x3, 0xff, + 0xff, 0xf8, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xe0, + 0x0, 0x0, 0x7f, 0xff, 0xff, 0xc0, 0x0, 0x1, + 0xff, 0xff, 0xff, 0x0, 0x0, 0xf, 0xff, 0x7f, + 0xfc, 0x0, 0x0, 0x3f, 0xfd, 0xff, 0xf8, 0x0, + 0x0, 0xff, 0xf3, 0xff, 0xe0, 0x0, 0x7, 0xff, + 0x8f, 0xff, 0x80, 0x0, 0x1f, 0xfe, 0x3f, 0xff, + 0x0, 0x0, 0x7f, 0xf8, 0x7f, 0xfc, 0x0, 0x3, + 0xff, 0xc1, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x7, + 0xff, 0xe0, 0x0, 0x3f, 0xfc, 0xf, 0xff, 0x80, + 0x1, 0xff, 0xe0, 0x3f, 0xfe, 0x0, 0x7, 0xff, + 0x80, 0xff, 0xfc, 0x0, 0x1f, 0xfe, 0x1, 0xff, + 0xf0, 0x0, 0xff, 0xf0, 0x7, 0xff, 0xe0, 0x3, + 0xff, 0xc0, 0x1f, 0xff, 0x80, 0x1f, 0xff, 0x0, + 0x3f, 0xfe, 0x0, 0x7f, 0xf8, 0x0, 0xff, 0xfc, + 0x1, 0xff, 0xe0, 0x3, 0xff, 0xf0, 0xf, 0xff, + 0x80, 0x7, 0xff, 0xc0, 0x3f, 0xfc, 0x0, 0x1f, + 0xff, 0x80, 0xff, 0xf0, 0x0, 0x7f, 0xfe, 0x7, + 0xff, 0xc0, 0x0, 0xff, 0xf8, 0x1f, 0xfe, 0x0, + 0x3, 0xff, 0xf0, 0x7f, 0xf8, 0x0, 0xf, 0xff, + 0xc3, 0xff, 0xe0, 0x0, 0x1f, 0xff, 0xf, 0xff, + 0x0, 0x0, 0x7f, 0xfe, 0x3f, 0xfc, 0x0, 0x1, + 0xff, 0xf9, 0xff, 0xf0, 0x0, 0x3, 0xff, 0xf7, + 0xff, 0x80, 0x0, 0xf, 0xff, 0xff, 0xfe, 0x0, + 0x0, 0x3f, 0xff, + + /* U+0079 "y" */ + 0xff, 0xfc, 0x0, 0x0, 0xff, 0xfb, 0xff, 0xf0, + 0x0, 0x7, 0xff, 0x9f, 0xff, 0x80, 0x0, 0x7f, + 0xfc, 0xff, 0xfc, 0x0, 0x3, 0xff, 0xe3, 0xff, + 0xe0, 0x0, 0x1f, 0xfe, 0x1f, 0xff, 0x80, 0x0, + 0xff, 0xf0, 0xff, 0xfc, 0x0, 0xf, 0xff, 0x83, + 0xff, 0xe0, 0x0, 0x7f, 0xf8, 0x1f, 0xff, 0x80, + 0x3, 0xff, 0xc0, 0xff, 0xfc, 0x0, 0x3f, 0xfe, + 0x3, 0xff, 0xe0, 0x1, 0xff, 0xf0, 0x1f, 0xff, + 0x0, 0xf, 0xff, 0x0, 0xff, 0xfc, 0x0, 0xff, + 0xf8, 0x7, 0xff, 0xe0, 0x7, 0xff, 0xc0, 0x1f, + 0xff, 0x0, 0x3f, 0xfc, 0x0, 0xff, 0xfc, 0x1, + 0xff, 0xe0, 0x7, 0xff, 0xe0, 0x1f, 0xff, 0x0, + 0x1f, 0xff, 0x0, 0xff, 0xf0, 0x0, 0xff, 0xf8, + 0x7, 0xff, 0x80, 0x7, 0xff, 0xe0, 0x7f, 0xfc, + 0x0, 0x1f, 0xff, 0x3, 0xff, 0xc0, 0x0, 0xff, + 0xf8, 0x1f, 0xfe, 0x0, 0x7, 0xff, 0xe0, 0xff, + 0xf0, 0x0, 0x1f, 0xff, 0xf, 0xff, 0x0, 0x0, + 0xff, 0xf8, 0x7f, 0xf8, 0x0, 0x7, 0xff, 0xc3, + 0xff, 0xc0, 0x0, 0x1f, 0xff, 0x3f, 0xfc, 0x0, + 0x0, 0xff, 0xf9, 0xff, 0xe0, 0x0, 0x7, 0xff, + 0xcf, 0xff, 0x0, 0x0, 0x1f, 0xff, 0x7f, 0xf0, + 0x0, 0x0, 0xff, 0xff, 0xff, 0x80, 0x0, 0x7, + 0xff, 0xff, 0xfc, 0x0, 0x0, 0x1f, 0xff, 0xff, + 0xc0, 0x0, 0x0, 0xff, 0xff, 0xfe, 0x0, 0x0, + 0x7, 0xff, 0xff, 0xf0, 0x0, 0x0, 0x1f, 0xff, + 0xff, 0x0, 0x0, 0x0, 0xff, 0xff, 0xf8, 0x0, + 0x0, 0x7, 0xff, 0xff, 0xc0, 0x0, 0x0, 0x1f, + 0xff, 0xfc, 0x0, 0x0, 0x0, 0xff, 0xff, 0xe0, + 0x0, 0x0, 0x7, 0xff, 0xff, 0x0, 0x0, 0x0, + 0x1f, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xff, 0xff, + 0x80, 0x0, 0x0, 0x7, 0xff, 0xfc, 0x0, 0x0, + 0x0, 0x1f, 0xff, 0xc0, 0x0, 0x0, 0x0, 0xff, + 0xfe, 0x0, 0x0, 0x0, 0x7, 0xff, 0xf0, 0x0, + 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, + 0xff, 0xf8, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, + 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, + 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, + 0x80, 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, + 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1f, + 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, + 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0, + 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf0, + 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, 0x0, 0x0, + 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, 0x3, 0xff, + 0xe0, 0x0, 0x0, 0x0, 0x1f, 0xff, 0x0, 0x0, + 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, 0x0, 0x7, + 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3f, 0xfe, 0x0, + 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, 0x0, 0x0, + 0xf, 0xff, 0x80, 0x0, 0x0, 0x0, 0x7f, 0xfc, + 0x0, 0x0, 0x0, 0x3, 0xff, 0xe0, 0x0, 0x0, + 0x0, 0x1f, 0xff, 0x0, 0x0, 0x0, 0x0, 0xff, + 0xf8, 0x0, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, + 0x0, 0x0, 0x3f, 0xfe, 0x0, 0x0, 0x0, 0x1, + 0xff, 0xf0, 0x0, 0x0, 0x0, 0xf, 0xff, 0x80, + 0x0, 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x0, + 0x3, 0xff, 0xe0, 0x0, 0x0, 0x0, 0x1f, 0xff, + 0x0, 0x0, 0x0, 0x0, 0xff, 0xf8, 0x0, 0x0, + 0x0, 0x7, 0xff, 0xc0, 0x0, 0x0, 0x0, 0x3f, + 0xfe, 0x0, 0x0, 0x0, 0x1, 0xff, 0xf0, 0x0, + 0x0, + + /* U+007A "z" */ + 0x7f, 0xff, 0xff, 0xff, 0xfd, 0xff, 0xff, 0xff, + 0xff, 0xf7, 0xff, 0xff, 0xff, 0xff, 0xdf, 0xff, + 0xff, 0xff, 0xff, 0x7f, 0xff, 0xff, 0xff, 0xfd, + 0xff, 0xff, 0xff, 0xff, 0xf7, 0xff, 0xff, 0xff, + 0xff, 0xdf, 0xff, 0xff, 0xff, 0xff, 0x7f, 0xff, + 0xff, 0xff, 0xfd, 0xff, 0xff, 0xff, 0xff, 0xf7, + 0xff, 0xff, 0xff, 0xff, 0xdf, 0xff, 0xff, 0xff, + 0xff, 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, + 0x7, 0xff, 0xe0, 0x0, 0x0, 0x1f, 0xff, 0x80, + 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x3, 0xff, + 0xf0, 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, + 0x7f, 0xfe, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, + 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, 0x3f, 0xff, + 0x0, 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x7, + 0xff, 0xe0, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, + 0x0, 0x7f, 0xfc, 0x0, 0x0, 0x3, 0xff, 0xf0, + 0x0, 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x7f, + 0xfe, 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, + 0x7, 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xff, 0x0, + 0x0, 0x0, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, + 0xe0, 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, + 0x7f, 0xfc, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, + 0x0, 0xf, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xfe, + 0x0, 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x7, + 0xff, 0xc0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, + 0x0, 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xe0, + 0x0, 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x7f, + 0xfc, 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, + 0xf, 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xfe, 0x0, + 0x0, 0x1, 0xff, 0xf8, 0x0, 0x0, 0x7, 0xff, + 0xc0, 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, + 0xff, 0xfc, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, + 0x0, 0x1f, 0xff, 0x80, 0x0, 0x0, 0x7f, 0xfc, + 0x0, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0xf, + 0xff, 0xc0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, + 0x1, 0xff, 0xf8, 0x0, 0x0, 0x7, 0xff, 0xc0, + 0x0, 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0xff, + 0xfc, 0x0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x0, + 0x1f, 0xff, 0x80, 0x0, 0x0, 0x7f, 0xfc, 0x0, + 0x0, 0x3, 0xff, 0xf0, 0x0, 0x0, 0xf, 0xff, + 0xc0, 0x0, 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x1, + 0xff, 0xf8, 0x0, 0x0, 0x7, 0xff, 0xc0, 0x0, + 0x0, 0x3f, 0xff, 0x0, 0x0, 0x0, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + + /* U+007B "{" */ + 0x0, 0x0, 0x7f, 0xf0, 0x0, 0x3f, 0xff, 0x0, + 0x7, 0xff, 0xf0, 0x0, 0xff, 0xff, 0x0, 0x1f, + 0xff, 0xf0, 0x3, 0xff, 0xff, 0x0, 0x7f, 0xff, + 0xf0, 0x7, 0xff, 0xff, 0x0, 0x7f, 0xff, 0xf0, + 0xf, 0xff, 0xff, 0x0, 0xff, 0xff, 0xf0, 0xf, + 0xff, 0xe0, 0x0, 0xff, 0xfc, 0x0, 0xf, 0xff, + 0x80, 0x0, 0xff, 0xf8, 0x0, 0xf, 0xff, 0x0, + 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, + 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, + 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, + 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, + 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, + 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, + 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, + 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, + 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, + 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, + 0x0, 0xf, 0xff, 0x0, 0x1, 0xff, 0xf0, 0x0, + 0x3f, 0xff, 0x0, 0x7, 0xff, 0xe0, 0xf, 0xff, + 0xfe, 0x0, 0xff, 0xff, 0xc0, 0xf, 0xff, 0xf8, + 0x0, 0xff, 0xff, 0x0, 0xf, 0xff, 0xe0, 0x0, + 0xff, 0xf8, 0x0, 0xf, 0xff, 0xe0, 0x0, 0xff, + 0xff, 0x0, 0xf, 0xff, 0xfc, 0x0, 0xff, 0xff, + 0xc0, 0xf, 0xff, 0xfe, 0x0, 0x7, 0xff, 0xe0, + 0x0, 0x3f, 0xff, 0x0, 0x1, 0xff, 0xf0, 0x0, + 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, + 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, + 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, + 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, + 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, + 0xf0, 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, + 0x0, 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, + 0xf, 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, + 0xff, 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, + 0x0, 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x0, + 0x0, 0xff, 0xf0, 0x0, 0xf, 0xff, 0x80, 0x0, + 0xff, 0xf8, 0x0, 0xf, 0xff, 0xc0, 0x0, 0xff, + 0xfe, 0x0, 0xf, 0xff, 0xff, 0x0, 0xff, 0xff, + 0xf0, 0x7, 0xff, 0xff, 0x0, 0x7f, 0xff, 0xf0, + 0x7, 0xff, 0xff, 0x0, 0x3f, 0xff, 0xf0, 0x1, + 0xff, 0xff, 0x0, 0x1f, 0xff, 0xf0, 0x0, 0x7f, + 0xff, 0x0, 0x3, 0xff, 0xf0, 0x0, 0x7, 0xff, + + /* U+007C "|" */ + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf8, + + /* U+007D "}" */ + 0xff, 0xf0, 0x0, 0x7, 0xff, 0xe0, 0x0, 0x3f, + 0xff, 0xc0, 0x1, 0xff, 0xff, 0x0, 0xf, 0xff, + 0xfc, 0x0, 0x7f, 0xff, 0xf0, 0x3, 0xff, 0xff, + 0xc0, 0x1f, 0xff, 0xfe, 0x0, 0xff, 0xff, 0xf0, + 0x7, 0xff, 0xff, 0xc0, 0x3f, 0xff, 0xfe, 0x0, + 0xf, 0xff, 0xf0, 0x0, 0x1f, 0xff, 0x80, 0x0, + 0x7f, 0xfc, 0x0, 0x3, 0xff, 0xe0, 0x0, 0xf, + 0xff, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x3, 0xff, + 0xc0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xff, 0xf0, + 0x0, 0x7, 0xff, 0x80, 0x0, 0x3f, 0xfc, 0x0, + 0x1, 0xff, 0xe0, 0x0, 0xf, 0xff, 0x0, 0x0, + 0x7f, 0xf8, 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1f, + 0xfe, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x7, 0xff, + 0x80, 0x0, 0x3f, 0xfc, 0x0, 0x1, 0xff, 0xe0, + 0x0, 0xf, 0xff, 0x0, 0x0, 0x7f, 0xf8, 0x0, + 0x3, 0xff, 0xc0, 0x0, 0x1f, 0xfe, 0x0, 0x0, + 0xff, 0xf0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3f, + 0xfc, 0x0, 0x1, 0xff, 0xe0, 0x0, 0xf, 0xff, + 0x0, 0x0, 0x7f, 0xfc, 0x0, 0x3, 0xff, 0xf0, + 0x0, 0xf, 0xff, 0xc0, 0x0, 0x7f, 0xff, 0xf0, + 0x1, 0xff, 0xff, 0x80, 0x7, 0xff, 0xfc, 0x0, + 0x1f, 0xff, 0xe0, 0x0, 0x7f, 0xff, 0x0, 0x0, + 0xff, 0xf8, 0x0, 0x1f, 0xff, 0xc0, 0x1, 0xff, + 0xfe, 0x0, 0x3f, 0xff, 0xf0, 0x1, 0xff, 0xff, + 0x80, 0x1f, 0xff, 0xfc, 0x0, 0xff, 0xfc, 0x0, + 0xf, 0xff, 0xc0, 0x0, 0x7f, 0xfc, 0x0, 0x3, + 0xff, 0xc0, 0x0, 0x1f, 0xfe, 0x0, 0x0, 0xff, + 0xf0, 0x0, 0x7, 0xff, 0x80, 0x0, 0x3f, 0xfc, + 0x0, 0x1, 0xff, 0xe0, 0x0, 0xf, 0xff, 0x0, + 0x0, 0x7f, 0xf8, 0x0, 0x3, 0xff, 0xc0, 0x0, + 0x1f, 0xfe, 0x0, 0x0, 0xff, 0xf0, 0x0, 0x7, + 0xff, 0x80, 0x0, 0x3f, 0xfc, 0x0, 0x1, 0xff, + 0xe0, 0x0, 0xf, 0xff, 0x0, 0x0, 0x7f, 0xf8, + 0x0, 0x3, 0xff, 0xc0, 0x0, 0x1f, 0xfe, 0x0, + 0x0, 0xff, 0xf0, 0x0, 0x7, 0xff, 0x80, 0x0, + 0x3f, 0xfc, 0x0, 0x1, 0xff, 0xe0, 0x0, 0xf, + 0xff, 0x0, 0x0, 0x7f, 0xf8, 0x0, 0x7, 0xff, + 0xc0, 0x0, 0x3f, 0xfe, 0x0, 0x3, 0xff, 0xf0, + 0x0, 0x7f, 0xff, 0x80, 0x7f, 0xff, 0xfc, 0x3, + 0xff, 0xff, 0xe0, 0x1f, 0xff, 0xfe, 0x0, 0xff, + 0xff, 0xf0, 0x7, 0xff, 0xff, 0x80, 0x3f, 0xff, + 0xf8, 0x1, 0xff, 0xff, 0x80, 0xf, 0xff, 0xf8, + 0x0, 0x7f, 0xff, 0x80, 0x3, 0xff, 0xf8, 0x0, + 0x1f, 0xfe, 0x0, 0x0, + + /* U+007E "~" */ + 0x0, 0x1f, 0xc0, 0x0, 0x3, 0x0, 0x1, 0xff, + 0xc0, 0x0, 0x1e, 0x0, 0xf, 0xff, 0xc0, 0x0, + 0x7c, 0x0, 0x7f, 0xff, 0xc0, 0x3, 0xfc, 0x3, + 0xff, 0xff, 0x80, 0x1f, 0xf8, 0x1f, 0xff, 0xff, + 0x80, 0xff, 0xe0, 0xff, 0xff, 0xff, 0x87, 0xff, + 0x87, 0xff, 0xff, 0xff, 0xff, 0xfc, 0x1f, 0xff, + 0xff, 0xff, 0xff, 0xe0, 0xff, 0xff, 0xff, 0xff, + 0xff, 0x87, 0xff, 0x87, 0xff, 0xff, 0xfc, 0x1f, + 0xfc, 0x7, 0xff, 0xff, 0xe0, 0x7f, 0xe0, 0x7, + 0xff, 0xff, 0x0, 0xff, 0x0, 0xf, 0xff, 0xf8, + 0x0, 0xf8, 0x0, 0xf, 0xff, 0xc0, 0x1, 0xe0, + 0x0, 0xf, 0xfe, 0x0, 0x3, 0x0, 0x0, 0xf, + 0xc0, 0x0 +}; + + +/*--------------------- + * GLYPH DESCRIPTION + *--------------------*/ + +static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { + {.bitmap_index = 0, .adv_w = 0, .box_w = 0, .box_h = 0, .ofs_x = 0, .ofs_y = 0} /* id = 0 reserved */, + {.bitmap_index = 0, .adv_w = 307, .box_w = 1, .box_h = 1, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1, .adv_w = 403, .box_w = 13, .box_h = 83, .ofs_x = 6, .ofs_y = 1}, + {.bitmap_index = 136, .adv_w = 645, .box_w = 31, .box_h = 27, .ofs_x = 5, .ofs_y = 57}, + {.bitmap_index = 241, .adv_w = 791, .box_w = 46, .box_h = 84, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 724, .adv_w = 768, .box_w = 39, .box_h = 95, .ofs_x = 4, .ofs_y = -7}, + {.bitmap_index = 1188, .adv_w = 1131, .box_w = 62, .box_h = 86, .ofs_x = 4, .ofs_y = -1}, + {.bitmap_index = 1855, .adv_w = 801, .box_w = 44, .box_h = 85, .ofs_x = 4, .ofs_y = -1}, + {.bitmap_index = 2323, .adv_w = 361, .box_w = 13, .box_h = 27, .ofs_x = 5, .ofs_y = 57}, + {.bitmap_index = 2367, .adv_w = 530, .box_w = 23, .box_h = 96, .ofs_x = 6, .ofs_y = -6}, + {.bitmap_index = 2643, .adv_w = 530, .box_w = 23, .box_h = 96, .ofs_x = 4, .ofs_y = -6}, + {.bitmap_index = 2919, .adv_w = 810, .box_w = 47, .box_h = 45, .ofs_x = 2, .ofs_y = 39}, + {.bitmap_index = 3184, .adv_w = 768, .box_w = 42, .box_h = 42, .ofs_x = 3, .ofs_y = 21}, + {.bitmap_index = 3405, .adv_w = 361, .box_w = 13, .box_h = 27, .ofs_x = 5, .ofs_y = -15}, + {.bitmap_index = 3449, .adv_w = 518, .box_w = 26, .box_h = 12, .ofs_x = 3, .ofs_y = 36}, + {.bitmap_index = 3488, .adv_w = 361, .box_w = 13, .box_h = 12, .ofs_x = 5, .ofs_y = 0}, + {.bitmap_index = 3508, .adv_w = 747, .box_w = 45, .box_h = 84, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 3981, .adv_w = 768, .box_w = 40, .box_h = 86, .ofs_x = 4, .ofs_y = -1}, + {.bitmap_index = 4411, .adv_w = 768, .box_w = 27, .box_h = 84, .ofs_x = 10, .ofs_y = 0}, + {.bitmap_index = 4695, .adv_w = 768, .box_w = 39, .box_h = 85, .ofs_x = 5, .ofs_y = 0}, + {.bitmap_index = 5110, .adv_w = 768, .box_w = 39, .box_h = 86, .ofs_x = 4, .ofs_y = -1}, + {.bitmap_index = 5530, .adv_w = 768, .box_w = 45, .box_h = 84, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 6003, .adv_w = 768, .box_w = 39, .box_h = 85, .ofs_x = 5, .ofs_y = -1}, + {.bitmap_index = 6418, .adv_w = 768, .box_w = 40, .box_h = 86, .ofs_x = 4, .ofs_y = -1}, + {.bitmap_index = 6848, .adv_w = 768, .box_w = 40, .box_h = 84, .ofs_x = 4, .ofs_y = 0}, + {.bitmap_index = 7268, .adv_w = 768, .box_w = 41, .box_h = 86, .ofs_x = 3, .ofs_y = -1}, + {.bitmap_index = 7709, .adv_w = 768, .box_w = 40, .box_h = 86, .ofs_x = 4, .ofs_y = -1}, + {.bitmap_index = 8139, .adv_w = 361, .box_w = 13, .box_h = 58, .ofs_x = 5, .ofs_y = 0}, + {.bitmap_index = 8234, .adv_w = 361, .box_w = 14, .box_h = 73, .ofs_x = 4, .ofs_y = -15}, + {.bitmap_index = 8362, .adv_w = 768, .box_w = 37, .box_h = 40, .ofs_x = 5, .ofs_y = 22}, + {.bitmap_index = 8547, .adv_w = 768, .box_w = 39, .box_h = 29, .ofs_x = 4, .ofs_y = 28}, + {.bitmap_index = 8689, .adv_w = 768, .box_w = 37, .box_h = 40, .ofs_x = 6, .ofs_y = 22}, + {.bitmap_index = 8874, .adv_w = 697, .box_w = 39, .box_h = 85, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 9289, .adv_w = 1336, .box_w = 78, .box_h = 96, .ofs_x = 3, .ofs_y = -7}, + {.bitmap_index = 10225, .adv_w = 770, .box_w = 46, .box_h = 84, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 10708, .adv_w = 776, .box_w = 41, .box_h = 84, .ofs_x = 5, .ofs_y = 0}, + {.bitmap_index = 11139, .adv_w = 735, .box_w = 39, .box_h = 86, .ofs_x = 4, .ofs_y = -1}, + {.bitmap_index = 11559, .adv_w = 780, .box_w = 40, .box_h = 84, .ofs_x = 5, .ofs_y = 0}, + {.bitmap_index = 11979, .adv_w = 697, .box_w = 36, .box_h = 84, .ofs_x = 5, .ofs_y = 0}, + {.bitmap_index = 12357, .adv_w = 660, .box_w = 35, .box_h = 84, .ofs_x = 5, .ofs_y = 0}, + {.bitmap_index = 12725, .adv_w = 751, .box_w = 40, .box_h = 86, .ofs_x = 4, .ofs_y = -1}, + {.bitmap_index = 13155, .adv_w = 806, .box_w = 40, .box_h = 84, .ofs_x = 5, .ofs_y = 0}, + {.bitmap_index = 13575, .adv_w = 369, .box_w = 13, .box_h = 84, .ofs_x = 5, .ofs_y = 0}, + {.bitmap_index = 13712, .adv_w = 509, .box_w = 25, .box_h = 84, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 13975, .adv_w = 795, .box_w = 43, .box_h = 84, .ofs_x = 5, .ofs_y = 0}, + {.bitmap_index = 14427, .adv_w = 660, .box_w = 35, .box_h = 84, .ofs_x = 5, .ofs_y = 0}, + {.bitmap_index = 14795, .adv_w = 1033, .box_w = 55, .box_h = 84, .ofs_x = 5, .ofs_y = 0}, + {.bitmap_index = 15373, .adv_w = 820, .box_w = 41, .box_h = 84, .ofs_x = 5, .ofs_y = 0}, + {.bitmap_index = 15804, .adv_w = 768, .box_w = 40, .box_h = 86, .ofs_x = 4, .ofs_y = -1}, + {.bitmap_index = 16234, .adv_w = 741, .box_w = 39, .box_h = 84, .ofs_x = 5, .ofs_y = 0}, + {.bitmap_index = 16644, .adv_w = 768, .box_w = 44, .box_h = 93, .ofs_x = 4, .ofs_y = -8}, + {.bitmap_index = 17156, .adv_w = 774, .box_w = 41, .box_h = 84, .ofs_x = 5, .ofs_y = 0}, + {.bitmap_index = 17587, .adv_w = 714, .box_w = 39, .box_h = 86, .ofs_x = 3, .ofs_y = -1}, + {.bitmap_index = 18007, .adv_w = 699, .box_w = 41, .box_h = 84, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 18438, .adv_w = 772, .box_w = 39, .box_h = 85, .ofs_x = 4, .ofs_y = -1}, + {.bitmap_index = 18853, .adv_w = 733, .box_w = 43, .box_h = 84, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 19305, .adv_w = 1069, .box_w = 63, .box_h = 84, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 19967, .adv_w = 780, .box_w = 46, .box_h = 84, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 20450, .adv_w = 756, .box_w = 45, .box_h = 84, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 20923, .adv_w = 695, .box_w = 38, .box_h = 84, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 21322, .adv_w = 530, .box_w = 22, .box_h = 96, .ofs_x = 7, .ofs_y = -6}, + {.bitmap_index = 21586, .adv_w = 747, .box_w = 45, .box_h = 84, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 22059, .adv_w = 530, .box_w = 22, .box_h = 96, .ofs_x = 4, .ofs_y = -6}, + {.bitmap_index = 22323, .adv_w = 768, .box_w = 43, .box_h = 33, .ofs_x = 2, .ofs_y = 51}, + {.bitmap_index = 22501, .adv_w = 576, .box_w = 36, .box_h = 9, .ofs_x = 0, .ofs_y = -11}, + {.bitmap_index = 22542, .adv_w = 960, .box_w = 23, .box_h = 14, .ofs_x = 14, .ofs_y = 89}, + {.bitmap_index = 22583, .adv_w = 770, .box_w = 46, .box_h = 84, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 23066, .adv_w = 776, .box_w = 41, .box_h = 84, .ofs_x = 5, .ofs_y = 0}, + {.bitmap_index = 23497, .adv_w = 735, .box_w = 39, .box_h = 86, .ofs_x = 4, .ofs_y = -1}, + {.bitmap_index = 23917, .adv_w = 780, .box_w = 40, .box_h = 84, .ofs_x = 5, .ofs_y = 0}, + {.bitmap_index = 24337, .adv_w = 697, .box_w = 36, .box_h = 84, .ofs_x = 5, .ofs_y = 0}, + {.bitmap_index = 24715, .adv_w = 660, .box_w = 35, .box_h = 84, .ofs_x = 5, .ofs_y = 0}, + {.bitmap_index = 25083, .adv_w = 751, .box_w = 40, .box_h = 86, .ofs_x = 4, .ofs_y = -1}, + {.bitmap_index = 25513, .adv_w = 806, .box_w = 40, .box_h = 84, .ofs_x = 5, .ofs_y = 0}, + {.bitmap_index = 25933, .adv_w = 369, .box_w = 13, .box_h = 84, .ofs_x = 5, .ofs_y = 0}, + {.bitmap_index = 26070, .adv_w = 509, .box_w = 25, .box_h = 84, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 26333, .adv_w = 795, .box_w = 43, .box_h = 84, .ofs_x = 5, .ofs_y = 0}, + {.bitmap_index = 26785, .adv_w = 660, .box_w = 35, .box_h = 84, .ofs_x = 5, .ofs_y = 0}, + {.bitmap_index = 27153, .adv_w = 1033, .box_w = 55, .box_h = 84, .ofs_x = 5, .ofs_y = 0}, + {.bitmap_index = 27731, .adv_w = 820, .box_w = 41, .box_h = 84, .ofs_x = 5, .ofs_y = 0}, + {.bitmap_index = 28162, .adv_w = 768, .box_w = 40, .box_h = 86, .ofs_x = 4, .ofs_y = -1}, + {.bitmap_index = 28592, .adv_w = 741, .box_w = 39, .box_h = 84, .ofs_x = 5, .ofs_y = 0}, + {.bitmap_index = 29002, .adv_w = 768, .box_w = 44, .box_h = 93, .ofs_x = 4, .ofs_y = -8}, + {.bitmap_index = 29514, .adv_w = 774, .box_w = 41, .box_h = 84, .ofs_x = 5, .ofs_y = 0}, + {.bitmap_index = 29945, .adv_w = 714, .box_w = 39, .box_h = 86, .ofs_x = 3, .ofs_y = -1}, + {.bitmap_index = 30365, .adv_w = 699, .box_w = 41, .box_h = 84, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 30796, .adv_w = 772, .box_w = 39, .box_h = 85, .ofs_x = 4, .ofs_y = -1}, + {.bitmap_index = 31211, .adv_w = 733, .box_w = 43, .box_h = 84, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 31663, .adv_w = 1069, .box_w = 63, .box_h = 84, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 32325, .adv_w = 780, .box_w = 46, .box_h = 84, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 32808, .adv_w = 756, .box_w = 45, .box_h = 84, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 33281, .adv_w = 695, .box_w = 38, .box_h = 84, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 33680, .adv_w = 530, .box_w = 28, .box_h = 96, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 34016, .adv_w = 960, .box_w = 11, .box_h = 119, .ofs_x = 25, .ofs_y = -24}, + {.bitmap_index = 34180, .adv_w = 530, .box_w = 29, .box_h = 96, .ofs_x = 2, .ofs_y = -6}, + {.bitmap_index = 34528, .adv_w = 768, .box_w = 46, .box_h = 17, .ofs_x = 1, .ofs_y = 34} +}; + +/*--------------------- + * CHARACTER MAPPING + *--------------------*/ + + + +/*Collect the unicode lists and glyph_id offsets*/ +static const lv_font_fmt_txt_cmap_t cmaps[] = +{ + { + .range_start = 32, .range_length = 95, .glyph_id_start = 1, + .unicode_list = NULL, .glyph_id_ofs_list = NULL, .list_length = 0, .type = LV_FONT_FMT_TXT_CMAP_FORMAT0_TINY + } +}; + +/*----------------- + * KERNING + *----------------*/ + + +/*Map glyph_ids to kern left classes*/ +static const uint8_t kern_left_class_mapping[] = +{ + 0, 0, 0, 0, 0, 0, 0, 1, + 0, 2, 0, 0, 0, 0, 3, 0, + 4, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 5, 6, 7, 8, 9, 10, 11, + 12, 0, 0, 13, 14, 15, 0, 0, + 9, 16, 9, 17, 18, 19, 20, 21, + 22, 23, 24, 25, 2, 0, 0, 0, + 0, 0, 6, 7, 8, 9, 10, 11, + 12, 0, 0, 0, 14, 15, 0, 0, + 9, 16, 9, 17, 18, 19, 20, 21, + 22, 23, 24, 25, 2, 0, 0, 0 +}; + +/*Map glyph_ids to kern right classes*/ +static const uint8_t kern_right_class_mapping[] = +{ + 0, 0, 0, 1, 0, 0, 0, 2, + 1, 0, 3, 4, 0, 5, 6, 5, + 7, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 8, 8, 0, 0, 0, + 9, 10, 11, 0, 12, 0, 0, 0, + 12, 0, 0, 13, 0, 0, 0, 0, + 12, 0, 12, 0, 14, 15, 16, 17, + 18, 19, 20, 21, 0, 0, 3, 0, + 0, 0, 11, 0, 12, 0, 0, 0, + 12, 0, 0, 0, 0, 0, 0, 0, + 12, 0, 12, 0, 14, 15, 16, 17, + 18, 19, 20, 21, 0, 0, 3, 0 +}; + +/*Kern values between classes*/ +static const int8_t kern_class_values[] = +{ + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, -9, 0, + 0, 0, 0, -11, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 9, + 0, 9, 0, 13, 0, 9, 9, 4, + 9, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -17, 0, -54, 0, + -62, 0, -17, -7, -30, -43, -13, 0, + 0, 0, 0, 0, 0, -119, 0, 0, + 0, -21, 0, -38, 0, 9, 0, 9, + 9, 0, 4, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, -13, 0, + -9, 0, 0, 0, 0, 0, -17, -13, + 0, -45, 0, 9, -38, 9, -17, 9, + 9, -26, -4, 4, -2, 0, -3, -39, + -2, -24, -12, 2, -39, 3, -5, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, -3, -1, + -6, -14, 0, 0, 0, 0, 4, 0, + 0, 0, 0, 4, 4, 0, 2, 0, + 2, 0, 0, 0, 0, -6, -8, 0, + -5, 0, 0, 0, -5, 0, 0, 0, + 0, 0, -2, 0, -3, 0, -3, 0, + -2, 0, -14, -15, 0, 0, 0, 9, + 0, 4, 0, 0, 0, 0, 0, 0, + 0, 0, 2, 0, 0, 0, 0, 2, + 0, 2, 9, 0, 13, 9, -62, -4, + -26, 0, 4, -4, -27, 0, -44, 0, + 9, 0, 4, 4, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, -11, -13, 0, 0, 0, 0, 0, + -2, 0, -9, 0, 0, 0, -2, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, -4, 4, -17, 4, -30, 0, + 4, -9, -7, 0, -14, 0, -6, 0, + -1, 0, 0, 0, 0, 0, -62, 9, + 13, -85, 9, -62, 9, 9, -38, 0, + 3, -3, 9, 0, -67, 0, -39, -15, + 0, -75, 0, 0, 0, 0, 9, -79, + 0, -55, 0, 9, 0, -30, 0, -49, + 3, 2, 0, 0, 0, -10, -4, -2, + -4, 0, 0, 0, 4, 0, 9, 4, + 0, 0, 0, 0, 0, 0, -2, 0, + -3, -2, 0, -14, 0, 0, 0, 0, + 0, 0, -3, 0, 0, 0, 0, -3, + 0, 0, 0, 0, 0, 0, 0, -5, + -5, 0, 9, 0, 13, 9, -62, -62, + -38, -30, 4, -21, -39, -3, -44, 0, + 9, 0, 3, 3, 0, 3, 0, 0, + 0, 0, 0, -2, 0, -9, 0, 0, + 0, -2, 0, 0, 0, 0, 0, 0, + 0, -1, 0, 0, 9, -4, 9, 0, + -45, -17, -21, -13, 0, -9, -24, -2, + -41, 0, 3, 0, 4, 4, 0, 0, + 0, 9, 0, 9, 0, -21, -7, 0, + -4, 0, -4, -12, 0, -18, 0, 3, + 0, 4, 4, 0, 0, 0, 0, -4, + 4, -17, 4, -30, 9, 4, -9, -7, + 2, -14, 0, -5, 0, -1, 0, 0, + 0, 0, 0, 9, -17, 9, -9, -79, + -43, -47, -34, -9, -34, -39, -15, -49, + -14, 3, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 9, -13, 0, 9, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 4 +}; + + +/*Collect the kern class' data in one place*/ +static const lv_font_fmt_txt_kern_classes_t kern_classes = +{ + .class_pair_values = kern_class_values, + .left_class_mapping = kern_left_class_mapping, + .right_class_mapping = kern_right_class_mapping, + .left_class_cnt = 25, + .right_class_cnt = 21, +}; + +/*-------------------- + * ALL CUSTOM DATA + *--------------------*/ + +#if LV_VERSION_CHECK(8, 0, 0) +/*Store all the custom data of the font*/ +static lv_font_fmt_txt_glyph_cache_t cache; +static const lv_font_fmt_txt_dsc_t font_dsc = { +#else +static lv_font_fmt_txt_dsc_t font_dsc = { +#endif + .glyph_bitmap = glyph_bitmap, + .glyph_dsc = glyph_dsc, + .cmaps = cmaps, + .kern_dsc = &kern_classes, + .kern_scale = 36, + .cmap_num = 1, + .bpp = 1, + .kern_classes = 1, + .bitmap_format = 0, +#if LV_VERSION_CHECK(8, 0, 0) + .cache = &cache +#endif +}; + + +/*----------------- + * PUBLIC FONT + *----------------*/ + +/*Initialize a public general font descriptor*/ +#if LV_VERSION_CHECK(8, 0, 0) +const lv_font_t bebas_neue_120 = { +#else +lv_font_t bebas_neue_120 = { +#endif + .get_glyph_dsc = lv_font_get_glyph_dsc_fmt_txt, /*Function pointer to get glyph's data*/ + .get_glyph_bitmap = lv_font_get_bitmap_fmt_txt, /*Function pointer to get glyph's bitmap*/ + .line_height = 127, /*The maximum line height required by the font*/ + .base_line = 24, /*Baseline measured from the bottom of the line*/ +#if !(LVGL_VERSION_MAJOR == 6 && LVGL_VERSION_MINOR == 0) + .subpx = LV_FONT_SUBPX_NONE, +#endif +#if LV_VERSION_CHECK(7, 4, 0) || LVGL_VERSION_MAJOR >= 8 + .underline_position = -5, + .underline_thickness = 10, +#endif + .dsc = &font_dsc /*The custom font data. Will be accessed by `get_glyph_bitmap/dsc` */ +}; + + + +#endif /*#if BEBAS_NEUE_120*/ + diff --git a/main/assets/fonts/bebas_neue/bebas_neue_32.c b/main/assets/fonts/bebas_neue/bebas_neue_32.c new file mode 100644 index 0000000..c0aac08 --- /dev/null +++ b/main/assets/fonts/bebas_neue/bebas_neue_32.c @@ -0,0 +1,865 @@ +/******************************************************************************* + * Size: 32 px + * Bpp: 1 + * Opts: + ******************************************************************************/ + +#ifdef LV_LVGL_H_INCLUDE_SIMPLE +#include "lvgl.h" +#else +#include "lvgl/lvgl.h" +#endif + +#ifndef BEBAS_NEUE_32 +#define BEBAS_NEUE_32 1 +#endif + +#if BEBAS_NEUE_32 + +/*----------------- + * BITMAPS + *----------------*/ + +/*Store the image of the glyphs*/ +static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { + /* U+0020 " " */ + 0x0, + + /* U+0021 "!" */ + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0xf, + 0xf8, + + /* U+0022 "\"" */ + 0xf7, 0x7b, 0x9d, 0xcc, 0xe6, 0x73, 0x19, 0x8c, + + /* U+0023 "#" */ + 0x18, 0xe1, 0x8c, 0x38, 0xc3, 0x9c, 0x39, 0xc7, + 0xff, 0xff, 0xff, 0xfe, 0x39, 0xc3, 0x9c, 0x31, + 0xc3, 0x18, 0x71, 0x87, 0x38, 0xff, 0xef, 0xfe, + 0xff, 0xe7, 0x38, 0x73, 0x87, 0x38, 0x63, 0x86, + 0x30, 0xe3, 0x0, + + /* U+0024 "$" */ + 0xe, 0x1, 0xc0, 0x7e, 0x3f, 0xe7, 0xfd, 0xe3, + 0xfc, 0x7f, 0x8f, 0xf0, 0x1f, 0x1, 0xf0, 0x3f, + 0x3, 0xf0, 0x3f, 0x3, 0xf0, 0x3e, 0x3, 0xfe, + 0x3f, 0xc7, 0xf8, 0xff, 0x1e, 0xff, 0x9f, 0xf0, + 0xf8, 0xe, 0x1, 0xc0, + + /* U+0025 "%" */ + 0x7c, 0x18, 0xfe, 0x18, 0xc6, 0x18, 0xc6, 0x30, + 0xc6, 0x30, 0xc6, 0x70, 0xc6, 0x60, 0xc6, 0x60, + 0xc6, 0xe0, 0xc6, 0xc0, 0xc6, 0xde, 0xff, 0xbf, + 0x7d, 0xb3, 0x3, 0xb3, 0x3, 0x33, 0x3, 0x33, + 0x7, 0x33, 0x6, 0x33, 0xe, 0x33, 0xe, 0x33, + 0xc, 0x33, 0x1c, 0x3f, 0x1c, 0x1e, + + /* U+0026 "&" */ + 0x1f, 0xc7, 0xfc, 0x7f, 0xcf, 0x0, 0xf0, 0xf, + 0x0, 0xf1, 0xef, 0x1e, 0x79, 0xe7, 0xff, 0x1f, + 0xf7, 0xff, 0xf9, 0xef, 0x1e, 0xf1, 0xef, 0x1e, + 0xf1, 0xef, 0x1e, 0xf1, 0xef, 0x3e, 0xff, 0xe7, + 0xfe, 0x3d, 0xe0, + + /* U+0027 "'" */ + 0xff, 0x76, 0x66, 0x60, + + /* U+0028 "(" */ + 0x3d, 0xff, 0xfc, 0xf3, 0xcf, 0x3c, 0xf3, 0xcf, + 0x3c, 0xf3, 0xcf, 0x3c, 0xf3, 0xcf, 0x3c, 0xf3, + 0xcf, 0x3f, 0x7c, 0xf0, + + /* U+0029 ")" */ + 0xf9, 0xfb, 0xf8, 0xf1, 0xe3, 0xc7, 0x8f, 0x1e, + 0x3c, 0x78, 0xf1, 0xe3, 0xc7, 0x8f, 0x1e, 0x3c, + 0x78, 0xf1, 0xe3, 0xc7, 0xff, 0xfd, 0xf0, + + /* U+002A "*" */ + 0x7, 0x0, 0x38, 0x0, 0xc0, 0xc6, 0x27, 0xb7, + 0xbf, 0xfc, 0x3e, 0x0, 0xf0, 0xd, 0xc0, 0xe7, + 0xe, 0x38, 0x30, 0x80, + + /* U+002B "+" */ + 0x6, 0x0, 0xc0, 0x18, 0x3, 0xf, 0xff, 0xff, + 0xff, 0xf8, 0x30, 0x6, 0x0, 0xc0, 0x18, 0x0, + + /* U+002C "," */ + 0xff, 0xf7, 0x6e, 0xc0, + + /* U+002D "-" */ + 0xff, 0xff, 0xf8, + + /* U+002E "." */ + 0xff, 0xf0, + + /* U+002F "/" */ + 0x0, 0x70, 0x7, 0x0, 0xe0, 0xe, 0x1, 0xc0, + 0x1c, 0x1, 0xc0, 0x38, 0x3, 0x80, 0x78, 0x7, + 0x0, 0x70, 0xe, 0x0, 0xe0, 0xe, 0x1, 0xc0, + 0x1c, 0x3, 0x80, 0x38, 0x3, 0x80, 0x70, 0x7, + 0x0, 0xf0, 0x0, + + /* U+0030 "0" */ + 0x1f, 0xf, 0xf9, 0xff, 0x78, 0xff, 0x1f, 0xe3, + 0xfc, 0x7f, 0x8f, 0xf1, 0xfe, 0x3f, 0xc7, 0xf8, + 0xff, 0x1f, 0xe3, 0xfc, 0x7f, 0x8f, 0xf1, 0xfe, + 0x3f, 0xc7, 0xf8, 0xf7, 0xfc, 0xff, 0x87, 0xc0, + + /* U+0031 "1" */ + 0x7, 0x7, 0x1f, 0xff, 0xff, 0xff, 0xf, 0xf, + 0xf, 0xf, 0xf, 0xf, 0xf, 0xf, 0xf, 0xf, + 0xf, 0xf, 0xf, 0xf, 0xf, 0xf, 0xf, + + /* U+0032 "2" */ + 0x1f, 0xf, 0xf9, 0xff, 0x78, 0xff, 0x1f, 0xe3, + 0xfc, 0x7f, 0x8f, 0x3, 0xe0, 0x78, 0x1f, 0x7, + 0xc1, 0xf0, 0x3c, 0xf, 0x83, 0xe0, 0x78, 0x1e, + 0x3, 0xc0, 0x78, 0xf, 0xff, 0xff, 0xff, 0xf8, + + /* U+0033 "3" */ + 0x1f, 0xf, 0xf9, 0xff, 0x78, 0xff, 0x1f, 0xe3, + 0xc0, 0x78, 0xf, 0x1, 0xc1, 0xf8, 0x3c, 0x7, + 0xe0, 0x3e, 0x3, 0xc0, 0x7f, 0x8f, 0xf1, 0xfe, + 0x3f, 0xc7, 0xfd, 0xf7, 0xfc, 0xff, 0x87, 0xc0, + + /* U+0034 "4" */ + 0x3, 0xc0, 0x7c, 0x7, 0xc0, 0xfc, 0xf, 0xc0, + 0xfc, 0x1f, 0xc1, 0xfc, 0x1b, 0xc3, 0xbc, 0x3b, + 0xc3, 0x3c, 0x73, 0xc7, 0x3c, 0x63, 0xce, 0x3c, + 0xff, 0xff, 0xff, 0xff, 0xf0, 0x3c, 0x3, 0xc0, + 0x3c, 0x3, 0xc0, + + /* U+0035 "5" */ + 0xff, 0xdf, 0xfb, 0xff, 0x78, 0xf, 0x1, 0xe0, + 0x3c, 0x7, 0xbc, 0xff, 0xdf, 0xff, 0xc7, 0xf8, + 0xf0, 0x1e, 0x3, 0xc0, 0x78, 0xf, 0xf1, 0xfe, + 0x3f, 0xc7, 0xf8, 0xf7, 0xfc, 0xff, 0x87, 0xc0, + + /* U+0036 "6" */ + 0x1f, 0xf, 0xf9, 0xff, 0x78, 0xff, 0x1f, 0xe3, + 0xfc, 0x7, 0x80, 0xf7, 0x9f, 0xfb, 0xff, 0xf8, + 0xff, 0x1f, 0xe3, 0xfc, 0x7f, 0x8f, 0xf1, 0xfe, + 0x3f, 0xc7, 0xf8, 0xf7, 0xfc, 0xff, 0x87, 0xc0, + + /* U+0037 "7" */ + 0xff, 0xff, 0xff, 0xff, 0x80, 0xf0, 0x1e, 0x3, + 0x80, 0xf0, 0x1e, 0x3, 0x80, 0xf0, 0x1e, 0x3, + 0xc0, 0x70, 0x1e, 0x3, 0xc0, 0x70, 0x1e, 0x3, + 0xc0, 0x78, 0xe, 0x3, 0xc0, 0x78, 0xe, 0x0, + + /* U+0038 "8" */ + 0x1f, 0xf, 0xf9, 0xff, 0x78, 0xff, 0x1f, 0xe3, + 0xfc, 0x7f, 0x8f, 0xf1, 0xcf, 0xf8, 0xfe, 0x3f, + 0xef, 0xbf, 0xe3, 0xfc, 0x7f, 0x8f, 0xf1, 0xfe, + 0x3f, 0xc7, 0xfd, 0xf7, 0xfc, 0xff, 0x87, 0xc0, + + /* U+0039 "9" */ + 0x1f, 0xf, 0xf9, 0xff, 0x78, 0xff, 0x1f, 0xe3, + 0xfc, 0x7f, 0x8f, 0xf1, 0xfe, 0x3f, 0xc7, 0xff, + 0xf7, 0xfe, 0x7b, 0xc0, 0x78, 0xf, 0x1, 0xfe, + 0x3f, 0xc7, 0xfd, 0xf7, 0xfc, 0xff, 0x87, 0xc0, + + /* U+003A ":" */ + 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, + + /* U+003B ";" */ + 0xff, 0xf0, 0x0, 0x0, 0x0, 0x0, 0xf, 0xff, + 0x76, 0xec, + + /* U+003C "<" */ + 0x0, 0x40, 0x70, 0x7c, 0xfc, 0xfc, 0x3c, 0xf, + 0x81, 0xfc, 0xf, 0xc0, 0xf0, 0xc, + + /* U+003D "=" */ + 0xff, 0xff, 0xff, 0xfc, 0x0, 0x0, 0x3f, 0xff, + 0xff, 0xff, + + /* U+003E ">" */ + 0x80, 0x38, 0xf, 0x80, 0xfc, 0xf, 0xc0, 0xf0, + 0x7c, 0xfe, 0xfc, 0x3c, 0xc, 0x0, + + /* U+003F "?" */ + 0x1f, 0xf, 0xf9, 0xff, 0x78, 0xff, 0x1f, 0xe3, + 0xfc, 0x7f, 0x8f, 0x3, 0xc0, 0x78, 0x1e, 0x7, + 0xc0, 0xf0, 0x3c, 0x7, 0x0, 0xe0, 0x1c, 0x0, + 0x0, 0x0, 0x0, 0x1, 0xc0, 0x38, 0x7, 0x0, + + /* U+0040 "@" */ + 0x0, 0xff, 0x0, 0x1f, 0xfe, 0x1, 0xff, 0xf8, + 0x1f, 0x3, 0xc1, 0xe0, 0xf, 0x1e, 0x0, 0x38, + 0xe0, 0x1, 0xee, 0x1e, 0xe7, 0x71, 0xf7, 0x3b, + 0x8f, 0xf9, 0xf8, 0x73, 0x8f, 0xc7, 0x1c, 0x7e, + 0x38, 0xe3, 0xf1, 0xc7, 0x1f, 0x8e, 0x39, 0xdc, + 0x71, 0xce, 0xe3, 0x8e, 0x77, 0x1f, 0xff, 0x3c, + 0xfb, 0xf0, 0xe3, 0xcf, 0x7, 0x80, 0x0, 0x1e, + 0x0, 0x40, 0xf8, 0xe, 0x3, 0xff, 0xf0, 0xf, + 0xff, 0x0, 0x1f, 0xe0, 0x0, + + /* U+0041 "A" */ + 0xf, 0x80, 0xf8, 0xf, 0x81, 0xf8, 0x1f, 0xc1, + 0xfc, 0x1d, 0xc1, 0xdc, 0x1d, 0xc1, 0xdc, 0x39, + 0xc3, 0x9e, 0x39, 0xe3, 0x8e, 0x38, 0xe3, 0x8e, + 0x7f, 0xe7, 0xff, 0x7f, 0xf7, 0xf, 0x70, 0x77, + 0x7, 0xf0, 0x70, + + /* U+0042 "B" */ + 0xff, 0x1f, 0xfb, 0xff, 0x79, 0xff, 0x1f, 0xe3, + 0xfc, 0x7f, 0x8f, 0xf1, 0xfe, 0x7b, 0xfe, 0x7f, + 0xcf, 0xfd, 0xe7, 0xfc, 0x7f, 0x8f, 0xf1, 0xfe, + 0x3f, 0xc7, 0xf8, 0xff, 0xfd, 0xff, 0xbf, 0xc0, + + /* U+0043 "C" */ + 0x1f, 0xf, 0xf9, 0xff, 0x78, 0xff, 0x1f, 0xe3, + 0xfc, 0x7f, 0x8f, 0xf0, 0x1e, 0x3, 0xc0, 0x78, + 0xf, 0x1, 0xe0, 0x3c, 0x7f, 0x8f, 0xf1, 0xfe, + 0x3f, 0xc7, 0xf8, 0xf7, 0xfc, 0xff, 0x87, 0xc0, + + /* U+0044 "D" */ + 0xff, 0x1f, 0xfb, 0xff, 0x78, 0xff, 0x1f, 0xe3, + 0xfc, 0x7f, 0x8f, 0xf1, 0xfe, 0x3f, 0xc7, 0xf8, + 0xff, 0x1f, 0xe3, 0xfc, 0x7f, 0x8f, 0xf1, 0xfe, + 0x3f, 0xc7, 0xf8, 0xff, 0xfd, 0xff, 0xbf, 0xc0, + + /* U+0045 "E" */ + 0xff, 0xff, 0xff, 0xff, 0xc0, 0xf0, 0x3c, 0xf, + 0x3, 0xc0, 0xf0, 0x3c, 0xf, 0xfb, 0xfe, 0xff, + 0xbc, 0xf, 0x3, 0xc0, 0xf0, 0x3c, 0xf, 0x3, + 0xc0, 0xff, 0xff, 0xff, 0xfc, + + /* U+0046 "F" */ + 0xff, 0xff, 0xff, 0xff, 0xc0, 0xf0, 0x3c, 0xf, + 0x3, 0xc0, 0xf0, 0x3c, 0xf, 0xf3, 0xfc, 0xff, + 0x3c, 0xf, 0x3, 0xc0, 0xf0, 0x3c, 0xf, 0x3, + 0xc0, 0xf0, 0x3c, 0xf, 0x0, + + /* U+0047 "G" */ + 0x1f, 0xf, 0xf9, 0xff, 0x78, 0xff, 0x1f, 0xe3, + 0xfc, 0x7f, 0x80, 0xf0, 0x1e, 0x3, 0xcf, 0xf9, + 0xff, 0x3f, 0xe3, 0xfc, 0x7f, 0x8f, 0xf1, 0xfe, + 0x3f, 0xc7, 0xf8, 0xf7, 0xfc, 0xff, 0x87, 0xc0, + + /* U+0048 "H" */ + 0xf1, 0xfe, 0x3f, 0xc7, 0xf8, 0xff, 0x1f, 0xe3, + 0xfc, 0x7f, 0x8f, 0xf1, 0xfe, 0x3f, 0xff, 0xff, + 0xff, 0xff, 0xe3, 0xfc, 0x7f, 0x8f, 0xf1, 0xfe, + 0x3f, 0xc7, 0xf8, 0xff, 0x1f, 0xe3, 0xfc, 0x78, + + /* U+0049 "I" */ + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf0, + + /* U+004A "J" */ + 0x1e, 0x3c, 0x78, 0xf1, 0xe3, 0xc7, 0x8f, 0x1e, + 0x3c, 0x78, 0xf1, 0xe3, 0xc7, 0x8f, 0x1e, 0x3c, + 0x79, 0xff, 0xdf, 0xbc, 0x0, + + /* U+004B "K" */ + 0xf0, 0xff, 0xe, 0xf1, 0xef, 0x1c, 0xf3, 0xcf, + 0x38, 0xf7, 0x8f, 0x70, 0xf7, 0xf, 0xf0, 0xff, + 0xf, 0xf8, 0xff, 0x8f, 0xb8, 0xfb, 0xcf, 0x3c, + 0xf1, 0xcf, 0x1c, 0xf1, 0xef, 0x1e, 0xf0, 0xef, + 0xf, 0xf0, 0xf0, + + /* U+004C "L" */ + 0xf0, 0x3c, 0xf, 0x3, 0xc0, 0xf0, 0x3c, 0xf, + 0x3, 0xc0, 0xf0, 0x3c, 0xf, 0x3, 0xc0, 0xf0, + 0x3c, 0xf, 0x3, 0xc0, 0xf0, 0x3c, 0xf, 0x3, + 0xc0, 0xff, 0xff, 0xff, 0xfc, + + /* U+004D "M" */ + 0xf8, 0x7f, 0xf0, 0xff, 0xe1, 0xff, 0xc3, 0xff, + 0x87, 0xff, 0x8f, 0xff, 0x3f, 0xfe, 0x7f, 0xfc, + 0xff, 0xd9, 0xbf, 0xb3, 0x7f, 0x66, 0xfe, 0xed, + 0xfd, 0xdb, 0xfb, 0xf7, 0xf7, 0xef, 0xe7, 0x9f, + 0xcf, 0x3f, 0x9e, 0x7f, 0x3c, 0xfe, 0x79, 0xfc, + 0xf3, 0xf9, 0xe7, 0x80, + + /* U+004E "N" */ + 0xf0, 0xff, 0x1f, 0xe3, 0xfc, 0x7f, 0xcf, 0xf9, + 0xff, 0x3f, 0xe7, 0xee, 0xfd, 0xdf, 0xbb, 0xf7, + 0x7e, 0x7f, 0xcf, 0xf9, 0xff, 0x1f, 0xe3, 0xfc, + 0x7f, 0x8f, 0xf0, 0xfe, 0x1f, 0xc3, 0xf8, 0x78, + + /* U+004F "O" */ + 0x1f, 0xf, 0xf9, 0xff, 0x78, 0xff, 0x1f, 0xe3, + 0xfc, 0x7f, 0x8f, 0xf1, 0xfe, 0x3f, 0xc7, 0xf8, + 0xff, 0x1f, 0xe3, 0xfc, 0x7f, 0x8f, 0xf1, 0xfe, + 0x3f, 0xc7, 0xf8, 0xf7, 0xfc, 0xff, 0x87, 0xc0, + + /* U+0050 "P" */ + 0xff, 0x1f, 0xfb, 0xff, 0x78, 0xff, 0x1f, 0xe3, + 0xfc, 0x7f, 0x8f, 0xf1, 0xfe, 0x3f, 0xc7, 0xff, + 0xef, 0xfd, 0xfe, 0x3c, 0x7, 0x80, 0xf0, 0x1e, + 0x3, 0xc0, 0x78, 0xf, 0x1, 0xe0, 0x3c, 0x0, + + /* U+0051 "Q" */ + 0x1f, 0x7, 0xfc, 0x7f, 0xcf, 0x1e, 0xf1, 0xef, + 0x1e, 0xf1, 0xef, 0x1e, 0xf1, 0xef, 0x1e, 0xf1, + 0xef, 0x1e, 0xf1, 0xef, 0x1e, 0xf1, 0xef, 0x1e, + 0xf1, 0xef, 0x1e, 0xf1, 0xef, 0x1e, 0x7f, 0xc7, + 0xfc, 0x1f, 0xf0, 0xf, 0x0, 0x70, + + /* U+0052 "R" */ + 0xff, 0x1f, 0xfb, 0xff, 0x79, 0xff, 0x1f, 0xe3, + 0xfc, 0x7f, 0x8f, 0xf1, 0xfe, 0x7b, 0xff, 0x7f, + 0xcf, 0xfd, 0xe7, 0xfc, 0x7f, 0x8f, 0xf1, 0xfe, + 0x3f, 0xc7, 0xf8, 0xff, 0x1f, 0xe3, 0xfc, 0x78, + + /* U+0053 "S" */ + 0x1f, 0xf, 0xf9, 0xff, 0x78, 0xff, 0x1f, 0xe3, + 0xfc, 0x7, 0xc0, 0x78, 0xf, 0x80, 0xfc, 0xf, + 0xc0, 0xf8, 0xf, 0x80, 0xf8, 0x1f, 0xf1, 0xfe, + 0x3f, 0xc7, 0xf8, 0xf7, 0xfc, 0xff, 0x87, 0xc0, + + /* U+0054 "T" */ + 0xff, 0xff, 0xff, 0xff, 0x8f, 0x1, 0xe0, 0x3c, + 0x7, 0x80, 0xf0, 0x1e, 0x3, 0xc0, 0x78, 0xf, + 0x1, 0xe0, 0x3c, 0x7, 0x80, 0xf0, 0x1e, 0x3, + 0xc0, 0x78, 0xf, 0x1, 0xe0, 0x3c, 0x7, 0x80, + + /* U+0055 "U" */ + 0xf1, 0xfe, 0x3f, 0xc7, 0xf8, 0xff, 0x1f, 0xe3, + 0xfc, 0x7f, 0x8f, 0xf1, 0xfe, 0x3f, 0xc7, 0xf8, + 0xff, 0x1f, 0xe3, 0xfc, 0x7f, 0x8f, 0xf1, 0xfe, + 0x3f, 0xc7, 0xf8, 0xf7, 0xfc, 0xff, 0x87, 0xc0, + + /* U+0056 "V" */ + 0xf0, 0x77, 0xf, 0x70, 0xe7, 0xe, 0x78, 0xe7, + 0x8e, 0x78, 0xe7, 0x8e, 0x39, 0xe3, 0x9c, 0x39, + 0xc3, 0x9c, 0x3d, 0xc3, 0xdc, 0x1d, 0xc1, 0xdc, + 0x1f, 0x81, 0xf8, 0x1f, 0x81, 0xf8, 0x1f, 0x80, + 0xf8, 0xf, 0x80, + + /* U+0057 "W" */ + 0x71, 0xe3, 0xb8, 0xf1, 0xdc, 0x78, 0xee, 0x3c, + 0x77, 0x1e, 0x3b, 0x8f, 0x9d, 0xc7, 0xce, 0xf7, + 0xe7, 0x7b, 0xf3, 0xbd, 0xfb, 0x8e, 0xfd, 0xc7, + 0x76, 0xe3, 0xbb, 0x71, 0xd9, 0xb8, 0xec, 0xdc, + 0x76, 0x6e, 0x3b, 0x3f, 0x1d, 0x9f, 0x8f, 0xcf, + 0xc7, 0xe7, 0xc1, 0xf3, 0xe0, 0xf8, 0xf0, 0x78, + 0x78, + + /* U+0058 "X" */ + 0x70, 0x73, 0xc3, 0x9e, 0x3c, 0x71, 0xc3, 0xce, + 0x1e, 0xf0, 0x77, 0x3, 0xf8, 0x1f, 0xc0, 0x7c, + 0x3, 0xe0, 0x1f, 0x0, 0xf8, 0x7, 0xc0, 0x7f, + 0x3, 0xb8, 0x1d, 0xc1, 0xcf, 0xe, 0x78, 0x71, + 0xc7, 0x8f, 0x38, 0x79, 0xc1, 0xc0, + + /* U+0059 "Y" */ + 0xf0, 0x7f, 0xf, 0x70, 0xe7, 0x8e, 0x79, 0xe3, + 0x9c, 0x3d, 0xc3, 0xfc, 0x3f, 0xc1, 0xf8, 0x1f, + 0x81, 0xf8, 0xf, 0x0, 0xf0, 0xf, 0x0, 0xf0, + 0xf, 0x0, 0xf0, 0xf, 0x0, 0xf0, 0xf, 0x0, + 0xf0, 0xf, 0x0, + + /* U+005A "Z" */ + 0xff, 0xff, 0xff, 0xfc, 0xf, 0x3, 0x81, 0xe0, + 0x78, 0x1c, 0xf, 0x3, 0xc1, 0xe0, 0x78, 0x1c, + 0xf, 0x3, 0xc0, 0xe0, 0x78, 0x1c, 0x7, 0x3, + 0xc0, 0xff, 0xff, 0xff, 0xfc, + + /* U+005B "[" */ + 0xff, 0xff, 0xfc, 0xf3, 0xcf, 0x3c, 0xf3, 0xcf, + 0x3c, 0xf3, 0xcf, 0x3c, 0xf3, 0xcf, 0x3c, 0xf3, + 0xcf, 0x3f, 0xff, 0xf0, + + /* U+005C "\\" */ + 0xf0, 0x7, 0x0, 0x70, 0x3, 0x80, 0x38, 0x3, + 0x80, 0x1c, 0x1, 0xc0, 0xe, 0x0, 0xe0, 0xe, + 0x0, 0x70, 0x7, 0x0, 0x78, 0x3, 0x80, 0x38, + 0x1, 0xc0, 0x1c, 0x1, 0xc0, 0xe, 0x0, 0xe0, + 0x7, 0x0, 0x70, + + /* U+005D "]" */ + 0xff, 0xff, 0xf8, 0xf1, 0xe3, 0xc7, 0x8f, 0x1e, + 0x3c, 0x78, 0xf1, 0xe3, 0xc7, 0x8f, 0x1e, 0x3c, + 0x78, 0xf1, 0xe3, 0xc7, 0xff, 0xff, 0xfc, + + /* U+005E "^" */ + 0xe, 0x1, 0xc0, 0x7c, 0xf, 0x83, 0xb8, 0xe7, + 0x1c, 0x77, 0xe, 0xe0, 0xe0, + + /* U+005F "_" */ + 0xff, 0xff, 0xff, 0xfc, + + /* U+0060 "`" */ + 0xf0, 0xe1, 0xc0, + + /* U+0061 "a" */ + 0xf, 0x80, 0xf8, 0xf, 0x81, 0xf8, 0x1f, 0xc1, + 0xfc, 0x1d, 0xc1, 0xdc, 0x1d, 0xc1, 0xdc, 0x39, + 0xc3, 0x9e, 0x39, 0xe3, 0x8e, 0x38, 0xe3, 0x8e, + 0x7f, 0xe7, 0xff, 0x7f, 0xf7, 0xf, 0x70, 0x77, + 0x7, 0xf0, 0x70, + + /* U+0062 "b" */ + 0xff, 0x1f, 0xfb, 0xff, 0x79, 0xff, 0x1f, 0xe3, + 0xfc, 0x7f, 0x8f, 0xf1, 0xfe, 0x7b, 0xfe, 0x7f, + 0xcf, 0xfd, 0xe7, 0xfc, 0x7f, 0x8f, 0xf1, 0xfe, + 0x3f, 0xc7, 0xf8, 0xff, 0xfd, 0xff, 0xbf, 0xc0, + + /* U+0063 "c" */ + 0x1f, 0xf, 0xf9, 0xff, 0x78, 0xff, 0x1f, 0xe3, + 0xfc, 0x7f, 0x8f, 0xf0, 0x1e, 0x3, 0xc0, 0x78, + 0xf, 0x1, 0xe0, 0x3c, 0x7f, 0x8f, 0xf1, 0xfe, + 0x3f, 0xc7, 0xf8, 0xf7, 0xfc, 0xff, 0x87, 0xc0, + + /* U+0064 "d" */ + 0xff, 0x1f, 0xfb, 0xff, 0x78, 0xff, 0x1f, 0xe3, + 0xfc, 0x7f, 0x8f, 0xf1, 0xfe, 0x3f, 0xc7, 0xf8, + 0xff, 0x1f, 0xe3, 0xfc, 0x7f, 0x8f, 0xf1, 0xfe, + 0x3f, 0xc7, 0xf8, 0xff, 0xfd, 0xff, 0xbf, 0xc0, + + /* U+0065 "e" */ + 0xff, 0xff, 0xff, 0xff, 0xc0, 0xf0, 0x3c, 0xf, + 0x3, 0xc0, 0xf0, 0x3c, 0xf, 0xfb, 0xfe, 0xff, + 0xbc, 0xf, 0x3, 0xc0, 0xf0, 0x3c, 0xf, 0x3, + 0xc0, 0xff, 0xff, 0xff, 0xfc, + + /* U+0066 "f" */ + 0xff, 0xff, 0xff, 0xff, 0xc0, 0xf0, 0x3c, 0xf, + 0x3, 0xc0, 0xf0, 0x3c, 0xf, 0xf3, 0xfc, 0xff, + 0x3c, 0xf, 0x3, 0xc0, 0xf0, 0x3c, 0xf, 0x3, + 0xc0, 0xf0, 0x3c, 0xf, 0x0, + + /* U+0067 "g" */ + 0x1f, 0xf, 0xf9, 0xff, 0x78, 0xff, 0x1f, 0xe3, + 0xfc, 0x7f, 0x80, 0xf0, 0x1e, 0x3, 0xcf, 0xf9, + 0xff, 0x3f, 0xe3, 0xfc, 0x7f, 0x8f, 0xf1, 0xfe, + 0x3f, 0xc7, 0xf8, 0xf7, 0xfc, 0xff, 0x87, 0xc0, + + /* U+0068 "h" */ + 0xf1, 0xfe, 0x3f, 0xc7, 0xf8, 0xff, 0x1f, 0xe3, + 0xfc, 0x7f, 0x8f, 0xf1, 0xfe, 0x3f, 0xff, 0xff, + 0xff, 0xff, 0xe3, 0xfc, 0x7f, 0x8f, 0xf1, 0xfe, + 0x3f, 0xc7, 0xf8, 0xff, 0x1f, 0xe3, 0xfc, 0x78, + + /* U+0069 "i" */ + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf0, + + /* U+006A "j" */ + 0x1e, 0x3c, 0x78, 0xf1, 0xe3, 0xc7, 0x8f, 0x1e, + 0x3c, 0x78, 0xf1, 0xe3, 0xc7, 0x8f, 0x1e, 0x3c, + 0x79, 0xff, 0xdf, 0xbc, 0x0, + + /* U+006B "k" */ + 0xf0, 0xff, 0xe, 0xf1, 0xef, 0x1c, 0xf3, 0xcf, + 0x38, 0xf7, 0x8f, 0x70, 0xf7, 0xf, 0xf0, 0xff, + 0xf, 0xf8, 0xff, 0x8f, 0xb8, 0xfb, 0xcf, 0x3c, + 0xf1, 0xcf, 0x1c, 0xf1, 0xef, 0x1e, 0xf0, 0xef, + 0xf, 0xf0, 0xf0, + + /* U+006C "l" */ + 0xf0, 0x3c, 0xf, 0x3, 0xc0, 0xf0, 0x3c, 0xf, + 0x3, 0xc0, 0xf0, 0x3c, 0xf, 0x3, 0xc0, 0xf0, + 0x3c, 0xf, 0x3, 0xc0, 0xf0, 0x3c, 0xf, 0x3, + 0xc0, 0xff, 0xff, 0xff, 0xfc, + + /* U+006D "m" */ + 0xf8, 0x7f, 0xf0, 0xff, 0xe1, 0xff, 0xc3, 0xff, + 0x87, 0xff, 0x8f, 0xff, 0x3f, 0xfe, 0x7f, 0xfc, + 0xff, 0xd9, 0xbf, 0xb3, 0x7f, 0x66, 0xfe, 0xed, + 0xfd, 0xdb, 0xfb, 0xf7, 0xf7, 0xef, 0xe7, 0x9f, + 0xcf, 0x3f, 0x9e, 0x7f, 0x3c, 0xfe, 0x79, 0xfc, + 0xf3, 0xf9, 0xe7, 0x80, + + /* U+006E "n" */ + 0xf0, 0xff, 0x1f, 0xe3, 0xfc, 0x7f, 0xcf, 0xf9, + 0xff, 0x3f, 0xe7, 0xee, 0xfd, 0xdf, 0xbb, 0xf7, + 0x7e, 0x7f, 0xcf, 0xf9, 0xff, 0x1f, 0xe3, 0xfc, + 0x7f, 0x8f, 0xf0, 0xfe, 0x1f, 0xc3, 0xf8, 0x78, + + /* U+006F "o" */ + 0x1f, 0xf, 0xf9, 0xff, 0x78, 0xff, 0x1f, 0xe3, + 0xfc, 0x7f, 0x8f, 0xf1, 0xfe, 0x3f, 0xc7, 0xf8, + 0xff, 0x1f, 0xe3, 0xfc, 0x7f, 0x8f, 0xf1, 0xfe, + 0x3f, 0xc7, 0xf8, 0xf7, 0xfc, 0xff, 0x87, 0xc0, + + /* U+0070 "p" */ + 0xff, 0x1f, 0xfb, 0xff, 0x78, 0xff, 0x1f, 0xe3, + 0xfc, 0x7f, 0x8f, 0xf1, 0xfe, 0x3f, 0xc7, 0xff, + 0xef, 0xfd, 0xfe, 0x3c, 0x7, 0x80, 0xf0, 0x1e, + 0x3, 0xc0, 0x78, 0xf, 0x1, 0xe0, 0x3c, 0x0, + + /* U+0071 "q" */ + 0x1f, 0x7, 0xfc, 0x7f, 0xcf, 0x1e, 0xf1, 0xef, + 0x1e, 0xf1, 0xef, 0x1e, 0xf1, 0xef, 0x1e, 0xf1, + 0xef, 0x1e, 0xf1, 0xef, 0x1e, 0xf1, 0xef, 0x1e, + 0xf1, 0xef, 0x1e, 0xf1, 0xef, 0x1e, 0x7f, 0xc7, + 0xfc, 0x1f, 0xf0, 0xf, 0x0, 0x70, + + /* U+0072 "r" */ + 0xff, 0x1f, 0xfb, 0xff, 0x79, 0xff, 0x1f, 0xe3, + 0xfc, 0x7f, 0x8f, 0xf1, 0xfe, 0x7b, 0xff, 0x7f, + 0xcf, 0xfd, 0xe7, 0xfc, 0x7f, 0x8f, 0xf1, 0xfe, + 0x3f, 0xc7, 0xf8, 0xff, 0x1f, 0xe3, 0xfc, 0x78, + + /* U+0073 "s" */ + 0x1f, 0xf, 0xf9, 0xff, 0x78, 0xff, 0x1f, 0xe3, + 0xfc, 0x7, 0xc0, 0x78, 0xf, 0x80, 0xfc, 0xf, + 0xc0, 0xf8, 0xf, 0x80, 0xf8, 0x1f, 0xf1, 0xfe, + 0x3f, 0xc7, 0xf8, 0xf7, 0xfc, 0xff, 0x87, 0xc0, + + /* U+0074 "t" */ + 0xff, 0xff, 0xff, 0xff, 0x8f, 0x1, 0xe0, 0x3c, + 0x7, 0x80, 0xf0, 0x1e, 0x3, 0xc0, 0x78, 0xf, + 0x1, 0xe0, 0x3c, 0x7, 0x80, 0xf0, 0x1e, 0x3, + 0xc0, 0x78, 0xf, 0x1, 0xe0, 0x3c, 0x7, 0x80, + + /* U+0075 "u" */ + 0xf1, 0xfe, 0x3f, 0xc7, 0xf8, 0xff, 0x1f, 0xe3, + 0xfc, 0x7f, 0x8f, 0xf1, 0xfe, 0x3f, 0xc7, 0xf8, + 0xff, 0x1f, 0xe3, 0xfc, 0x7f, 0x8f, 0xf1, 0xfe, + 0x3f, 0xc7, 0xf8, 0xf7, 0xfc, 0xff, 0x87, 0xc0, + + /* U+0076 "v" */ + 0xf0, 0x77, 0xf, 0x70, 0xe7, 0xe, 0x78, 0xe7, + 0x8e, 0x78, 0xe7, 0x8e, 0x39, 0xe3, 0x9c, 0x39, + 0xc3, 0x9c, 0x3d, 0xc3, 0xdc, 0x1d, 0xc1, 0xdc, + 0x1f, 0x81, 0xf8, 0x1f, 0x81, 0xf8, 0x1f, 0x80, + 0xf8, 0xf, 0x80, + + /* U+0077 "w" */ + 0x71, 0xe3, 0xb8, 0xf1, 0xdc, 0x78, 0xee, 0x3c, + 0x77, 0x1e, 0x3b, 0x8f, 0x9d, 0xc7, 0xce, 0xf7, + 0xe7, 0x7b, 0xf3, 0xbd, 0xfb, 0x8e, 0xfd, 0xc7, + 0x76, 0xe3, 0xbb, 0x71, 0xd9, 0xb8, 0xec, 0xdc, + 0x76, 0x6e, 0x3b, 0x3f, 0x1d, 0x9f, 0x8f, 0xcf, + 0xc7, 0xe7, 0xc1, 0xf3, 0xe0, 0xf8, 0xf0, 0x78, + 0x78, + + /* U+0078 "x" */ + 0x70, 0x73, 0xc3, 0x9e, 0x3c, 0x71, 0xc3, 0xce, + 0x1e, 0xf0, 0x77, 0x3, 0xf8, 0x1f, 0xc0, 0x7c, + 0x3, 0xe0, 0x1f, 0x0, 0xf8, 0x7, 0xc0, 0x7f, + 0x3, 0xb8, 0x1d, 0xc1, 0xcf, 0xe, 0x78, 0x71, + 0xc7, 0x8f, 0x38, 0x79, 0xc1, 0xc0, + + /* U+0079 "y" */ + 0xf0, 0x7f, 0xf, 0x70, 0xe7, 0x8e, 0x79, 0xe3, + 0x9c, 0x3d, 0xc3, 0xfc, 0x3f, 0xc1, 0xf8, 0x1f, + 0x81, 0xf8, 0xf, 0x0, 0xf0, 0xf, 0x0, 0xf0, + 0xf, 0x0, 0xf0, 0xf, 0x0, 0xf0, 0xf, 0x0, + 0xf0, 0xf, 0x0, + + /* U+007A "z" */ + 0xff, 0xff, 0xff, 0xfc, 0xf, 0x3, 0x81, 0xe0, + 0x78, 0x1c, 0xf, 0x3, 0xc1, 0xe0, 0x78, 0x1c, + 0xf, 0x3, 0xc0, 0xe0, 0x78, 0x1c, 0x7, 0x3, + 0xc0, 0xff, 0xff, 0xff, 0xfc, + + /* U+007B "{" */ + 0xf, 0x1f, 0x3f, 0x3c, 0x38, 0x38, 0x38, 0x38, + 0x38, 0x38, 0x38, 0x38, 0xf0, 0xe0, 0xf8, 0x38, + 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x38, 0x3f, + 0x3f, 0xf, + + /* U+007C "|" */ + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, + + /* U+007D "}" */ + 0xf1, 0xe3, 0xe1, 0xc3, 0x87, 0xe, 0x1c, 0x38, + 0x70, 0xe1, 0xc1, 0xe1, 0xcf, 0x9c, 0x38, 0x70, + 0xe1, 0xc3, 0x87, 0xe, 0x7c, 0xf9, 0xe0, + + /* U+007E "~" */ + 0x1c, 0x23, 0xe7, 0x7f, 0xfe, 0x7e, 0x61, 0xc0 +}; + + +/*--------------------- + * GLYPH DESCRIPTION + *--------------------*/ + +static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { + {.bitmap_index = 0, .adv_w = 0, .box_w = 0, .box_h = 0, .ofs_x = 0, .ofs_y = 0} /* id = 0 reserved */, + {.bitmap_index = 0, .adv_w = 82, .box_w = 1, .box_h = 1, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1, .adv_w = 108, .box_w = 3, .box_h = 23, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 10, .adv_w = 172, .box_w = 9, .box_h = 7, .ofs_x = 1, .ofs_y = 16}, + {.bitmap_index = 18, .adv_w = 211, .box_w = 12, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 53, .adv_w = 205, .box_w = 11, .box_h = 26, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 89, .adv_w = 302, .box_w = 16, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 135, .adv_w = 214, .box_w = 12, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 170, .adv_w = 96, .box_w = 4, .box_h = 7, .ofs_x = 1, .ofs_y = 16}, + {.bitmap_index = 174, .adv_w = 141, .box_w = 6, .box_h = 26, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 194, .adv_w = 141, .box_w = 7, .box_h = 26, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 217, .adv_w = 216, .box_w = 13, .box_h = 12, .ofs_x = 0, .ofs_y = 11}, + {.bitmap_index = 237, .adv_w = 205, .box_w = 11, .box_h = 11, .ofs_x = 1, .ofs_y = 6}, + {.bitmap_index = 253, .adv_w = 96, .box_w = 4, .box_h = 7, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 257, .adv_w = 138, .box_w = 7, .box_h = 3, .ofs_x = 1, .ofs_y = 10}, + {.bitmap_index = 260, .adv_w = 96, .box_w = 4, .box_h = 3, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 262, .adv_w = 199, .box_w = 12, .box_h = 23, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 297, .adv_w = 205, .box_w = 11, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 329, .adv_w = 205, .box_w = 8, .box_h = 23, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 352, .adv_w = 205, .box_w = 11, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 384, .adv_w = 205, .box_w = 11, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 416, .adv_w = 205, .box_w = 12, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 451, .adv_w = 205, .box_w = 11, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 483, .adv_w = 205, .box_w = 11, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 515, .adv_w = 205, .box_w = 11, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 547, .adv_w = 205, .box_w = 11, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 579, .adv_w = 205, .box_w = 11, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 611, .adv_w = 96, .box_w = 4, .box_h = 16, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 619, .adv_w = 96, .box_w = 4, .box_h = 20, .ofs_x = 1, .ofs_y = -4}, + {.bitmap_index = 629, .adv_w = 205, .box_w = 10, .box_h = 11, .ofs_x = 1, .ofs_y = 6}, + {.bitmap_index = 643, .adv_w = 205, .box_w = 10, .box_h = 8, .ofs_x = 1, .ofs_y = 7}, + {.bitmap_index = 653, .adv_w = 205, .box_w = 10, .box_h = 11, .ofs_x = 2, .ofs_y = 6}, + {.bitmap_index = 667, .adv_w = 186, .box_w = 11, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 699, .adv_w = 356, .box_w = 21, .box_h = 26, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 768, .adv_w = 205, .box_w = 12, .box_h = 23, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 803, .adv_w = 207, .box_w = 11, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 835, .adv_w = 196, .box_w = 11, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 867, .adv_w = 208, .box_w = 11, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 899, .adv_w = 186, .box_w = 10, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 928, .adv_w = 176, .box_w = 10, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 957, .adv_w = 200, .box_w = 11, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 989, .adv_w = 215, .box_w = 11, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1021, .adv_w = 98, .box_w = 4, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1033, .adv_w = 136, .box_w = 7, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1054, .adv_w = 212, .box_w = 12, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1089, .adv_w = 176, .box_w = 10, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1118, .adv_w = 275, .box_w = 15, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1162, .adv_w = 219, .box_w = 11, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1194, .adv_w = 205, .box_w = 11, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1226, .adv_w = 198, .box_w = 11, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1258, .adv_w = 205, .box_w = 12, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 1296, .adv_w = 206, .box_w = 11, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1328, .adv_w = 190, .box_w = 11, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1360, .adv_w = 186, .box_w = 11, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1392, .adv_w = 206, .box_w = 11, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1424, .adv_w = 196, .box_w = 12, .box_h = 23, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1459, .adv_w = 285, .box_w = 17, .box_h = 23, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1508, .adv_w = 208, .box_w = 13, .box_h = 23, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1546, .adv_w = 202, .box_w = 12, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1581, .adv_w = 185, .box_w = 10, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1610, .adv_w = 141, .box_w = 6, .box_h = 26, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 1630, .adv_w = 199, .box_w = 12, .box_h = 23, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1665, .adv_w = 141, .box_w = 7, .box_h = 26, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 1688, .adv_w = 205, .box_w = 11, .box_h = 9, .ofs_x = 1, .ofs_y = 14}, + {.bitmap_index = 1701, .adv_w = 154, .box_w = 10, .box_h = 3, .ofs_x = 0, .ofs_y = -3}, + {.bitmap_index = 1705, .adv_w = 256, .box_w = 6, .box_h = 3, .ofs_x = 4, .ofs_y = 24}, + {.bitmap_index = 1708, .adv_w = 205, .box_w = 12, .box_h = 23, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1743, .adv_w = 207, .box_w = 11, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1775, .adv_w = 196, .box_w = 11, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1807, .adv_w = 208, .box_w = 11, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1839, .adv_w = 186, .box_w = 10, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1868, .adv_w = 176, .box_w = 10, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1897, .adv_w = 200, .box_w = 11, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1929, .adv_w = 215, .box_w = 11, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1961, .adv_w = 98, .box_w = 4, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1973, .adv_w = 136, .box_w = 7, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1994, .adv_w = 212, .box_w = 12, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2029, .adv_w = 176, .box_w = 10, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2058, .adv_w = 275, .box_w = 15, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2102, .adv_w = 219, .box_w = 11, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2134, .adv_w = 205, .box_w = 11, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2166, .adv_w = 198, .box_w = 11, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2198, .adv_w = 205, .box_w = 12, .box_h = 25, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 2236, .adv_w = 206, .box_w = 11, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2268, .adv_w = 190, .box_w = 11, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2300, .adv_w = 186, .box_w = 11, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2332, .adv_w = 206, .box_w = 11, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2364, .adv_w = 196, .box_w = 12, .box_h = 23, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 2399, .adv_w = 285, .box_w = 17, .box_h = 23, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 2448, .adv_w = 208, .box_w = 13, .box_h = 23, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 2486, .adv_w = 202, .box_w = 12, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2521, .adv_w = 185, .box_w = 10, .box_h = 23, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2550, .adv_w = 141, .box_w = 8, .box_h = 26, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 2576, .adv_w = 256, .box_w = 3, .box_h = 32, .ofs_x = 7, .ofs_y = -6}, + {.bitmap_index = 2588, .adv_w = 141, .box_w = 7, .box_h = 26, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 2611, .adv_w = 205, .box_w = 12, .box_h = 5, .ofs_x = 0, .ofs_y = 9} +}; + +/*--------------------- + * CHARACTER MAPPING + *--------------------*/ + + + +/*Collect the unicode lists and glyph_id offsets*/ +static const lv_font_fmt_txt_cmap_t cmaps[] = +{ + { + .range_start = 32, .range_length = 95, .glyph_id_start = 1, + .unicode_list = NULL, .glyph_id_ofs_list = NULL, .list_length = 0, .type = LV_FONT_FMT_TXT_CMAP_FORMAT0_TINY + } +}; + +/*----------------- + * KERNING + *----------------*/ + + +/*Map glyph_ids to kern left classes*/ +static const uint8_t kern_left_class_mapping[] = +{ + 0, 0, 0, 0, 0, 0, 0, 1, + 0, 2, 0, 0, 0, 0, 3, 0, + 4, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 5, 6, 7, 8, 9, 10, 11, + 12, 0, 0, 13, 14, 15, 0, 0, + 9, 16, 9, 17, 18, 19, 20, 21, + 22, 23, 24, 25, 2, 0, 0, 0, + 0, 0, 6, 7, 8, 9, 10, 11, + 12, 0, 0, 0, 14, 15, 0, 0, + 9, 16, 9, 17, 18, 19, 20, 21, + 22, 23, 24, 25, 2, 0, 0, 0 +}; + +/*Map glyph_ids to kern right classes*/ +static const uint8_t kern_right_class_mapping[] = +{ + 0, 0, 0, 1, 0, 0, 0, 2, + 1, 0, 3, 4, 0, 5, 6, 5, + 7, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 8, 8, 0, 0, 0, + 9, 10, 11, 0, 12, 0, 0, 0, + 12, 0, 0, 13, 0, 0, 0, 0, + 12, 0, 12, 0, 14, 15, 16, 17, + 18, 19, 20, 21, 0, 0, 3, 0, + 0, 0, 11, 0, 12, 0, 0, 0, + 12, 0, 0, 0, 0, 0, 0, 0, + 12, 0, 12, 0, 14, 15, 16, 17, + 18, 19, 20, 21, 0, 0, 3, 0 +}; + +/*Kern values between classes*/ +static const int8_t kern_class_values[] = +{ + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, -5, 0, + 0, 0, 0, -7, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 5, + 0, 5, 0, 8, 0, 5, 5, 3, + 5, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -10, 0, -32, 0, + -37, 0, -10, -4, -18, -26, -8, 0, + 0, 0, 0, 0, 0, -72, 0, 0, + 0, -13, 0, -23, 0, 5, 0, 5, + 5, 0, 3, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, -8, 0, + -5, 0, 0, 0, 0, 0, -10, -8, + 0, -27, 0, 5, -23, 5, -10, 5, + 5, -15, -3, 3, -1, 0, -2, -24, + -1, -14, -7, 1, -24, 2, -3, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, -2, -1, + -4, -8, 0, 0, 0, 0, 3, 0, + 0, 0, 0, 3, 3, 0, 1, 0, + 1, 0, 0, 0, 0, -4, -5, 0, + -3, 0, 0, 0, -3, 0, 0, 0, + 0, 0, -1, 0, -2, 0, -2, 0, + -1, 0, -8, -9, 0, 0, 0, 5, + 0, 3, 0, 0, 0, 0, 0, 0, + 0, 0, 1, 0, 0, 0, 0, 1, + 0, 1, 5, 0, 8, 5, -37, -3, + -15, 0, 3, -3, -16, 0, -26, 0, + 5, 0, 3, 3, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, -7, -8, 0, 0, 0, 0, 0, + -1, 0, -5, 0, 0, 0, -1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, -3, 3, -10, 3, -18, 0, + 3, -5, -4, 0, -8, 0, -4, 0, + -1, 0, 0, 0, 0, 0, -37, 5, + 8, -51, 5, -37, 5, 5, -23, 0, + 2, -2, 5, 0, -40, 0, -24, -9, + 0, -45, 0, 0, 0, 0, 5, -48, + 0, -33, 0, 5, 0, -18, 0, -29, + 2, 1, 0, 0, 0, -6, -3, -1, + -3, 0, 0, 0, 3, 0, 5, 3, + 0, 0, 0, 0, 0, 0, -1, 0, + -2, -1, 0, -8, 0, 0, 0, 0, + 0, 0, -2, 0, 0, 0, 0, -2, + 0, 0, 0, 0, 0, 0, 0, -3, + -3, 0, 5, 0, 8, 5, -37, -37, + -23, -18, 3, -13, -24, -2, -26, 0, + 5, 0, 2, 2, 0, 2, 0, 0, + 0, 0, 0, -1, 0, -5, 0, 0, + 0, -1, 0, 0, 0, 0, 0, 0, + 0, -1, 0, 0, 5, -3, 5, 0, + -27, -10, -13, -8, 0, -5, -14, -1, + -25, 0, 2, 0, 3, 3, 0, 0, + 0, 5, 0, 5, 0, -13, -4, 0, + -3, 0, -3, -7, 0, -11, 0, 2, + 0, 3, 3, 0, 0, 0, 0, -3, + 3, -10, 3, -18, 5, 3, -5, -4, + 1, -8, 0, -3, 0, -1, 0, 0, + 0, 0, 0, 5, -10, 5, -5, -48, + -26, -28, -20, -5, -20, -24, -9, -30, + -8, 2, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 5, -8, 0, 5, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 3 +}; + + +/*Collect the kern class' data in one place*/ +static const lv_font_fmt_txt_kern_classes_t kern_classes = +{ + .class_pair_values = kern_class_values, + .left_class_mapping = kern_left_class_mapping, + .right_class_mapping = kern_right_class_mapping, + .left_class_cnt = 25, + .right_class_cnt = 21, +}; + +/*-------------------- + * ALL CUSTOM DATA + *--------------------*/ + +#if LV_VERSION_CHECK(8, 0, 0) +/*Store all the custom data of the font*/ +static lv_font_fmt_txt_glyph_cache_t cache; +static const lv_font_fmt_txt_dsc_t font_dsc = { +#else +static lv_font_fmt_txt_dsc_t font_dsc = { +#endif + .glyph_bitmap = glyph_bitmap, + .glyph_dsc = glyph_dsc, + .cmaps = cmaps, + .kern_dsc = &kern_classes, + .kern_scale = 16, + .cmap_num = 1, + .bpp = 1, + .kern_classes = 1, + .bitmap_format = 0, +#if LV_VERSION_CHECK(8, 0, 0) + .cache = &cache +#endif +}; + + +/*----------------- + * PUBLIC FONT + *----------------*/ + +/*Initialize a public general font descriptor*/ +#if LV_VERSION_CHECK(8, 0, 0) +const lv_font_t bebas_neue_32 = { +#else +lv_font_t bebas_neue_32 = { +#endif + .get_glyph_dsc = lv_font_get_glyph_dsc_fmt_txt, /*Function pointer to get glyph's data*/ + .get_glyph_bitmap = lv_font_get_bitmap_fmt_txt, /*Function pointer to get glyph's bitmap*/ + .line_height = 33, /*The maximum line height required by the font*/ + .base_line = 6, /*Baseline measured from the bottom of the line*/ +#if !(LVGL_VERSION_MAJOR == 6 && LVGL_VERSION_MINOR == 0) + .subpx = LV_FONT_SUBPX_NONE, +#endif +#if LV_VERSION_CHECK(7, 4, 0) || LVGL_VERSION_MAJOR >= 8 + .underline_position = -1, + .underline_thickness = 3, +#endif + .dsc = &font_dsc /*The custom font data. Will be accessed by `get_glyph_bitmap/dsc` */ +}; + + + +#endif /*#if BEBAS_NEUE_32*/ + diff --git a/main/assets/fonts/bebas_neue/bebas_neue_40.c b/main/assets/fonts/bebas_neue/bebas_neue_40.c new file mode 100644 index 0000000..00f1a73 --- /dev/null +++ b/main/assets/fonts/bebas_neue/bebas_neue_40.c @@ -0,0 +1,1042 @@ +/******************************************************************************* + * Size: 40 px + * Bpp: 1 + * Opts: + ******************************************************************************/ + +#ifdef LV_LVGL_H_INCLUDE_SIMPLE +#include "lvgl.h" +#else +#include "lvgl/lvgl.h" +#endif + +#ifndef BEBAS_NEUE_40 +#define BEBAS_NEUE_40 1 +#endif + +#if BEBAS_NEUE_40 + +/*----------------- + * BITMAPS + *----------------*/ + +/*Store the image of the glyphs*/ +static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { + /* U+0020 " " */ + 0x0, + + /* U+0021 "!" */ + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf0, 0x0, 0xf, 0xff, 0xf0, + + /* U+0022 "\"" */ + 0xf7, 0xfc, 0xff, 0x3f, 0xcf, 0xe3, 0xb8, 0xee, + 0x3b, 0x8e, 0xe3, 0x80, + + /* U+0023 "#" */ + 0xe, 0x38, 0x1c, 0x70, 0x78, 0xe0, 0xf1, 0xc1, + 0xe3, 0x83, 0xcf, 0x7, 0x9e, 0x3f, 0xff, 0x7f, + 0xfe, 0xff, 0xfc, 0x71, 0xc0, 0xe3, 0x83, 0xc7, + 0x7, 0x8e, 0xf, 0x1c, 0x1e, 0x78, 0x3c, 0xf0, + 0x71, 0xe3, 0xff, 0xf7, 0xff, 0xef, 0xff, 0x87, + 0x1c, 0x1e, 0x38, 0x3c, 0x70, 0x78, 0xe0, 0xf3, + 0xc1, 0xe7, 0x83, 0x8f, 0x7, 0x1e, 0x0, + + /* U+0024 "$" */ + 0x7, 0x80, 0x3c, 0x3, 0xf0, 0x7f, 0xc7, 0xff, + 0x3f, 0xfb, 0xe3, 0xfe, 0xf, 0xf0, 0x7f, 0x83, + 0xfc, 0x1, 0xf0, 0x7, 0xc0, 0x1f, 0x0, 0xfe, + 0x3, 0xf8, 0x7, 0xe0, 0x1f, 0x80, 0x7c, 0x1, + 0xff, 0x7, 0xf8, 0x3f, 0xc1, 0xfe, 0xf, 0xf8, + 0xfb, 0xff, 0xdf, 0xfc, 0x7f, 0xe1, 0xfc, 0x3, + 0xc0, 0x1e, 0x0, 0xf0, + + /* U+0025 "%" */ + 0x3e, 0x3, 0x83, 0xf8, 0x1c, 0x38, 0xe1, 0xc1, + 0xc7, 0xe, 0xe, 0x38, 0x70, 0x71, 0xc7, 0x3, + 0x8e, 0x38, 0x1c, 0x71, 0xc0, 0xe3, 0x9c, 0x7, + 0x1c, 0xe0, 0x38, 0xee, 0x1, 0xc7, 0x70, 0xe, + 0x3b, 0x80, 0x71, 0xf9, 0xf1, 0xfd, 0xdf, 0xc7, + 0xcf, 0xc7, 0x0, 0xee, 0x38, 0x7, 0x71, 0xc0, + 0x3b, 0x8e, 0x3, 0x9c, 0x70, 0x1c, 0xe3, 0x81, + 0xc7, 0x1c, 0xe, 0x38, 0xe0, 0x71, 0xc7, 0x7, + 0xe, 0x38, 0x38, 0x71, 0xc1, 0xc3, 0x8e, 0x1c, + 0xf, 0xe0, 0xe0, 0x3e, 0x0, + + /* U+0026 "&" */ + 0xf, 0xf0, 0x7f, 0xe1, 0xff, 0xc3, 0xff, 0x8f, + 0x80, 0x1e, 0x0, 0x3c, 0x0, 0x78, 0x0, 0xf0, + 0x1, 0xe0, 0xf3, 0xc1, 0xe3, 0xc3, 0xc7, 0xff, + 0xe7, 0xff, 0xcf, 0xff, 0xbf, 0xff, 0xf8, 0x79, + 0xe0, 0xf3, 0xc1, 0xe7, 0x83, 0xcf, 0x7, 0x9e, + 0xf, 0x3c, 0x1e, 0x78, 0x3c, 0xf8, 0xf9, 0xff, + 0xf1, 0xff, 0xe3, 0xfb, 0xc1, 0xe7, 0x80, + + /* U+0027 "'" */ + 0xff, 0xff, 0xee, 0xee, 0xe0, + + /* U+0028 "(" */ + 0x1f, 0x7f, 0x7f, 0xff, 0xf8, 0xf0, 0xf0, 0xf0, + 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, + 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, + 0xf0, 0xf0, 0xf0, 0xf0, 0xf8, 0xff, 0x7f, 0x7f, + 0x1f, + + /* U+0029 ")" */ + 0xf1, 0xfb, 0xf7, 0xf3, 0xe3, 0xc7, 0x8f, 0x1e, + 0x3c, 0x78, 0xf1, 0xe3, 0xc7, 0x8f, 0x1e, 0x3c, + 0x78, 0xf1, 0xe3, 0xc7, 0x8f, 0x1e, 0x3c, 0x78, + 0xf3, 0xff, 0xff, 0x7e, 0xf0, + + /* U+002A "*" */ + 0x3, 0x80, 0x7, 0x0, 0xe, 0x0, 0x1c, 0xc, + 0x38, 0xdf, 0x77, 0xff, 0xff, 0xbf, 0xfe, 0x3, + 0x80, 0xf, 0x80, 0x3b, 0x80, 0xe7, 0x83, 0xc7, + 0x87, 0x7, 0x6, 0x8, 0x0, + + /* U+002B "+" */ + 0x7, 0x0, 0x1c, 0x0, 0x70, 0x1, 0xc0, 0x7, + 0x3, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7, 0x0, + 0x1c, 0x0, 0x70, 0x1, 0xc0, 0x7, 0x0, 0x1c, + 0x0, + + /* U+002C "," */ + 0xff, 0xff, 0x76, 0x6e, 0xc0, + + /* U+002D "-" */ + 0xff, 0xff, 0xff, 0xff, 0xf0, + + /* U+002E "." */ + 0xff, 0xff, + + /* U+002F "/" */ + 0x0, 0x1e, 0x0, 0x3c, 0x0, 0xf0, 0x1, 0xe0, + 0x3, 0xc0, 0xf, 0x0, 0x1e, 0x0, 0x38, 0x0, + 0xf0, 0x1, 0xe0, 0x7, 0x80, 0xf, 0x0, 0x1c, + 0x0, 0x78, 0x0, 0xf0, 0x3, 0xc0, 0x7, 0x80, + 0xf, 0x0, 0x3c, 0x0, 0x78, 0x0, 0xe0, 0x3, + 0xc0, 0x7, 0x80, 0x1e, 0x0, 0x3c, 0x0, 0x78, + 0x1, 0xe0, 0x3, 0xc0, 0x7, 0x0, 0x0, + + /* U+0030 "0" */ + 0xf, 0x81, 0xff, 0x1f, 0xfc, 0xff, 0xef, 0x8f, + 0xf8, 0x3f, 0xc1, 0xfe, 0xf, 0xf0, 0x7f, 0x83, + 0xfc, 0x1f, 0xe0, 0xff, 0x7, 0xf8, 0x3f, 0xc1, + 0xfe, 0xf, 0xf0, 0x7f, 0x83, 0xfc, 0x1f, 0xe0, + 0xff, 0x7, 0xf8, 0x3f, 0xc1, 0xfe, 0xf, 0xf8, + 0xfb, 0xff, 0x9f, 0xfc, 0x7f, 0xc0, 0xf8, 0x0, + + /* U+0031 "1" */ + 0x3, 0x81, 0xc1, 0xe1, 0xff, 0xff, 0xff, 0xfe, + 0xf, 0x7, 0x83, 0xc1, 0xe0, 0xf0, 0x78, 0x3c, + 0x1e, 0xf, 0x7, 0x83, 0xc1, 0xe0, 0xf0, 0x78, + 0x3c, 0x1e, 0xf, 0x7, 0x83, 0xc1, 0xe0, 0xf0, + 0x78, + + /* U+0032 "2" */ + 0xf, 0x81, 0xff, 0x1f, 0xfc, 0xff, 0xef, 0x8f, + 0xf8, 0x3f, 0xc1, 0xfe, 0xf, 0xf0, 0x7f, 0x83, + 0xc0, 0x3c, 0x1, 0xe0, 0x1f, 0x1, 0xf0, 0xf, + 0x0, 0xf8, 0xf, 0x80, 0xf8, 0xf, 0x80, 0x78, + 0x7, 0x80, 0x3c, 0x3, 0xc0, 0x1e, 0x0, 0xf0, + 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, + + /* U+0033 "3" */ + 0xf, 0x81, 0xff, 0x1f, 0xfc, 0xff, 0xef, 0x8f, + 0xf8, 0x3f, 0xc1, 0xfe, 0xf, 0xf0, 0x78, 0x3, + 0xc0, 0x1e, 0x1, 0xe0, 0xff, 0x7, 0xf0, 0x3f, + 0x81, 0xfe, 0x0, 0xf8, 0x3, 0xc0, 0x1e, 0x0, + 0xff, 0x7, 0xf8, 0x3f, 0xc1, 0xfe, 0xf, 0xf8, + 0xfb, 0xff, 0x9f, 0xfc, 0x7f, 0xc1, 0xfc, 0x0, + + /* U+0034 "4" */ + 0x0, 0xf8, 0x1, 0xf0, 0x7, 0xe0, 0xf, 0xc0, + 0x1f, 0x80, 0x7f, 0x0, 0xfe, 0x3, 0xfc, 0x7, + 0xf8, 0x1f, 0xf0, 0x3d, 0xe0, 0x7b, 0xc1, 0xe7, + 0x83, 0xcf, 0xf, 0x9e, 0x1e, 0x3c, 0x7c, 0x78, + 0xf0, 0xf1, 0xe1, 0xe7, 0xc3, 0xcf, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0x0, 0x78, 0x0, + 0xf0, 0x1, 0xe0, 0x3, 0xc0, 0x7, 0x80, + + /* U+0035 "5" */ + 0xff, 0xf7, 0xff, 0xbf, 0xfd, 0xff, 0xef, 0x0, + 0x78, 0x3, 0xc0, 0x1e, 0x0, 0xf0, 0x7, 0x9e, + 0x3f, 0xfd, 0xff, 0xef, 0xff, 0xfc, 0x7f, 0xc1, + 0xfe, 0xf, 0x0, 0x78, 0x3, 0xc0, 0x1e, 0x0, + 0xff, 0x7, 0xf8, 0x3f, 0xc1, 0xfe, 0xf, 0xf8, + 0xfb, 0xff, 0x9f, 0xfc, 0x7f, 0xc0, 0xf8, 0x0, + + /* U+0036 "6" */ + 0xf, 0x81, 0xff, 0x1f, 0xfc, 0xff, 0xef, 0x8f, + 0xf8, 0x3f, 0xc1, 0xfe, 0x0, 0xf0, 0x7, 0x80, + 0x3c, 0xf1, 0xef, 0xef, 0xff, 0x7f, 0xff, 0xe3, + 0xfe, 0xf, 0xf0, 0x7f, 0x83, 0xfc, 0x1f, 0xe0, + 0xff, 0x7, 0xf8, 0x3f, 0xc1, 0xfe, 0xf, 0xf8, + 0xfb, 0xff, 0x9f, 0xfc, 0x7f, 0xc0, 0xf8, 0x0, + + /* U+0037 "7" */ + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0x7, + 0x80, 0x7c, 0x3, 0xc0, 0x1e, 0x1, 0xf0, 0xf, + 0x0, 0x78, 0x3, 0xc0, 0x3e, 0x1, 0xe0, 0xf, + 0x0, 0x78, 0x7, 0xc0, 0x3c, 0x1, 0xe0, 0x1f, + 0x0, 0xf8, 0x7, 0x80, 0x3c, 0x3, 0xe0, 0x1e, + 0x0, 0xf0, 0xf, 0x80, 0x7c, 0x3, 0xc0, 0x0, + + /* U+0038 "8" */ + 0xf, 0x81, 0xff, 0x1f, 0xfc, 0xff, 0xef, 0x8f, + 0xf8, 0x3f, 0xc1, 0xfe, 0xf, 0xf0, 0x7f, 0x83, + 0xfc, 0x1e, 0xf1, 0xe7, 0xff, 0x1f, 0xf0, 0xff, + 0x8f, 0xfe, 0xf8, 0xff, 0x83, 0xfc, 0x1f, 0xe0, + 0xff, 0x7, 0xf8, 0x3f, 0xc1, 0xfe, 0xf, 0xf8, + 0xfb, 0xff, 0x9f, 0xfc, 0x7f, 0xc0, 0xf8, 0x0, + + /* U+0039 "9" */ + 0xf, 0x81, 0xff, 0x1f, 0xfc, 0xff, 0xef, 0x8f, + 0xf8, 0x3f, 0xc1, 0xfe, 0xf, 0xf0, 0x7f, 0x83, + 0xfc, 0x1f, 0xe0, 0xff, 0x7, 0xfc, 0x7f, 0xff, + 0xef, 0xff, 0x7f, 0x78, 0xf3, 0xc0, 0x1e, 0x0, + 0xf0, 0x7, 0xf8, 0x3f, 0xc1, 0xfe, 0xf, 0xf8, + 0xfb, 0xff, 0x9f, 0xfc, 0x7f, 0xc0, 0xf8, 0x0, + + /* U+003A ":" */ + 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xff, 0xff, + + /* U+003B ";" */ + 0xff, 0xff, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0xff, 0xff, 0x76, 0x6c, 0xc0, + + /* U+003C "<" */ + 0x0, 0x18, 0x3, 0xc0, 0xfe, 0x1f, 0xe3, 0xf8, + 0x7f, 0x3, 0xc0, 0x1f, 0x80, 0x7f, 0x0, 0xff, + 0x1, 0xfe, 0x1, 0xf0, 0x3, 0x80, 0x4, + + /* U+003D "=" */ + 0xff, 0xff, 0xff, 0xff, 0xfe, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x1f, 0xff, 0xff, 0xff, 0xff, + 0xc0, + + /* U+003E ">" */ + 0xc0, 0x7, 0x80, 0x3f, 0x0, 0xff, 0x1, 0xfe, + 0x1, 0xfc, 0x3, 0xe0, 0x3f, 0xf, 0xf1, 0xfe, + 0x3f, 0x81, 0xf0, 0xe, 0x0, 0x0, 0x0, + + /* U+003F "?" */ + 0xf, 0x81, 0xff, 0x1f, 0xfc, 0xff, 0xef, 0x8f, + 0xf8, 0x3f, 0xc1, 0xfe, 0xf, 0xf0, 0x7f, 0x83, + 0xc0, 0x3e, 0x1, 0xe0, 0x1f, 0x0, 0xf0, 0xf, + 0x0, 0xf8, 0x7, 0x80, 0x7c, 0x3, 0xc0, 0x1e, + 0x0, 0xf0, 0x7, 0x80, 0x0, 0x0, 0x0, 0x0, + 0x0, 0x78, 0x3, 0xc0, 0x1e, 0x0, 0xf0, 0x0, + + /* U+0040 "@" */ + 0x0, 0x1f, 0xe0, 0x0, 0x3f, 0xfe, 0x0, 0x1f, + 0xff, 0xe0, 0x1f, 0xff, 0xfc, 0xf, 0xe0, 0x3f, + 0x3, 0xe0, 0x7, 0xe1, 0xf0, 0x0, 0xf8, 0xf8, + 0x0, 0x1e, 0x3c, 0x3c, 0xe7, 0xdf, 0x1f, 0xb8, + 0xf7, 0x8f, 0xfe, 0x3d, 0xe3, 0xff, 0x8f, 0x78, + 0xf1, 0xe3, 0xfc, 0x3c, 0x78, 0xff, 0x1e, 0x1e, + 0x3f, 0xc7, 0x87, 0x8f, 0xf1, 0xe1, 0xe3, 0xfc, + 0x78, 0x71, 0xef, 0x1e, 0x1c, 0x7b, 0xc7, 0x87, + 0x1e, 0xf1, 0xe3, 0xcf, 0x3c, 0x7f, 0xff, 0xcf, + 0x1f, 0xff, 0xe3, 0xe3, 0xf7, 0xf0, 0x78, 0x78, + 0xf0, 0x1f, 0x0, 0x0, 0x7, 0xc0, 0x0, 0x0, + 0xfc, 0x0, 0x60, 0x1f, 0xc0, 0x78, 0x7, 0xff, + 0xfe, 0x0, 0xff, 0xff, 0x80, 0xf, 0xff, 0x80, + 0x0, 0xff, 0x80, 0x0, + + /* U+0041 "A" */ + 0x7, 0xe0, 0x7, 0xe0, 0x7, 0xe0, 0xf, 0xf0, + 0xf, 0xf0, 0xf, 0xf0, 0xf, 0xf0, 0xe, 0xf0, + 0xe, 0xf0, 0xe, 0x70, 0x1e, 0x78, 0x1e, 0x78, + 0x1e, 0x78, 0x1e, 0x78, 0x1e, 0x78, 0x1c, 0x78, + 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3f, 0xfc, + 0x3f, 0xfc, 0x3f, 0xfc, 0x7f, 0xfe, 0x78, 0x3e, + 0x78, 0x1e, 0x78, 0x1e, 0x78, 0x1e, 0x78, 0x1e, + 0x78, 0x1e, + + /* U+0042 "B" */ + 0xff, 0xc7, 0xff, 0x3f, 0xfd, 0xff, 0xff, 0xf, + 0xf8, 0x3f, 0xc1, 0xfe, 0xf, 0xf0, 0x7f, 0x83, + 0xfc, 0x1f, 0xe1, 0xef, 0xff, 0x7f, 0xe3, 0xff, + 0x9f, 0xfe, 0xf0, 0xff, 0x83, 0xfc, 0x1f, 0xe0, + 0xff, 0x7, 0xf8, 0x3f, 0xc1, 0xfe, 0xf, 0xf0, + 0xff, 0xff, 0xbf, 0xfd, 0xff, 0xcf, 0xfc, 0x0, + + /* U+0043 "C" */ + 0xf, 0x81, 0xff, 0x1f, 0xfc, 0xff, 0xef, 0x8f, + 0xf8, 0x3f, 0xc1, 0xfe, 0xf, 0xf0, 0x7f, 0x83, + 0xfc, 0x1, 0xe0, 0xf, 0x0, 0x78, 0x3, 0xc0, + 0x1e, 0x0, 0xf0, 0x7, 0x80, 0x3c, 0x1f, 0xe0, + 0xff, 0x7, 0xf8, 0x3f, 0xc1, 0xfe, 0xf, 0xf8, + 0xfb, 0xff, 0x9f, 0xfc, 0x7f, 0xc0, 0xf8, 0x0, + + /* U+0044 "D" */ + 0xff, 0x87, 0xff, 0x3f, 0xfd, 0xff, 0xef, 0xf, + 0xf8, 0x3f, 0xc1, 0xfe, 0xf, 0xf0, 0x7f, 0x83, + 0xfc, 0x1f, 0xe0, 0xff, 0x7, 0xf8, 0x3f, 0xc1, + 0xfe, 0xf, 0xf0, 0x7f, 0x83, 0xfc, 0x1f, 0xe0, + 0xff, 0x7, 0xf8, 0x3f, 0xc1, 0xfe, 0xf, 0xf0, + 0xff, 0xff, 0xbf, 0xfd, 0xff, 0xcf, 0xfc, 0x0, + + /* U+0045 "E" */ + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xf, + 0x0, 0xf0, 0xf, 0x0, 0xf0, 0xf, 0x0, 0xf0, + 0xf, 0x0, 0xff, 0xef, 0xfe, 0xff, 0xef, 0xfe, + 0xf0, 0xf, 0x0, 0xf0, 0xf, 0x0, 0xf0, 0xf, + 0x0, 0xf0, 0xf, 0x0, 0xf0, 0xf, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf0, + + /* U+0046 "F" */ + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xf, + 0x0, 0xf0, 0xf, 0x0, 0xf0, 0xf, 0x0, 0xf0, + 0xf, 0x0, 0xf0, 0xf, 0xfc, 0xff, 0xcf, 0xfc, + 0xff, 0xcf, 0x0, 0xf0, 0xf, 0x0, 0xf0, 0xf, + 0x0, 0xf0, 0xf, 0x0, 0xf0, 0xf, 0x0, 0xf0, + 0xf, 0x0, 0xf0, 0x0, + + /* U+0047 "G" */ + 0xf, 0x81, 0xff, 0x1f, 0xfc, 0xff, 0xef, 0x8f, + 0xf8, 0x3f, 0xc1, 0xfe, 0xf, 0xf0, 0x7f, 0x83, + 0xfc, 0x1, 0xe0, 0xf, 0x0, 0x78, 0xff, 0xc7, + 0xfe, 0x3f, 0xf1, 0xff, 0x83, 0xfc, 0x1f, 0xe0, + 0xff, 0x7, 0xf8, 0x3f, 0xc1, 0xfe, 0xf, 0xf8, + 0xfb, 0xff, 0x9f, 0xfc, 0x7f, 0xc0, 0xf8, 0x0, + + /* U+0048 "H" */ + 0xf0, 0x7f, 0x83, 0xfc, 0x1f, 0xe0, 0xff, 0x7, + 0xf8, 0x3f, 0xc1, 0xfe, 0xf, 0xf0, 0x7f, 0x83, + 0xfc, 0x1f, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf0, 0x7f, 0x83, 0xfc, 0x1f, 0xe0, + 0xff, 0x7, 0xf8, 0x3f, 0xc1, 0xfe, 0xf, 0xf0, + 0x7f, 0x83, 0xfc, 0x1f, 0xe0, 0xff, 0x7, 0x80, + + /* U+0049 "I" */ + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, + + /* U+004A "J" */ + 0xf, 0xf, 0xf, 0xf, 0xf, 0xf, 0xf, 0xf, + 0xf, 0xf, 0xf, 0xf, 0xf, 0xf, 0xf, 0xf, + 0xf, 0xf, 0xf, 0xf, 0xf, 0xf, 0xf, 0xf, + 0x1f, 0xfe, 0xfe, 0xfc, 0xf8, + + /* U+004B "K" */ + 0xf0, 0x7f, 0xc1, 0xef, 0xf, 0xbc, 0x3c, 0xf0, + 0xf3, 0xc7, 0x8f, 0x1e, 0x3c, 0xf0, 0xf3, 0xc3, + 0xde, 0xf, 0x78, 0x3f, 0xe0, 0xff, 0x83, 0xff, + 0xf, 0xfc, 0x3f, 0xf0, 0xff, 0xc3, 0xef, 0x8f, + 0xbe, 0x3c, 0x78, 0xf1, 0xf3, 0xc7, 0xcf, 0xf, + 0x3c, 0x3c, 0xf0, 0xfb, 0xc3, 0xef, 0x7, 0xbc, + 0x1f, 0xf0, 0x7c, + + /* U+004C "L" */ + 0xf0, 0xf, 0x0, 0xf0, 0xf, 0x0, 0xf0, 0xf, + 0x0, 0xf0, 0xf, 0x0, 0xf0, 0xf, 0x0, 0xf0, + 0xf, 0x0, 0xf0, 0xf, 0x0, 0xf0, 0xf, 0x0, + 0xf0, 0xf, 0x0, 0xf0, 0xf, 0x0, 0xf0, 0xf, + 0x0, 0xf0, 0xf, 0x0, 0xf0, 0xf, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf0, + + /* U+004D "M" */ + 0xfc, 0xf, 0xff, 0x83, 0xff, 0xe0, 0xff, 0xf8, + 0x7f, 0xfe, 0x1f, 0xff, 0x87, 0xff, 0xe1, 0xff, + 0xf8, 0x7f, 0xfe, 0x1f, 0xff, 0xc7, 0xff, 0xf1, + 0xbf, 0xdc, 0xef, 0xf7, 0x3b, 0xfd, 0xce, 0xff, + 0x73, 0xbf, 0xdc, 0xef, 0xf7, 0xbb, 0xfc, 0xec, + 0xff, 0x3f, 0x3f, 0xcf, 0xcf, 0xf3, 0xf3, 0xfc, + 0xfc, 0xff, 0x3f, 0x3f, 0xcf, 0xcf, 0xf1, 0xe3, + 0xfc, 0x78, 0xff, 0x1e, 0x3f, 0xc7, 0x8f, 0xf1, + 0xe3, 0xc0, + + /* U+004E "N" */ + 0xfc, 0x3f, 0xf0, 0xff, 0xc3, 0xff, 0xf, 0xfe, + 0x3f, 0xf8, 0xff, 0xe3, 0xff, 0x8f, 0xff, 0x3f, + 0xfc, 0xff, 0x73, 0xfd, 0xef, 0xf7, 0xbf, 0xde, + 0xff, 0x3b, 0xfc, 0xff, 0xf3, 0xff, 0xcf, 0xff, + 0x1f, 0xfc, 0x7f, 0xf1, 0xff, 0xc3, 0xff, 0xf, + 0xfc, 0x3f, 0xf0, 0xff, 0xc1, 0xff, 0x7, 0xfc, + 0x1f, 0xf0, 0x7c, + + /* U+004F "O" */ + 0xf, 0x81, 0xff, 0x1f, 0xfc, 0xff, 0xef, 0x8f, + 0xf8, 0x3f, 0xc1, 0xfe, 0xf, 0xf0, 0x7f, 0x83, + 0xfc, 0x1f, 0xe0, 0xff, 0x7, 0xf8, 0x3f, 0xc1, + 0xfe, 0xf, 0xf0, 0x7f, 0x83, 0xfc, 0x1f, 0xe0, + 0xff, 0x7, 0xf8, 0x3f, 0xc1, 0xfe, 0xf, 0xf8, + 0xfb, 0xff, 0x9f, 0xfc, 0x7f, 0xc0, 0xf8, 0x0, + + /* U+0050 "P" */ + 0xff, 0x87, 0xff, 0x3f, 0xfd, 0xff, 0xef, 0xf, + 0xf8, 0x3f, 0xc1, 0xfe, 0xf, 0xf0, 0x7f, 0x83, + 0xfc, 0x1f, 0xe0, 0xff, 0xf, 0xff, 0xfb, 0xff, + 0xdf, 0xfc, 0xff, 0x87, 0x80, 0x3c, 0x1, 0xe0, + 0xf, 0x0, 0x78, 0x3, 0xc0, 0x1e, 0x0, 0xf0, + 0x7, 0x80, 0x3c, 0x1, 0xe0, 0xf, 0x0, 0x0, + + /* U+0051 "Q" */ + 0xf, 0x80, 0x7f, 0xc1, 0xff, 0xc3, 0xff, 0x8f, + 0x8f, 0x9e, 0xf, 0x3c, 0x1e, 0x78, 0x3c, 0xf0, + 0x79, 0xe0, 0xf3, 0xc1, 0xe7, 0x83, 0xcf, 0x7, + 0x9e, 0xf, 0x3c, 0x1e, 0x78, 0x3c, 0xf0, 0x79, + 0xe0, 0xf3, 0xc1, 0xe7, 0x83, 0xcf, 0x7, 0x9e, + 0xf, 0x3c, 0x1e, 0x78, 0x3c, 0xf8, 0xf8, 0xff, + 0xe1, 0xff, 0xc1, 0xff, 0xf0, 0xff, 0xe0, 0x7, + 0xc0, 0x7, 0x80, + + /* U+0052 "R" */ + 0xff, 0xc3, 0xff, 0x8f, 0xff, 0x3f, 0xfc, 0xf0, + 0xfb, 0xc1, 0xef, 0x7, 0xbc, 0x1e, 0xf0, 0x7b, + 0xc1, 0xef, 0x7, 0xbc, 0x1e, 0xf0, 0xf3, 0xff, + 0xcf, 0xfe, 0x3f, 0xfc, 0xff, 0xf3, 0xc3, 0xef, + 0x7, 0xbc, 0x1e, 0xf0, 0x7b, 0xc1, 0xef, 0x7, + 0xbc, 0x1e, 0xf0, 0x7b, 0xc1, 0xef, 0x7, 0xbc, + 0x1e, 0xf0, 0x78, + + /* U+0053 "S" */ + 0xf, 0x81, 0xff, 0x1f, 0xfc, 0xff, 0xef, 0x8f, + 0xf8, 0x3f, 0xc1, 0xfe, 0xf, 0xf0, 0x7, 0xc0, + 0x1f, 0x0, 0xfc, 0x3, 0xf0, 0xf, 0xc0, 0x3f, + 0x0, 0xfc, 0x3, 0xe0, 0xf, 0x80, 0x3c, 0x1, + 0xff, 0x7, 0xf8, 0x3f, 0xc1, 0xfe, 0xf, 0xf8, + 0xfb, 0xff, 0x9f, 0xfc, 0x7f, 0xc1, 0xf8, 0x0, + + /* U+0054 "T" */ + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7, + 0x80, 0x1e, 0x0, 0x78, 0x1, 0xe0, 0x7, 0x80, + 0x1e, 0x0, 0x78, 0x1, 0xe0, 0x7, 0x80, 0x1e, + 0x0, 0x78, 0x1, 0xe0, 0x7, 0x80, 0x1e, 0x0, + 0x78, 0x1, 0xe0, 0x7, 0x80, 0x1e, 0x0, 0x78, + 0x1, 0xe0, 0x7, 0x80, 0x1e, 0x0, 0x78, 0x1, + 0xe0, 0x7, 0x80, + + /* U+0055 "U" */ + 0xf0, 0x7f, 0x83, 0xfc, 0x1f, 0xe0, 0xff, 0x7, + 0xf8, 0x3f, 0xc1, 0xfe, 0xf, 0xf0, 0x7f, 0x83, + 0xfc, 0x1f, 0xe0, 0xff, 0x7, 0xf8, 0x3f, 0xc1, + 0xfe, 0xf, 0xf0, 0x7f, 0x83, 0xfc, 0x1f, 0xe0, + 0xff, 0x7, 0xf8, 0x3f, 0xc1, 0xfe, 0xf, 0xf8, + 0xfb, 0xff, 0x9f, 0xfc, 0x7f, 0xc0, 0xf8, 0x0, + + /* U+0056 "V" */ + 0x78, 0x1e, 0xf0, 0x3d, 0xe0, 0xf3, 0xc1, 0xe7, + 0x83, 0xcf, 0x87, 0x9f, 0xf, 0x1e, 0x1e, 0x3c, + 0x3c, 0x78, 0x70, 0xf1, 0xe1, 0xe3, 0xc3, 0xe7, + 0x87, 0xcf, 0x7, 0x9e, 0xf, 0x3c, 0x1e, 0x70, + 0x3c, 0xe0, 0x7b, 0xc0, 0xf7, 0x81, 0xff, 0x1, + 0xfe, 0x3, 0xfc, 0x7, 0xf0, 0xf, 0xe0, 0x1f, + 0xc0, 0x3f, 0x80, 0x7f, 0x0, 0x7e, 0x0, + + /* U+0057 "W" */ + 0xf0, 0xf8, 0x7f, 0x87, 0xc3, 0xfc, 0x3e, 0x1d, + 0xe1, 0xf0, 0xef, 0xf, 0x8f, 0x78, 0xfc, 0x7b, + 0xc7, 0xe3, 0xdf, 0x3f, 0x1e, 0xf9, 0xfc, 0xf3, + 0xcf, 0xe7, 0x9e, 0x7f, 0x3c, 0xf3, 0xb9, 0xe7, + 0x9d, 0xce, 0x3c, 0xee, 0x71, 0xe7, 0x73, 0x8f, + 0x7b, 0xbc, 0x7b, 0xdd, 0xe3, 0xdc, 0xef, 0x1e, + 0xe7, 0x78, 0x7f, 0x3f, 0xc3, 0xf9, 0xfe, 0x1f, + 0xc7, 0xf0, 0xfe, 0x3f, 0x7, 0xf1, 0xf8, 0x3f, + 0x8f, 0xc1, 0xfc, 0x7e, 0xf, 0xe3, 0xf0, 0x7e, + 0x1f, 0x83, 0xf0, 0xfc, 0x0, + + /* U+0058 "X" */ + 0x78, 0x1e, 0x7c, 0x1e, 0x3c, 0x1e, 0x3c, 0x3c, + 0x3e, 0x3c, 0x1e, 0x3c, 0x1e, 0x78, 0x1f, 0x78, + 0xf, 0x78, 0xf, 0xf0, 0xf, 0xf0, 0x7, 0xf0, + 0x7, 0xe0, 0x7, 0xe0, 0x7, 0xe0, 0x7, 0xe0, + 0x7, 0xf0, 0xf, 0xf0, 0xf, 0xf0, 0xf, 0xf8, + 0x1e, 0xf8, 0x1e, 0x78, 0x1e, 0x7c, 0x3c, 0x7c, + 0x3c, 0x3c, 0x3c, 0x3e, 0x78, 0x3e, 0x78, 0x1e, + 0x78, 0x1f, + + /* U+0059 "Y" */ + 0xf0, 0x3f, 0xe0, 0xff, 0x87, 0xde, 0x1e, 0x7c, + 0x79, 0xf1, 0xe3, 0xcf, 0xf, 0x3c, 0x3e, 0xf0, + 0x7b, 0x81, 0xfe, 0x7, 0xf8, 0xf, 0xc0, 0x3f, + 0x0, 0xfc, 0x1, 0xe0, 0x7, 0x80, 0x1e, 0x0, + 0x78, 0x1, 0xe0, 0x7, 0x80, 0x1e, 0x0, 0x78, + 0x1, 0xe0, 0x7, 0x80, 0x1e, 0x0, 0x78, 0x1, + 0xe0, 0x7, 0x80, + + /* U+005A "Z" */ + 0x7f, 0xfb, 0xff, 0xdf, 0xfe, 0xff, 0xf0, 0xf, + 0x80, 0x78, 0x7, 0xc0, 0x3e, 0x1, 0xe0, 0x1f, + 0x0, 0xf8, 0xf, 0x80, 0x7c, 0x3, 0xc0, 0x3e, + 0x1, 0xf0, 0x1f, 0x0, 0xf8, 0x7, 0xc0, 0x7c, + 0x3, 0xe0, 0x3e, 0x1, 0xf0, 0xf, 0x80, 0xf8, + 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, + + /* U+005B "[" */ + 0xff, 0xff, 0xff, 0xff, 0xf0, 0xf0, 0xf0, 0xf0, + 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, + 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, + 0xf0, 0xf0, 0xf0, 0xf0, 0xf0, 0xff, 0xff, 0xff, + 0xff, + + /* U+005C "\\" */ + 0x70, 0x0, 0xf0, 0x1, 0xe0, 0x1, 0xc0, 0x3, + 0xc0, 0x7, 0x80, 0x7, 0x80, 0xf, 0x0, 0xe, + 0x0, 0x1e, 0x0, 0x3c, 0x0, 0x3c, 0x0, 0x78, + 0x0, 0xf0, 0x0, 0xf0, 0x1, 0xe0, 0x1, 0xc0, + 0x3, 0xc0, 0x7, 0x80, 0x7, 0x80, 0xf, 0x0, + 0xe, 0x0, 0x1e, 0x0, 0x3c, 0x0, 0x38, 0x0, + 0x78, 0x0, 0xf0, 0x0, 0xf0, 0x1, 0xe0, + + /* U+005D "]" */ + 0xff, 0xff, 0xff, 0xf1, 0xe3, 0xc7, 0x8f, 0x1e, + 0x3c, 0x78, 0xf1, 0xe3, 0xc7, 0x8f, 0x1e, 0x3c, + 0x78, 0xf1, 0xe3, 0xc7, 0x8f, 0x1e, 0x3c, 0x78, + 0xf1, 0xff, 0xff, 0xff, 0xfe, + + /* U+005E "^" */ + 0x7, 0x80, 0x1e, 0x0, 0xfc, 0x3, 0xf0, 0x1f, + 0xe0, 0x73, 0x83, 0xcf, 0xe, 0x1c, 0x78, 0x79, + 0xc0, 0xef, 0x3, 0xc0, + + /* U+005F "_" */ + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + + /* U+0060 "`" */ + 0xf8, 0xf8, 0xf0, 0x70, + + /* U+0061 "a" */ + 0x7, 0xe0, 0x7, 0xe0, 0x7, 0xe0, 0xf, 0xf0, + 0xf, 0xf0, 0xf, 0xf0, 0xf, 0xf0, 0xe, 0xf0, + 0xe, 0xf0, 0xe, 0x70, 0x1e, 0x78, 0x1e, 0x78, + 0x1e, 0x78, 0x1e, 0x78, 0x1e, 0x78, 0x1c, 0x78, + 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3c, 0x3f, 0xfc, + 0x3f, 0xfc, 0x3f, 0xfc, 0x7f, 0xfe, 0x78, 0x3e, + 0x78, 0x1e, 0x78, 0x1e, 0x78, 0x1e, 0x78, 0x1e, + 0x78, 0x1e, + + /* U+0062 "b" */ + 0xff, 0xc7, 0xff, 0x3f, 0xfd, 0xff, 0xff, 0xf, + 0xf8, 0x3f, 0xc1, 0xfe, 0xf, 0xf0, 0x7f, 0x83, + 0xfc, 0x1f, 0xe1, 0xef, 0xff, 0x7f, 0xe3, 0xff, + 0x9f, 0xfe, 0xf0, 0xff, 0x83, 0xfc, 0x1f, 0xe0, + 0xff, 0x7, 0xf8, 0x3f, 0xc1, 0xfe, 0xf, 0xf0, + 0xff, 0xff, 0xbf, 0xfd, 0xff, 0xcf, 0xfc, 0x0, + + /* U+0063 "c" */ + 0xf, 0x81, 0xff, 0x1f, 0xfc, 0xff, 0xef, 0x8f, + 0xf8, 0x3f, 0xc1, 0xfe, 0xf, 0xf0, 0x7f, 0x83, + 0xfc, 0x1, 0xe0, 0xf, 0x0, 0x78, 0x3, 0xc0, + 0x1e, 0x0, 0xf0, 0x7, 0x80, 0x3c, 0x1f, 0xe0, + 0xff, 0x7, 0xf8, 0x3f, 0xc1, 0xfe, 0xf, 0xf8, + 0xfb, 0xff, 0x9f, 0xfc, 0x7f, 0xc0, 0xf8, 0x0, + + /* U+0064 "d" */ + 0xff, 0x87, 0xff, 0x3f, 0xfd, 0xff, 0xef, 0xf, + 0xf8, 0x3f, 0xc1, 0xfe, 0xf, 0xf0, 0x7f, 0x83, + 0xfc, 0x1f, 0xe0, 0xff, 0x7, 0xf8, 0x3f, 0xc1, + 0xfe, 0xf, 0xf0, 0x7f, 0x83, 0xfc, 0x1f, 0xe0, + 0xff, 0x7, 0xf8, 0x3f, 0xc1, 0xfe, 0xf, 0xf0, + 0xff, 0xff, 0xbf, 0xfd, 0xff, 0xcf, 0xfc, 0x0, + + /* U+0065 "e" */ + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xf, + 0x0, 0xf0, 0xf, 0x0, 0xf0, 0xf, 0x0, 0xf0, + 0xf, 0x0, 0xff, 0xef, 0xfe, 0xff, 0xef, 0xfe, + 0xf0, 0xf, 0x0, 0xf0, 0xf, 0x0, 0xf0, 0xf, + 0x0, 0xf0, 0xf, 0x0, 0xf0, 0xf, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf0, + + /* U+0066 "f" */ + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, 0xf, + 0x0, 0xf0, 0xf, 0x0, 0xf0, 0xf, 0x0, 0xf0, + 0xf, 0x0, 0xf0, 0xf, 0xfc, 0xff, 0xcf, 0xfc, + 0xff, 0xcf, 0x0, 0xf0, 0xf, 0x0, 0xf0, 0xf, + 0x0, 0xf0, 0xf, 0x0, 0xf0, 0xf, 0x0, 0xf0, + 0xf, 0x0, 0xf0, 0x0, + + /* U+0067 "g" */ + 0xf, 0x81, 0xff, 0x1f, 0xfc, 0xff, 0xef, 0x8f, + 0xf8, 0x3f, 0xc1, 0xfe, 0xf, 0xf0, 0x7f, 0x83, + 0xfc, 0x1, 0xe0, 0xf, 0x0, 0x78, 0xff, 0xc7, + 0xfe, 0x3f, 0xf1, 0xff, 0x83, 0xfc, 0x1f, 0xe0, + 0xff, 0x7, 0xf8, 0x3f, 0xc1, 0xfe, 0xf, 0xf8, + 0xfb, 0xff, 0x9f, 0xfc, 0x7f, 0xc0, 0xf8, 0x0, + + /* U+0068 "h" */ + 0xf0, 0x7f, 0x83, 0xfc, 0x1f, 0xe0, 0xff, 0x7, + 0xf8, 0x3f, 0xc1, 0xfe, 0xf, 0xf0, 0x7f, 0x83, + 0xfc, 0x1f, 0xe0, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xf0, 0x7f, 0x83, 0xfc, 0x1f, 0xe0, + 0xff, 0x7, 0xf8, 0x3f, 0xc1, 0xfe, 0xf, 0xf0, + 0x7f, 0x83, 0xfc, 0x1f, 0xe0, 0xff, 0x7, 0x80, + + /* U+0069 "i" */ + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xf0, + + /* U+006A "j" */ + 0xf, 0xf, 0xf, 0xf, 0xf, 0xf, 0xf, 0xf, + 0xf, 0xf, 0xf, 0xf, 0xf, 0xf, 0xf, 0xf, + 0xf, 0xf, 0xf, 0xf, 0xf, 0xf, 0xf, 0xf, + 0x1f, 0xfe, 0xfe, 0xfc, 0xf8, + + /* U+006B "k" */ + 0xf0, 0x7f, 0xc1, 0xef, 0xf, 0xbc, 0x3c, 0xf0, + 0xf3, 0xc7, 0x8f, 0x1e, 0x3c, 0xf0, 0xf3, 0xc3, + 0xde, 0xf, 0x78, 0x3f, 0xe0, 0xff, 0x83, 0xff, + 0xf, 0xfc, 0x3f, 0xf0, 0xff, 0xc3, 0xef, 0x8f, + 0xbe, 0x3c, 0x78, 0xf1, 0xf3, 0xc7, 0xcf, 0xf, + 0x3c, 0x3c, 0xf0, 0xfb, 0xc3, 0xef, 0x7, 0xbc, + 0x1f, 0xf0, 0x7c, + + /* U+006C "l" */ + 0xf0, 0xf, 0x0, 0xf0, 0xf, 0x0, 0xf0, 0xf, + 0x0, 0xf0, 0xf, 0x0, 0xf0, 0xf, 0x0, 0xf0, + 0xf, 0x0, 0xf0, 0xf, 0x0, 0xf0, 0xf, 0x0, + 0xf0, 0xf, 0x0, 0xf0, 0xf, 0x0, 0xf0, 0xf, + 0x0, 0xf0, 0xf, 0x0, 0xf0, 0xf, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xf0, + + /* U+006D "m" */ + 0xfc, 0xf, 0xff, 0x83, 0xff, 0xe0, 0xff, 0xf8, + 0x7f, 0xfe, 0x1f, 0xff, 0x87, 0xff, 0xe1, 0xff, + 0xf8, 0x7f, 0xfe, 0x1f, 0xff, 0xc7, 0xff, 0xf1, + 0xbf, 0xdc, 0xef, 0xf7, 0x3b, 0xfd, 0xce, 0xff, + 0x73, 0xbf, 0xdc, 0xef, 0xf7, 0xbb, 0xfc, 0xec, + 0xff, 0x3f, 0x3f, 0xcf, 0xcf, 0xf3, 0xf3, 0xfc, + 0xfc, 0xff, 0x3f, 0x3f, 0xcf, 0xcf, 0xf1, 0xe3, + 0xfc, 0x78, 0xff, 0x1e, 0x3f, 0xc7, 0x8f, 0xf1, + 0xe3, 0xc0, + + /* U+006E "n" */ + 0xfc, 0x3f, 0xf0, 0xff, 0xc3, 0xff, 0xf, 0xfe, + 0x3f, 0xf8, 0xff, 0xe3, 0xff, 0x8f, 0xff, 0x3f, + 0xfc, 0xff, 0x73, 0xfd, 0xef, 0xf7, 0xbf, 0xde, + 0xff, 0x3b, 0xfc, 0xff, 0xf3, 0xff, 0xcf, 0xff, + 0x1f, 0xfc, 0x7f, 0xf1, 0xff, 0xc3, 0xff, 0xf, + 0xfc, 0x3f, 0xf0, 0xff, 0xc1, 0xff, 0x7, 0xfc, + 0x1f, 0xf0, 0x7c, + + /* U+006F "o" */ + 0xf, 0x81, 0xff, 0x1f, 0xfc, 0xff, 0xef, 0x8f, + 0xf8, 0x3f, 0xc1, 0xfe, 0xf, 0xf0, 0x7f, 0x83, + 0xfc, 0x1f, 0xe0, 0xff, 0x7, 0xf8, 0x3f, 0xc1, + 0xfe, 0xf, 0xf0, 0x7f, 0x83, 0xfc, 0x1f, 0xe0, + 0xff, 0x7, 0xf8, 0x3f, 0xc1, 0xfe, 0xf, 0xf8, + 0xfb, 0xff, 0x9f, 0xfc, 0x7f, 0xc0, 0xf8, 0x0, + + /* U+0070 "p" */ + 0xff, 0x87, 0xff, 0x3f, 0xfd, 0xff, 0xef, 0xf, + 0xf8, 0x3f, 0xc1, 0xfe, 0xf, 0xf0, 0x7f, 0x83, + 0xfc, 0x1f, 0xe0, 0xff, 0xf, 0xff, 0xfb, 0xff, + 0xdf, 0xfc, 0xff, 0x87, 0x80, 0x3c, 0x1, 0xe0, + 0xf, 0x0, 0x78, 0x3, 0xc0, 0x1e, 0x0, 0xf0, + 0x7, 0x80, 0x3c, 0x1, 0xe0, 0xf, 0x0, 0x0, + + /* U+0071 "q" */ + 0xf, 0x80, 0x7f, 0xc1, 0xff, 0xc3, 0xff, 0x8f, + 0x8f, 0x9e, 0xf, 0x3c, 0x1e, 0x78, 0x3c, 0xf0, + 0x79, 0xe0, 0xf3, 0xc1, 0xe7, 0x83, 0xcf, 0x7, + 0x9e, 0xf, 0x3c, 0x1e, 0x78, 0x3c, 0xf0, 0x79, + 0xe0, 0xf3, 0xc1, 0xe7, 0x83, 0xcf, 0x7, 0x9e, + 0xf, 0x3c, 0x1e, 0x78, 0x3c, 0xf8, 0xf8, 0xff, + 0xe1, 0xff, 0xc1, 0xff, 0xf0, 0xff, 0xe0, 0x7, + 0xc0, 0x7, 0x80, + + /* U+0072 "r" */ + 0xff, 0xc3, 0xff, 0x8f, 0xff, 0x3f, 0xfc, 0xf0, + 0xfb, 0xc1, 0xef, 0x7, 0xbc, 0x1e, 0xf0, 0x7b, + 0xc1, 0xef, 0x7, 0xbc, 0x1e, 0xf0, 0xf3, 0xff, + 0xcf, 0xfe, 0x3f, 0xfc, 0xff, 0xf3, 0xc3, 0xef, + 0x7, 0xbc, 0x1e, 0xf0, 0x7b, 0xc1, 0xef, 0x7, + 0xbc, 0x1e, 0xf0, 0x7b, 0xc1, 0xef, 0x7, 0xbc, + 0x1e, 0xf0, 0x78, + + /* U+0073 "s" */ + 0xf, 0x81, 0xff, 0x1f, 0xfc, 0xff, 0xef, 0x8f, + 0xf8, 0x3f, 0xc1, 0xfe, 0xf, 0xf0, 0x7, 0xc0, + 0x1f, 0x0, 0xfc, 0x3, 0xf0, 0xf, 0xc0, 0x3f, + 0x0, 0xfc, 0x3, 0xe0, 0xf, 0x80, 0x3c, 0x1, + 0xff, 0x7, 0xf8, 0x3f, 0xc1, 0xfe, 0xf, 0xf8, + 0xfb, 0xff, 0x9f, 0xfc, 0x7f, 0xc1, 0xf8, 0x0, + + /* U+0074 "t" */ + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x7, + 0x80, 0x1e, 0x0, 0x78, 0x1, 0xe0, 0x7, 0x80, + 0x1e, 0x0, 0x78, 0x1, 0xe0, 0x7, 0x80, 0x1e, + 0x0, 0x78, 0x1, 0xe0, 0x7, 0x80, 0x1e, 0x0, + 0x78, 0x1, 0xe0, 0x7, 0x80, 0x1e, 0x0, 0x78, + 0x1, 0xe0, 0x7, 0x80, 0x1e, 0x0, 0x78, 0x1, + 0xe0, 0x7, 0x80, + + /* U+0075 "u" */ + 0xf0, 0x7f, 0x83, 0xfc, 0x1f, 0xe0, 0xff, 0x7, + 0xf8, 0x3f, 0xc1, 0xfe, 0xf, 0xf0, 0x7f, 0x83, + 0xfc, 0x1f, 0xe0, 0xff, 0x7, 0xf8, 0x3f, 0xc1, + 0xfe, 0xf, 0xf0, 0x7f, 0x83, 0xfc, 0x1f, 0xe0, + 0xff, 0x7, 0xf8, 0x3f, 0xc1, 0xfe, 0xf, 0xf8, + 0xfb, 0xff, 0x9f, 0xfc, 0x7f, 0xc0, 0xf8, 0x0, + + /* U+0076 "v" */ + 0x78, 0x1e, 0xf0, 0x3d, 0xe0, 0xf3, 0xc1, 0xe7, + 0x83, 0xcf, 0x87, 0x9f, 0xf, 0x1e, 0x1e, 0x3c, + 0x3c, 0x78, 0x70, 0xf1, 0xe1, 0xe3, 0xc3, 0xe7, + 0x87, 0xcf, 0x7, 0x9e, 0xf, 0x3c, 0x1e, 0x70, + 0x3c, 0xe0, 0x7b, 0xc0, 0xf7, 0x81, 0xff, 0x1, + 0xfe, 0x3, 0xfc, 0x7, 0xf0, 0xf, 0xe0, 0x1f, + 0xc0, 0x3f, 0x80, 0x7f, 0x0, 0x7e, 0x0, + + /* U+0077 "w" */ + 0xf0, 0xf8, 0x7f, 0x87, 0xc3, 0xfc, 0x3e, 0x1d, + 0xe1, 0xf0, 0xef, 0xf, 0x8f, 0x78, 0xfc, 0x7b, + 0xc7, 0xe3, 0xdf, 0x3f, 0x1e, 0xf9, 0xfc, 0xf3, + 0xcf, 0xe7, 0x9e, 0x7f, 0x3c, 0xf3, 0xb9, 0xe7, + 0x9d, 0xce, 0x3c, 0xee, 0x71, 0xe7, 0x73, 0x8f, + 0x7b, 0xbc, 0x7b, 0xdd, 0xe3, 0xdc, 0xef, 0x1e, + 0xe7, 0x78, 0x7f, 0x3f, 0xc3, 0xf9, 0xfe, 0x1f, + 0xc7, 0xf0, 0xfe, 0x3f, 0x7, 0xf1, 0xf8, 0x3f, + 0x8f, 0xc1, 0xfc, 0x7e, 0xf, 0xe3, 0xf0, 0x7e, + 0x1f, 0x83, 0xf0, 0xfc, 0x0, + + /* U+0078 "x" */ + 0x78, 0x1e, 0x7c, 0x1e, 0x3c, 0x1e, 0x3c, 0x3c, + 0x3e, 0x3c, 0x1e, 0x3c, 0x1e, 0x78, 0x1f, 0x78, + 0xf, 0x78, 0xf, 0xf0, 0xf, 0xf0, 0x7, 0xf0, + 0x7, 0xe0, 0x7, 0xe0, 0x7, 0xe0, 0x7, 0xe0, + 0x7, 0xf0, 0xf, 0xf0, 0xf, 0xf0, 0xf, 0xf8, + 0x1e, 0xf8, 0x1e, 0x78, 0x1e, 0x7c, 0x3c, 0x7c, + 0x3c, 0x3c, 0x3c, 0x3e, 0x78, 0x3e, 0x78, 0x1e, + 0x78, 0x1f, + + /* U+0079 "y" */ + 0xf0, 0x3f, 0xe0, 0xff, 0x87, 0xde, 0x1e, 0x7c, + 0x79, 0xf1, 0xe3, 0xcf, 0xf, 0x3c, 0x3e, 0xf0, + 0x7b, 0x81, 0xfe, 0x7, 0xf8, 0xf, 0xc0, 0x3f, + 0x0, 0xfc, 0x1, 0xe0, 0x7, 0x80, 0x1e, 0x0, + 0x78, 0x1, 0xe0, 0x7, 0x80, 0x1e, 0x0, 0x78, + 0x1, 0xe0, 0x7, 0x80, 0x1e, 0x0, 0x78, 0x1, + 0xe0, 0x7, 0x80, + + /* U+007A "z" */ + 0x7f, 0xfb, 0xff, 0xdf, 0xfe, 0xff, 0xf0, 0xf, + 0x80, 0x78, 0x7, 0xc0, 0x3e, 0x1, 0xe0, 0x1f, + 0x0, 0xf8, 0xf, 0x80, 0x7c, 0x3, 0xc0, 0x3e, + 0x1, 0xf0, 0x1f, 0x0, 0xf8, 0x7, 0xc0, 0x7c, + 0x3, 0xe0, 0x3e, 0x1, 0xf0, 0xf, 0x80, 0xf8, + 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x80, + + /* U+007B "{" */ + 0x7, 0xc3, 0xf1, 0xfc, 0x7f, 0x1f, 0x7, 0x81, + 0xe0, 0x78, 0x1e, 0x7, 0x81, 0xe0, 0x78, 0x1e, + 0x7, 0x83, 0xe3, 0xf0, 0xf8, 0x3f, 0xf, 0xe0, + 0xf8, 0x1e, 0x7, 0x81, 0xe0, 0x78, 0x1e, 0x7, + 0x81, 0xe0, 0x78, 0x1f, 0x7, 0xf1, 0xfc, 0x3f, + 0x7, 0xc0, + + /* U+007C "|" */ + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xf0, + + /* U+007D "}" */ + 0xf8, 0x3f, 0xf, 0xe3, 0xf8, 0x3e, 0x7, 0x81, + 0xe0, 0x78, 0x1e, 0x7, 0x81, 0xe0, 0x78, 0x1e, + 0x7, 0x81, 0xf0, 0x3f, 0xf, 0xc3, 0xf1, 0xfc, + 0x7c, 0x1e, 0x7, 0x81, 0xe0, 0x78, 0x1e, 0x7, + 0x81, 0xe0, 0x78, 0x3e, 0x3f, 0x8f, 0xe3, 0xf0, + 0xf8, 0x0, + + /* U+007E "~" */ + 0x1e, 0x4, 0x3f, 0x8e, 0x3f, 0xfe, 0x7f, 0xfc, + 0x71, 0xfc, 0x20, 0x78 +}; + + +/*--------------------- + * GLYPH DESCRIPTION + *--------------------*/ + +static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { + {.bitmap_index = 0, .adv_w = 0, .box_w = 0, .box_h = 0, .ofs_x = 0, .ofs_y = 0} /* id = 0 reserved */, + {.bitmap_index = 0, .adv_w = 102, .box_w = 1, .box_h = 1, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1, .adv_w = 134, .box_w = 4, .box_h = 29, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 16, .adv_w = 215, .box_w = 10, .box_h = 9, .ofs_x = 2, .ofs_y = 20}, + {.bitmap_index = 28, .adv_w = 264, .box_w = 15, .box_h = 29, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 83, .adv_w = 256, .box_w = 13, .box_h = 32, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 135, .adv_w = 377, .box_w = 21, .box_h = 29, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 212, .adv_w = 267, .box_w = 15, .box_h = 29, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 267, .adv_w = 120, .box_w = 4, .box_h = 9, .ofs_x = 2, .ofs_y = 20}, + {.bitmap_index = 272, .adv_w = 177, .box_w = 8, .box_h = 33, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 305, .adv_w = 177, .box_w = 7, .box_h = 33, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 334, .adv_w = 270, .box_w = 15, .box_h = 15, .ofs_x = 1, .ofs_y = 14}, + {.bitmap_index = 363, .adv_w = 256, .box_w = 14, .box_h = 14, .ofs_x = 1, .ofs_y = 7}, + {.bitmap_index = 388, .adv_w = 120, .box_w = 4, .box_h = 9, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 393, .adv_w = 173, .box_w = 9, .box_h = 4, .ofs_x = 1, .ofs_y = 12}, + {.bitmap_index = 398, .adv_w = 120, .box_w = 4, .box_h = 4, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 400, .adv_w = 249, .box_w = 15, .box_h = 29, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 455, .adv_w = 256, .box_w = 13, .box_h = 29, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 503, .adv_w = 256, .box_w = 9, .box_h = 29, .ofs_x = 3, .ofs_y = 0}, + {.bitmap_index = 536, .adv_w = 256, .box_w = 13, .box_h = 29, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 584, .adv_w = 256, .box_w = 13, .box_h = 29, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 632, .adv_w = 256, .box_w = 15, .box_h = 29, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 687, .adv_w = 256, .box_w = 13, .box_h = 29, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 735, .adv_w = 256, .box_w = 13, .box_h = 29, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 783, .adv_w = 256, .box_w = 13, .box_h = 29, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 831, .adv_w = 256, .box_w = 13, .box_h = 29, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 879, .adv_w = 256, .box_w = 13, .box_h = 29, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 927, .adv_w = 120, .box_w = 4, .box_h = 20, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 937, .adv_w = 120, .box_w = 4, .box_h = 25, .ofs_x = 2, .ofs_y = -5}, + {.bitmap_index = 950, .adv_w = 256, .box_w = 13, .box_h = 14, .ofs_x = 2, .ofs_y = 7}, + {.bitmap_index = 973, .adv_w = 256, .box_w = 13, .box_h = 10, .ofs_x = 1, .ofs_y = 9}, + {.bitmap_index = 990, .adv_w = 256, .box_w = 13, .box_h = 14, .ofs_x = 2, .ofs_y = 7}, + {.bitmap_index = 1013, .adv_w = 232, .box_w = 13, .box_h = 29, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1061, .adv_w = 445, .box_w = 26, .box_h = 33, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 1169, .adv_w = 257, .box_w = 16, .box_h = 29, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 1227, .adv_w = 259, .box_w = 13, .box_h = 29, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 1275, .adv_w = 245, .box_w = 13, .box_h = 29, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1323, .adv_w = 260, .box_w = 13, .box_h = 29, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 1371, .adv_w = 232, .box_w = 12, .box_h = 29, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 1415, .adv_w = 220, .box_w = 12, .box_h = 29, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 1459, .adv_w = 250, .box_w = 13, .box_h = 29, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1507, .adv_w = 269, .box_w = 13, .box_h = 29, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 1555, .adv_w = 123, .box_w = 4, .box_h = 29, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 1570, .adv_w = 170, .box_w = 8, .box_h = 29, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1599, .adv_w = 265, .box_w = 14, .box_h = 29, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 1650, .adv_w = 220, .box_w = 12, .box_h = 29, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 1694, .adv_w = 344, .box_w = 18, .box_h = 29, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 1760, .adv_w = 273, .box_w = 14, .box_h = 29, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 1811, .adv_w = 256, .box_w = 13, .box_h = 29, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 1859, .adv_w = 247, .box_w = 13, .box_h = 29, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 1907, .adv_w = 256, .box_w = 15, .box_h = 31, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 1966, .adv_w = 258, .box_w = 14, .box_h = 29, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 2017, .adv_w = 238, .box_w = 13, .box_h = 29, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2065, .adv_w = 233, .box_w = 14, .box_h = 29, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2116, .adv_w = 257, .box_w = 13, .box_h = 29, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2164, .adv_w = 244, .box_w = 15, .box_h = 29, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 2219, .adv_w = 356, .box_w = 21, .box_h = 29, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2296, .adv_w = 260, .box_w = 16, .box_h = 29, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 2354, .adv_w = 252, .box_w = 14, .box_h = 29, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2405, .adv_w = 232, .box_w = 13, .box_h = 29, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2453, .adv_w = 177, .box_w = 8, .box_h = 33, .ofs_x = 2, .ofs_y = -2}, + {.bitmap_index = 2486, .adv_w = 249, .box_w = 15, .box_h = 29, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 2541, .adv_w = 177, .box_w = 7, .box_h = 33, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 2570, .adv_w = 256, .box_w = 14, .box_h = 11, .ofs_x = 1, .ofs_y = 18}, + {.bitmap_index = 2590, .adv_w = 192, .box_w = 12, .box_h = 4, .ofs_x = 0, .ofs_y = -4}, + {.bitmap_index = 2596, .adv_w = 320, .box_w = 7, .box_h = 4, .ofs_x = 5, .ofs_y = 31}, + {.bitmap_index = 2600, .adv_w = 257, .box_w = 16, .box_h = 29, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 2658, .adv_w = 259, .box_w = 13, .box_h = 29, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 2706, .adv_w = 245, .box_w = 13, .box_h = 29, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2754, .adv_w = 260, .box_w = 13, .box_h = 29, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 2802, .adv_w = 232, .box_w = 12, .box_h = 29, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 2846, .adv_w = 220, .box_w = 12, .box_h = 29, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 2890, .adv_w = 250, .box_w = 13, .box_h = 29, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 2938, .adv_w = 269, .box_w = 13, .box_h = 29, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 2986, .adv_w = 123, .box_w = 4, .box_h = 29, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 3001, .adv_w = 170, .box_w = 8, .box_h = 29, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 3030, .adv_w = 265, .box_w = 14, .box_h = 29, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 3081, .adv_w = 220, .box_w = 12, .box_h = 29, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 3125, .adv_w = 344, .box_w = 18, .box_h = 29, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 3191, .adv_w = 273, .box_w = 14, .box_h = 29, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 3242, .adv_w = 256, .box_w = 13, .box_h = 29, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 3290, .adv_w = 247, .box_w = 13, .box_h = 29, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 3338, .adv_w = 256, .box_w = 15, .box_h = 31, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 3397, .adv_w = 258, .box_w = 14, .box_h = 29, .ofs_x = 2, .ofs_y = 0}, + {.bitmap_index = 3448, .adv_w = 238, .box_w = 13, .box_h = 29, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 3496, .adv_w = 233, .box_w = 14, .box_h = 29, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 3547, .adv_w = 257, .box_w = 13, .box_h = 29, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 3595, .adv_w = 244, .box_w = 15, .box_h = 29, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 3650, .adv_w = 356, .box_w = 21, .box_h = 29, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 3727, .adv_w = 260, .box_w = 16, .box_h = 29, .ofs_x = 0, .ofs_y = 0}, + {.bitmap_index = 3785, .adv_w = 252, .box_w = 14, .box_h = 29, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 3836, .adv_w = 232, .box_w = 13, .box_h = 29, .ofs_x = 1, .ofs_y = 0}, + {.bitmap_index = 3884, .adv_w = 177, .box_w = 10, .box_h = 33, .ofs_x = 0, .ofs_y = -2}, + {.bitmap_index = 3926, .adv_w = 320, .box_w = 4, .box_h = 41, .ofs_x = 8, .ofs_y = -8}, + {.bitmap_index = 3947, .adv_w = 177, .box_w = 10, .box_h = 33, .ofs_x = 1, .ofs_y = -2}, + {.bitmap_index = 3989, .adv_w = 256, .box_w = 16, .box_h = 6, .ofs_x = 0, .ofs_y = 11} +}; + +/*--------------------- + * CHARACTER MAPPING + *--------------------*/ + + + +/*Collect the unicode lists and glyph_id offsets*/ +static const lv_font_fmt_txt_cmap_t cmaps[] = +{ + { + .range_start = 32, .range_length = 95, .glyph_id_start = 1, + .unicode_list = NULL, .glyph_id_ofs_list = NULL, .list_length = 0, .type = LV_FONT_FMT_TXT_CMAP_FORMAT0_TINY + } +}; + +/*----------------- + * KERNING + *----------------*/ + + +/*Map glyph_ids to kern left classes*/ +static const uint8_t kern_left_class_mapping[] = +{ + 0, 0, 0, 0, 0, 0, 0, 1, + 0, 2, 0, 0, 0, 0, 3, 0, + 4, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 5, 6, 7, 8, 9, 10, 11, + 12, 0, 0, 13, 14, 15, 0, 0, + 9, 16, 9, 17, 18, 19, 20, 21, + 22, 23, 24, 25, 2, 0, 0, 0, + 0, 0, 6, 7, 8, 9, 10, 11, + 12, 0, 0, 0, 14, 15, 0, 0, + 9, 16, 9, 17, 18, 19, 20, 21, + 22, 23, 24, 25, 2, 0, 0, 0 +}; + +/*Map glyph_ids to kern right classes*/ +static const uint8_t kern_right_class_mapping[] = +{ + 0, 0, 0, 1, 0, 0, 0, 2, + 1, 0, 3, 4, 0, 5, 6, 5, + 7, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 8, 8, 0, 0, 0, + 9, 10, 11, 0, 12, 0, 0, 0, + 12, 0, 0, 13, 0, 0, 0, 0, + 12, 0, 12, 0, 14, 15, 16, 17, + 18, 19, 20, 21, 0, 0, 3, 0, + 0, 0, 11, 0, 12, 0, 0, 0, + 12, 0, 0, 0, 0, 0, 0, 0, + 12, 0, 12, 0, 14, 15, 16, 17, + 18, 19, 20, 21, 0, 0, 3, 0 +}; + +/*Kern values between classes*/ +static const int8_t kern_class_values[] = +{ + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, -6, 0, + 0, 0, 0, -8, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 6, + 0, 6, 0, 10, 0, 6, 6, 3, + 6, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, -13, 0, -40, 0, + -47, 0, -13, -5, -22, -32, -10, 0, + 0, 0, 0, 0, 0, -90, 0, 0, + 0, -16, 0, -29, 0, 6, 0, 6, + 6, 0, 3, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, -10, 0, + -6, 0, 0, 0, 0, 0, -13, -10, + 0, -34, 0, 6, -29, 6, -13, 6, + 6, -19, -3, 3, -1, 0, -2, -29, + -1, -18, -9, 1, -29, 3, -4, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, -3, -1, + -4, -10, 0, 0, 0, 0, 3, 0, + 0, 0, 0, 3, 3, 0, 1, 0, + 1, 0, 0, 0, 0, -4, -6, 0, + -4, 0, 0, 0, -4, 0, 0, 0, + 0, 0, -1, 0, -3, 0, -3, 0, + -1, 0, -10, -12, 0, 0, 0, 6, + 0, 3, 0, 0, 0, 0, 0, 0, + 0, 0, 1, 0, 0, 0, 0, 1, + 0, 1, 6, 0, 10, 6, -47, -3, + -19, 0, 3, -3, -20, 0, -33, 0, + 6, 0, 3, 3, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, -8, -10, 0, 0, 0, 0, 0, + -1, 0, -6, 0, 0, 0, -1, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, -3, 3, -13, 3, -22, 0, + 3, -6, -5, 0, -10, 0, -4, 0, + -1, 0, 0, 0, 0, 0, -47, 6, + 10, -64, 6, -47, 6, 6, -29, 0, + 3, -3, 6, 0, -50, 0, -29, -11, + 0, -56, 0, 0, 0, 0, 6, -60, + 0, -42, 0, 6, 0, -22, 0, -36, + 3, 1, 0, 0, 0, -8, -3, -1, + -3, 0, 0, 0, 3, 0, 6, 3, + 0, 0, 0, 0, 0, 0, -1, 0, + -3, -1, 0, -10, 0, 0, 0, 0, + 0, 0, -3, 0, 0, 0, 0, -2, + 0, 0, 0, 0, 0, 0, 0, -4, + -4, 0, 6, 0, 10, 6, -47, -47, + -29, -22, 3, -16, -29, -3, -33, 0, + 6, 0, 3, 3, 0, 3, 0, 0, + 0, 0, 0, -1, 0, -6, 0, 0, + 0, -1, 0, 0, 0, 0, 0, 0, + 0, -1, 0, 0, 6, -3, 6, 0, + -34, -13, -16, -10, 0, -6, -18, -1, + -31, 0, 3, 0, 3, 3, 0, 0, + 0, 6, 0, 6, 0, -16, -5, 0, + -3, 0, -3, -9, 0, -13, 0, 3, + 0, 3, 3, 0, 0, 0, 0, -3, + 3, -13, 3, -22, 6, 3, -6, -5, + 1, -10, 0, -4, 0, -1, 0, 0, + 0, 0, 0, 6, -13, 6, -6, -60, + -32, -35, -26, -6, -26, -29, -12, -37, + -10, 3, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 6, -10, 0, 6, + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 3 +}; + + +/*Collect the kern class' data in one place*/ +static const lv_font_fmt_txt_kern_classes_t kern_classes = +{ + .class_pair_values = kern_class_values, + .left_class_mapping = kern_left_class_mapping, + .right_class_mapping = kern_right_class_mapping, + .left_class_cnt = 25, + .right_class_cnt = 21, +}; + +/*-------------------- + * ALL CUSTOM DATA + *--------------------*/ + +#if LV_VERSION_CHECK(8, 0, 0) +/*Store all the custom data of the font*/ +static lv_font_fmt_txt_glyph_cache_t cache; +static const lv_font_fmt_txt_dsc_t font_dsc = { +#else +static lv_font_fmt_txt_dsc_t font_dsc = { +#endif + .glyph_bitmap = glyph_bitmap, + .glyph_dsc = glyph_dsc, + .cmaps = cmaps, + .kern_dsc = &kern_classes, + .kern_scale = 16, + .cmap_num = 1, + .bpp = 1, + .kern_classes = 1, + .bitmap_format = 0, +#if LV_VERSION_CHECK(8, 0, 0) + .cache = &cache +#endif +}; + + +/*----------------- + * PUBLIC FONT + *----------------*/ + +/*Initialize a public general font descriptor*/ +#if LV_VERSION_CHECK(8, 0, 0) +const lv_font_t bebas_neue_40 = { +#else +lv_font_t bebas_neue_40 = { +#endif + .get_glyph_dsc = lv_font_get_glyph_dsc_fmt_txt, /*Function pointer to get glyph's data*/ + .get_glyph_bitmap = lv_font_get_bitmap_fmt_txt, /*Function pointer to get glyph's bitmap*/ + .line_height = 43, /*The maximum line height required by the font*/ + .base_line = 8, /*Baseline measured from the bottom of the line*/ +#if !(LVGL_VERSION_MAJOR == 6 && LVGL_VERSION_MINOR == 0) + .subpx = LV_FONT_SUBPX_NONE, +#endif +#if LV_VERSION_CHECK(7, 4, 0) || LVGL_VERSION_MAJOR >= 8 + .underline_position = -2, + .underline_thickness = 3, +#endif + .dsc = &font_dsc /*The custom font data. Will be accessed by `get_glyph_bitmap/dsc` */ +}; + + + +#endif /*#if BEBAS_NEUE_40*/ + diff --git a/main/assets/fonts/material_webfont/LICENSE b/main/assets/fonts/material_webfont/LICENSE new file mode 100644 index 0000000..382f8a1 --- /dev/null +++ b/main/assets/fonts/material_webfont/LICENSE @@ -0,0 +1,20 @@ +Pictogrammers Free License +-------------------------- + +This icon collection is released as free, open source, and GPL friendly by +the [Pictogrammers](http://pictogrammers.com/) icon group. You may use it +for commercial projects, open source projects, or anything really. + +# Icons: Apache 2.0 (https://www.apache.org/licenses/LICENSE-2.0) +Some of the icons are redistributed under the Apache 2.0 license. All other +icons are either redistributed under their respective licenses or are +distributed under the Apache 2.0 license. + +# Fonts: Apache 2.0 (https://www.apache.org/licenses/LICENSE-2.0) +All web and desktop fonts are distributed under the Apache 2.0 license. Web +and desktop fonts contain some icons that are redistributed under the Apache +2.0 license. All other icons are either redistributed under their respective +licenses or are distributed under the Apache 2.0 license. + +# Code: MIT (https://opensource.org/licenses/MIT) +The MIT license applies to all non-font and non-icon files. diff --git a/main/assets/fonts/material_webfont/material_webfont_32.c b/main/assets/fonts/material_webfont/material_webfont_32.c new file mode 100644 index 0000000..4b2f695 --- /dev/null +++ b/main/assets/fonts/material_webfont/material_webfont_32.c @@ -0,0 +1,168 @@ +/******************************************************************************* + * Size: 32 px + * Bpp: 1 + * Opts: + ******************************************************************************/ + +#ifdef LV_LVGL_H_INCLUDE_SIMPLE +#include "lvgl.h" +#else +#include "lvgl/lvgl.h" +#endif + +#ifndef MATERIAL_WEBFONT_32 +#define MATERIAL_WEBFONT_32 1 +#endif + +#if MATERIAL_WEBFONT_32 + +/*----------------- + * BITMAPS + *----------------*/ + +/*Store the image of the glyphs*/ +static LV_ATTRIBUTE_LARGE_CONST const uint8_t glyph_bitmap[] = { + /* U+F007A "󰁺" */ + 0xf, 0xf0, 0xf, 0xf0, 0xf, 0xf0, 0x7f, 0xfe, + 0xff, 0xff, 0xe0, 0x7, 0xe0, 0x7, 0xe0, 0x7, + 0xe0, 0x7, 0xe0, 0x7, 0xe0, 0x7, 0xe0, 0x7, + 0xe0, 0x7, 0xe0, 0x7, 0xe0, 0x7, 0xe0, 0x7, + 0xe0, 0x7, 0xe0, 0x7, 0xe0, 0x7, 0xe0, 0x7, + 0xe0, 0x7, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x7f, 0xfe, + + /* U+F0504 "󰔄" */ + 0x3c, 0x0, 0x0, 0x7e, 0x0, 0x0, 0xe7, 0x1, + 0xf8, 0xe7, 0x7, 0xfc, 0xe7, 0x1f, 0xfe, 0xe7, + 0x3f, 0xfe, 0x7e, 0x3f, 0xfe, 0x3c, 0x7f, 0x4, + 0x0, 0x7c, 0x0, 0x0, 0xf8, 0x0, 0x0, 0xf8, + 0x0, 0x0, 0xf0, 0x0, 0x0, 0xf0, 0x0, 0x0, + 0xf0, 0x0, 0x0, 0xf0, 0x0, 0x0, 0xf8, 0x0, + 0x0, 0x78, 0x0, 0x0, 0x7c, 0x0, 0x0, 0x3f, + 0xc, 0x0, 0x1f, 0xfc, 0x0, 0xf, 0xfe, 0x0, + 0x7, 0xfe, 0x0, 0x1, 0xf8, + + /* U+F058C "󰖌" */ + 0x0, 0x0, 0x1, 0x80, 0x3, 0xc0, 0x7, 0xe0, + 0x7, 0xe0, 0xf, 0xf0, 0x1f, 0xf8, 0x1f, 0xf8, + 0x3f, 0xfc, 0x3f, 0xfc, 0x7f, 0xfe, 0x7f, 0xfe, + 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, + 0xff, 0xff, 0x7f, 0xfe, 0x7f, 0xfe, 0x3f, 0xfc, + 0x1f, 0xf8, 0xf, 0xf0, 0x1, 0x80, + + /* U+F0599 "󰖙" */ + 0x0, 0x0, 0x0, 0x0, 0x18, 0x0, 0x0, 0x18, + 0x0, 0x0, 0x3c, 0x0, 0x0, 0x66, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x0, 0xf8, 0x7e, 0x1f, + 0x71, 0xff, 0x8e, 0x63, 0xc3, 0xc6, 0x23, 0x81, + 0xc4, 0x7, 0x0, 0xe0, 0x7, 0x0, 0xe0, 0x7, + 0x0, 0xe0, 0x7, 0x0, 0xe0, 0x23, 0x81, 0xc4, + 0x23, 0xc3, 0xc4, 0x71, 0xff, 0x8e, 0xf8, 0x7e, + 0x1f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, + 0x66, 0x0, 0x0, 0x3c, 0x0, 0x0, 0x18, 0x0, + 0x0, 0x18, 0x0, 0x0, 0x0, 0x0, + + /* U+F092D "󰤭" */ + 0x8, 0x0, 0x0, 0x0, 0x1c, 0x0, 0x0, 0x0, + 0xe, 0x1f, 0xf8, 0x0, 0x7, 0x1f, 0xff, 0x80, + 0x7, 0x8f, 0xff, 0xe0, 0x1f, 0xc7, 0xff, 0xf8, + 0x3f, 0xe3, 0xff, 0xfc, 0x7f, 0xf1, 0xff, 0xfe, + 0x7f, 0xf8, 0xff, 0xfe, 0x3f, 0xfc, 0x7f, 0xfc, + 0x1f, 0xfe, 0x3f, 0xf8, 0xf, 0xff, 0x1f, 0xf0, + 0x7, 0xff, 0x8f, 0xe0, 0x7, 0xff, 0xc7, 0xe0, + 0x3, 0xff, 0xe3, 0xc0, 0x1, 0xff, 0xf1, 0x80, + 0x0, 0xff, 0xf8, 0x0, 0x0, 0x7f, 0xfc, 0x0, + 0x0, 0x7f, 0xfe, 0x0, 0x0, 0x3f, 0xff, 0x0, + 0x0, 0x1f, 0xff, 0x80, 0x0, 0xf, 0xf3, 0xc0, + 0x0, 0x7, 0xe1, 0xe0, 0x0, 0x7, 0xe0, 0xe0, + 0x0, 0x3, 0xc0, 0x40, 0x0, 0x1, 0x80, 0x0, + 0x0, 0x0, 0x0, 0x0 +}; + + +/*--------------------- + * GLYPH DESCRIPTION + *--------------------*/ + +static const lv_font_fmt_txt_glyph_dsc_t glyph_dsc[] = { + {.bitmap_index = 0, .adv_w = 0, .box_w = 0, .box_h = 0, .ofs_x = 0, .ofs_y = 0} /* id = 0 reserved */, + {.bitmap_index = 0, .adv_w = 512, .box_w = 16, .box_h = 26, .ofs_x = 8, .ofs_y = -1}, + {.bitmap_index = 52, .adv_w = 512, .box_w = 24, .box_h = 23, .ofs_x = 4, .ofs_y = 1}, + {.bitmap_index = 121, .adv_w = 512, .box_w = 16, .box_h = 23, .ofs_x = 8, .ofs_y = 1}, + {.bitmap_index = 167, .adv_w = 512, .box_w = 24, .box_h = 26, .ofs_x = 4, .ofs_y = -1}, + {.bitmap_index = 245, .adv_w = 512, .box_w = 32, .box_h = 27, .ofs_x = 0, .ofs_y = -1} +}; + +/*--------------------- + * CHARACTER MAPPING + *--------------------*/ + +static const uint16_t unicode_list_0[] = { + 0x0, 0x48a, 0x512, 0x51f, 0x8b3 +}; + +/*Collect the unicode lists and glyph_id offsets*/ +static const lv_font_fmt_txt_cmap_t cmaps[] = +{ + { + .range_start = 983162, .range_length = 2228, .glyph_id_start = 1, + .unicode_list = unicode_list_0, .glyph_id_ofs_list = NULL, .list_length = 5, .type = LV_FONT_FMT_TXT_CMAP_SPARSE_TINY + } +}; + + + +/*-------------------- + * ALL CUSTOM DATA + *--------------------*/ + +#if LV_VERSION_CHECK(8, 0, 0) +/*Store all the custom data of the font*/ +static lv_font_fmt_txt_glyph_cache_t cache; +static const lv_font_fmt_txt_dsc_t font_dsc = { +#else +static lv_font_fmt_txt_dsc_t font_dsc = { +#endif + .glyph_bitmap = glyph_bitmap, + .glyph_dsc = glyph_dsc, + .cmaps = cmaps, + .kern_dsc = NULL, + .kern_scale = 0, + .cmap_num = 1, + .bpp = 1, + .kern_classes = 0, + .bitmap_format = 0, +#if LV_VERSION_CHECK(8, 0, 0) + .cache = &cache +#endif +}; + + +/*----------------- + * PUBLIC FONT + *----------------*/ + +/*Initialize a public general font descriptor*/ +#if LV_VERSION_CHECK(8, 0, 0) +const lv_font_t material_webfont_32 = { +#else +lv_font_t material_webfont_32 = { +#endif + .get_glyph_dsc = lv_font_get_glyph_dsc_fmt_txt, /*Function pointer to get glyph's data*/ + .get_glyph_bitmap = lv_font_get_bitmap_fmt_txt, /*Function pointer to get glyph's bitmap*/ + .line_height = 27, /*The maximum line height required by the font*/ + .base_line = 1, /*Baseline measured from the bottom of the line*/ +#if !(LVGL_VERSION_MAJOR == 6 && LVGL_VERSION_MINOR == 0) + .subpx = LV_FONT_SUBPX_NONE, +#endif +#if LV_VERSION_CHECK(7, 4, 0) || LVGL_VERSION_MAJOR >= 8 + .underline_position = 0, + .underline_thickness = 0, +#endif + .dsc = &font_dsc /*The custom font data. Will be accessed by `get_glyph_bitmap/dsc` */ +}; + + + +#endif /*#if MATERIAL_WEBFONT_32*/ + diff --git a/main/assets/fonts/material_webfont/materialdesignicons-webfont.ttf b/main/assets/fonts/material_webfont/materialdesignicons-webfont.ttf new file mode 100644 index 0000000000000000000000000000000000000000..ba873595714be0aed5b3f40c3f409125d58b741e GIT binary patch literal 1147844 zcmeF4b#UcLdS!2wN(GXtvzeKhnVFfnyPBDqnVFfHnVFfHnVGrvd}r1X-i_V;W9@OY zZH?pj-gooMyjjw#?%%vogwiKTclJp~rd?!(mF6G!@QHRy`pinY;xa2tGyO8xukk#u zkKpyn>u)(^o2#ZAv}Cf$HR&_+UK?+*>qa{*KFp`-+dmn6^$VM9IAnwM9-VhzX5WFC zHzDZUab}zwtw&Sv>RVY`d+ck*4yte|C_U{ns&=R>GSw};qHCz8F~+E89MZ@ zl{zl3l#{+RB*|9U__bm-8#Ixg??ATI`T)IZMP|BrTkpItMR zBekiE|4WAYnqre_Gk5wfxbTuIW|%F8?66fvPrrY){;z$XEjHbF2e-HHjGv%NEHU77} zkN@u9pTGP4{w-hozvJHCulL{k@9W?3J=1%q-uF!Jd!Y9{@OOC+)W5@e|2@|Ge*C+< zAA9f7`(EsQ5B&Fd5A^=K=fB7I`QQ5Yx%c^`_kHqjeGm2S?|l#Tz6bt(?}5MLKimI~ zcj|rb{{7y&z2B4G?@8}_p!Yq{`yTlBdk^$}Ch+g~wd{Rg{>OeTd*8eNv0v|h#{2s} z;(Pcn9si>Lj6cW!>&)u?f35ef^?rSN-vhnxf!_DPKj%Hr`_JEh&e!!n+xxZmebD

t?_Zn$Ebs5$d-i@0d*1`S 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� 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Π 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%0DWF0v6(3fNc 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%0Ath$C54elajWnLig?=P61&w1sq>I`h91 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

$4x99{^WKJe9$#|$ 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 *AD zGLRS+1-uWjKL}kZsTjddiG+~7{vn{aah*!|Wc3a9O<$a0MeuBzcoD2bexad$ z0@Mrl4@vXnXP`0-ncXUG9;7j5E34(l@&+Vu<;!yk`QrJf5N7z4PhhafA{8^B_r62% zT~MIiFMC_YdWY3QYa8*w2T;2T<==$4$nY3|LN<{!2u6aRr`!S%-|>e0*l_f`t<_J+4rpY?`(^OKKJkJcwv7Zd|-L6B`*D`@H64nA zr?DFF1<=94N#m9YGG4)65djWj=y49PNkbAEdWzt!LnY6lhhVG*0}O2UD7F}$wgWo} z^TSI39MZGQJ@8e?ESLs=5cD{XW;tAlW)uiB+LJMX zmR|-RLAfR<<|q-eTK~sB!FB*Za@j1%u*&F-8_W{=gOF6A$4KA>)`)ud*L@2w>h7CL zov0pOGrYQOdTT|)lRe$kIE)lI^uX*8%G8CVf9@Yt^!194u1RaCb1mIn#i3lgLc;X% zvs5YwoQpqr`(CV|yRU#jpY*p+56x>J-<`VR)&Ze-G4wN}vmh%bJR~syJtPBQqK%jW zoao~llp{#!3}rl1ME%lN8Wq|9@ygp!8__L3-&w(`2|Vrcm^M zr3rlb%LAl;qX~3mkPlZto(Mt#LtX&LsfS4&i@Rrb5`-av7ai6(@NMKsf{b0{i2=tF zuye3jB6B8M$c|fhgcpp-Co@bStxEp7%rlf``qT9|N91EfZ$V^*G+<|fk?6tS*aULI zk^GV>2wbozYkq89ilGEPC+=+o_z*aucyrU-*IO1S*}}BEp4FZ$6+8f*9G559i458y z*(d4$i*mQq?+v0lh*o5vnnP3vQ1w_BP%ZeNmeVjqbqKFjTaaw9E(4eKvxPgtw2AA--9;|)>On~ z_-V_hyRkh#fB*A)P>-@P?(e7k@%zc1-y29*aT34hJsWT~FP7qdoBS^t+--oD7=|ek z!~XrEA9T8}34>8&BCL#SqW|(fC_&OmvOI15yd-14xdHo4I7rwih6Y9jf=eKCCjoN% zK^_IUng$AfoY@M8nLZD0Q&Kfw5>IB!uC>|j|1IA~V$ zR$Nx7cjV1(@!h-2iAGLIj?YR6B-FlQF%A<5!N;+6P0$Q)3{oT@35=AKP)(FkY?bB{ z3^9``1k@-zLx_wTW^*bQ)jhs@FfHZKli*%ipoSJH5F8H)_nv+7BK8RSjqpFh;R%6x z6wJ6kkw3tWk>L$?!jb6|^lS@);r|`{<4TU|3Aq|}sGA2ia!bpd5>&VDzk_YGr1I3s z0STPhYbB9du54}7a@YNlNAaU=3&rF7xpmN5Aiz-j0}TL(4DoDWP6E@;pUK#kV%7f_ zB@k~GTe@cXtdYf{@PDV~LfdS1&b0LXe;|sCE*=HhsL`cjDYw}eRv;`Ej|_||=^(pF zK{)eYxK4;Ws0A*93|-IGhN9bgZo6M-}ZoPc-Z7m zv37(}jogO%hcS*yUmqSG@Z*1%`(Q zhM}J!8%jnzo#^)5#REz%*#8(%W})~pk}9F>JFs%M4+<0kz+?v9&y%Tv=yk_;MbHkY zgP=A5*VC|6ItYX#* zUoK7TRW+#df``%m@uQ<3WM)|8_l$}PNMGig8$7 zKhu#d@$cJDS@HL6gMkW`H){8`8a4uxvGTYycFp@F*7Ur<3Nm}p6mQ4Z$2By1tD z{~l7JnNw2YV5>NK0U;QA` zaZJGZs~N|nR}@BO98+F4mNny;_6o;}WE}HeRk4;C#{!(+Ted-`CLLNdXcbhXNyiq= z+60ws)V58>N==$|Zq=Z}Uw-$OC#yE;(6L3^HbL=O<9>Yaxu5%X#hbKg(gE6O9MrIT zP{%IK5;}Ei8q~By+txwF+P3M`q*bf7LG3!UZP}zzr>xC8b!wM8HnwTT`K*oFwgyb9 z240;2jj97=R5$QyKI>R*$;OhVVcmMm9 zRo!%;wo!{g@I14^%>DE4|484zs4EV?ZR7sEr$3G1_YJ+e!)r&cE z2e^N0I4b6D2lc)c{A&wm+PS}L31=F?)mgooyMNUVG96;!U(-KbpVd7!tv&v0n44~W z$308`?ZtZo)aZmXevHB(Y#c+v7mo>;h)E!nDwv9Cm<}->CT3waWKFp+Z_Eb*(fz=D z8~`F;5EhJO!a}f6EDXZIBCtp-GX$nYV=-735NTtvI4mAZz_MZ4u|zBfmW1WRa$&h4 z8a6M~Awu9x$yhzb+LL_eXIf25Nm`r#+qPFv1V9vtOW+OF0ocvYpe~{7HfyK$2wpg zu})ZLtP9o^>xOm5dSE@VURZCe57rk;!}?+Uu>sgXY!EgW8-fkRhGE085!gs<6gC%*gR}Lwg6j*Ey5OKOR%NbGRO~I z0r7gPpti&sY%R79TaRtPHe#Ew&Da)fD@1{A$97;lv0WJGGvH6#hwaA>UQrKmFf`A)fXr_6#aSy}({#udvtH8|*Fi4ttM%z&>K1u+P{R>?`&S`yETizT;4Z z8QER|qydbvID@k|hx53Ai@1c#xPq&=hU>V2n}8i=;|}h^A-)MJ%lYB{VC4X0$vfXgjdF^;3;@jyc%8|uYuRZ zYvHx=I(S{Y9$p`BfH%Y&;f?VocvHL?-W+d%x5QKNR(NZ?4c-=ShquQ&;2rT!cxSu| z-WBhLcgK6+J@H<6Z@drQ7f-|c;r;Oe_&|IRJ{TW@551&ZziQI052R3Iu6m59nj6(WVGN>n4N6E%pM zL@lB=QHQ8Y)FbK>4Ty$BBcd_UglI}MBbpN}h?Ybu(TZqIv?1CO?TGe72cjd>_p(dx*WnK4L#{fH+7TA`TNrh@-?Y z;y7`FI7yr$P7`N{v&1jNIpREVfw)LqA}$lZ5?6?;#5LkNaf7%?+#+rhcZj>hJ>ov` z8}Wd6NIW7Q6Hkbz#53YK@q&0sydqu`Z-}?VJK{a@f%r&#B0dveh_A#q;&&pQ_)dBO zlnYLROhi&7O)?})a)4+F=}e?V%A`W7q(`I^d)PovcCD zBx{ki$vR|RvL0EVY(O?78WN)$$*_TWs`;q<00pvh(5IL9}LJlQ|k;BOm{0<5xJOLLM|nj0oL0JawWNn zTurVa*OKeV_2dR}Be{v(Ol~2!lH17blF!KJB zR3<8f3Z=rRa4Ld|q%s5AWHc2+WudZCu~ZxtPbE;O_Qx&L+R3)l1RfS5Ss#4Xc>QoJ? zCRK~7P1T|5QuV0%R0FCZ)re|LHKCeP&8X&73#uiRO0}X|Q*EfWR6D9Y)q(0rb)q^` zU8t^9H>x|;gX&53qIy$(sJ>Jh)sN~=4WI^6gQ&sO5Naqjj2cdjphi-osL|9IYAiL5 z8c$82CQ_5A$Sra5^5>6j9N~upjJ|= zsMXXOYAv;nT2F1DHd33Y&D0iZE47WMZpOb&fhuU7#*fm#E9suhbRlDs_#zPTinxQn#qv)E(+Bb&tAF z{YE{Y9#W5}$J7(*DfNtcPQ9RBQm?4j)Enw8^^ST^eV{&4pQz8&7wRkZjryHRr@qr( zG)ChzL6eXVO@qacr8$5}6=;!`Xqi@MmDV8V(4bA)qHWp%3_5SxhxVoYXn#6@4y1$V zU^){WLWj~}bT}PBN79+;C_0*sp|j9g=~z0Bj;9moY;<-yk z=cfzM$#g-w5M7uqLKmfr(Z%T!bV<4tU79XKm!-?m<>?A^MYo&{gSbbalE0 zU6Zaw*QV>xb?JI^eYyeNkZwdbrkl`B>1K3ux&_^mPNiGXt?4#&Te=QJZ^k#Ysy_McZZ>M+AJLz5YZh8;Bm)=M3rw`Bv=|l8k`UriL zK1Ls>PtYgnQ}k*241JdVg+520r!UYK=}Yuw`d9i2eU-jOU#D--H|bmSZTb#G$~XVrnyWn7T|orasevX~;BU8Z%9prc5)YIn#n^$)qx^nAS`irY+NsY0q?EIx?M@ z&P*4kE7OhX&h%hEhW;Qd2naj*$<}(YJh0G#mF|&kO$}D4+Gb@;t z%qnIzvxZsAtYg+Q8<>sECT26Uh1tq%W41Fpn4QcnW;e5k*~{!>_A>{VgUli3Fmr@C z${b^kGbfmn%qiwHbA~y~{KA}L&NCO7i_9hFGV?2Qg}KUHW3Dqdn48Qk<~DPOxy#&R z?lZqJ515C{Bjz#lgn7z5W1cfFn3v2e<~8$%dCRT8^8ua zb(~-}6C1*YvSDmE6f2EnGqX`_G#kTaVY9NaY#bZUCa~Gq>}(>NgH2*{vbosYY#uf* zn~%-U7GRUvf@~qSFk6Hz$`)gbvnAM)Y$*sdF2j~(%dzFz3T#ET5?h(A!ltlQ*=lTc zwgy|1t;N=6>#%j%dTf2R0o#ym#5QJ|uua)!Y;(2++mcOXTd}R#Hf&qA9owGmz;

  • |k~XJCq&94rfQOBiT{xXm$)c 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 literal 0 HcmV?d00001 diff --git a/main/assets/fonts/material_webfont/meta.json b/main/assets/fonts/material_webfont/meta.json new file mode 100644 index 0000000..e740eb5 --- /dev/null +++ b/main/assets/fonts/material_webfont/meta.json @@ -0,0 +1,78643 @@ +[ + { + "id": "CBFA6722-0EE6-49B4-B5C2-0B177A5523C2", + "name": "ab-testing", + "codepoint": "F01C9", + "aliases": [], + "tags": [ + "Developer \/ Languages" + ], + "author": "Michael Richins", + "version": "4.0.96" + }, + { + "id": "5B09B959-4A49-4674-9035-6CFD3D157C3F", + "name": "abacus", + "codepoint": "F16E0", + "aliases": [], + "tags": [ + "Math" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "E20665F3-5354-46C2-9162-4202B20DCA05", + "name": "abjad-arabic", + "codepoint": "F1328", + "aliases": [ + "writing-system-arabic" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Haley Halcyon", + "version": "4.9.95" + }, + { + "id": "FC508376-0233-498A-ABF8-B289241031FF", + "name": "abjad-hebrew", + "codepoint": "F1329", + "aliases": [ + "writing-system-hebrew" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Haley Halcyon", + "version": "4.9.95" + }, + { + "id": "E211A028-22EA-4A78-9306-FC8FF8494D02", + "name": "abugida-devanagari", + "codepoint": "F132A", + "aliases": [ + "writing-system-devanagari" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Haley Halcyon", + "version": "4.9.95" + }, + { + "id": "F782C16A-0558-4347-AB62-3E4A8DD299AD", + "name": "abugida-thai", + "codepoint": "F132B", + "aliases": [ + "writing-system-thai" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Haley Halcyon", + "version": "4.9.95" + }, + { + "id": "4F013652-22DE-48CF-886B-A0FB995E8B41", + "name": "access-point", + "codepoint": "F0003", + "aliases": [ + "wireless" + ], + "tags": [], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "45F0D360-E817-4152-A66E-EF019E10ED47", + "name": "access-point-check", + "codepoint": "F1538", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.4.55" + }, + { + "id": "AAFAB208-B7D5-44A0-915F-761A83D295A3", + "name": "access-point-minus", + "codepoint": "F1539", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.4.55" + }, + { + "id": "06048943-9EE5-4FE2-91D7-7DA162E55203", + "name": "access-point-network", + "codepoint": "F0002", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "6DC5A262-63FE-4C77-A66C-B323DF4F82BF", + "name": "access-point-network-off", + "codepoint": "F0BE1", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "ED942A44-4B13-47E6-A674-E376C338F671", + "name": "access-point-off", + "codepoint": "F1511", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.4.55" + }, + { + "id": "41E38A13-4B9B-4260-81EA-1DB407986154", + "name": "access-point-plus", + "codepoint": "F153A", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.4.55" + }, + { + "id": "2E102C4D-6301-46CA-A3D8-35270CE751C5", + "name": "access-point-remove", + "codepoint": "F153B", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.4.55" + }, + { + "id": "E76EC23F-AB71-49B3-9173-841544527A20", + "name": "account", + "codepoint": "F0004", + "aliases": [ + "person", + "user" + ], + "tags": [ + "Account \/ User", + "Home Automation" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "3D869F3A-8C3E-4ECB-829E-7785230FA680", + "name": "account-alert", + "codepoint": "F0005", + "aliases": [ + "user-alert", + "account-warning", + "user-warning", + "person-alert", + "person-warning" + ], + "tags": [ + "Account \/ User", + "Alert \/ Error" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "858CE593-C905-42C6-ABA5-99379EBD95AE", + "name": "account-alert-outline", + "codepoint": "F0B50", + "aliases": [ + "user-alert-outline", + "account-warning-outline", + "user-warning-outline", + "person-warning-outline", + "person-alert-outline" + ], + "tags": [ + "Account \/ User", + "Alert \/ Error" + ], + "author": "Coffeemate", + "version": "3.0.39" + }, + { + "id": "785965F1-58C0-42F8-9433-9B6A3ACF1AE6", + "name": "account-arrow-down", + "codepoint": "F1868", + "aliases": [ + "account-download" + ], + "tags": [ + "Account \/ User" + ], + "author": "Colton Wiscombe", + "version": "6.2.95" + }, + { + "id": "8149AE23-C281-4BB3-8150-A5988CE17CD2", + "name": "account-arrow-down-outline", + "codepoint": "F1869", + "aliases": [ + "account-download-outline" + ], + "tags": [ + "Account \/ User" + ], + "author": "Colton Wiscombe", + "version": "6.2.95" + }, + { + "id": "34EAE057-F0E4-476A-B988-9BD149263BDF", + "name": "account-arrow-left", + "codepoint": "F0B51", + "aliases": [ + "user-arrow-left", + "person-arrow-left" + ], + "tags": [ + "Account \/ User" + ], + "author": "Coffeemate", + "version": "3.0.39" + }, + { + "id": "D46BABF7-60F1-41B8-BE5E-5D52367FE58C", + "name": "account-arrow-left-outline", + "codepoint": "F0B52", + "aliases": [ + "user-arrow-left-outline", + "person-arrow-left-outline" + ], + "tags": [ + "Account \/ User" + ], + "author": "Coffeemate", + "version": "3.0.39" + }, + { + "id": "6C4EDCE5-0741-4BF4-B16A-112892C6AB98", + "name": "account-arrow-right", + "codepoint": "F0B53", + "aliases": [ + "user-arrow-right", + "person-arrow-right" + ], + "tags": [ + "Account \/ User" + ], + "author": "Coffeemate", + "version": "3.0.39" + }, + { + "id": "7CB2DA6F-D0F6-4A7A-A761-E53B564744E8", + "name": "account-arrow-right-outline", + "codepoint": "F0B54", + "aliases": [ + "user-arrow-right-outline", + "person-arrow-right-outline" + ], + "tags": [ + "Account \/ User" + ], + "author": "Coffeemate", + "version": "3.0.39" + }, + { + "id": "9F3DF21B-6A76-4916-BA8D-E9EF40D4A01F", + "name": "account-arrow-up", + "codepoint": "F1867", + "aliases": [ + "account-upload" + ], + "tags": [ + "Account \/ User" + ], + "author": "Colton Wiscombe", + "version": "6.2.95" + }, + { + "id": "A5BAE236-3B16-41B5-B779-435AD2A6DAEE", + "name": "account-arrow-up-outline", + "codepoint": "F186A", + "aliases": [ + "account-upload-outline" + ], + "tags": [ + "Account \/ User" + ], + "author": "Colton Wiscombe", + "version": "6.2.95" + }, + { + "id": "474D0A31-E56A-4780-9417-DCF8D9A38830", + "name": "account-box", + "codepoint": "F0006", + "aliases": [ + "selfie", + "user-box", + "person-box", + "contact" + ], + "tags": [ + "Account \/ User" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "D612088F-9D2A-424A-9403-046993A3EB14", + "name": "account-box-multiple", + "codepoint": "F0934", + "aliases": [ + "switch-account", + "user-box-multiple", + "account-boxes", + "user-boxes", + "person-box-multiple", + "person-boxes" + ], + "tags": [ + "Account \/ User" + ], + "author": "Google", + "version": "2.4.85" + }, + { + "id": "31302999-CD15-4F1F-A5D2-374D90F15099", + "name": "account-box-multiple-outline", + "codepoint": "F100A", + "aliases": [], + "tags": [ + "Account \/ User" + ], + "author": "Michael Irigoyen", + "version": "4.1.95" + }, + { + "id": "537261C5-1AF6-478F-A8BA-4349865D9C1C", + "name": "account-box-outline", + "codepoint": "F0007", + "aliases": [ + "selfie-outline", + "user-box-outline", + "portrait", + "contact-outline", + "person-box-outline" + ], + "tags": [ + "Account \/ User" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "31CE9FF1-9698-4ED6-8E9B-392840E55DDE", + "name": "account-cancel", + "codepoint": "F12DF", + "aliases": [ + "user-cancel", + "user-block", + "person-cancel", + "person-block" + ], + "tags": [ + "Account \/ User" + ], + "author": "Simran", + "version": "4.8.95" + }, + { + "id": "D2CDB839-C734-46EA-A4DE-085CBF29DD0F", + "name": "account-cancel-outline", + "codepoint": "F12E0", + "aliases": [ + "user-cancel-outline", + "user-block-outline", + "person-cancel-outline", + "person-block-outline" + ], + "tags": [ + "Account \/ User" + ], + "author": "Simran", + "version": "4.8.95" + }, + { + "id": "E3270EE8-3F41-481F-9B15-E8925C62A83C", + "name": "account-cash", + "codepoint": "F1097", + "aliases": [], + "tags": [ + "Account \/ User", + "Banking" + ], + "author": "Jacob Wright", + "version": "4.2.95" + }, + { + "id": "582FFF95-D87F-4A58-A3C1-F1A352BF8F56", + "name": "account-cash-outline", + "codepoint": "F1098", + "aliases": [], + "tags": [ + "Account \/ User", + "Banking" + ], + "author": "Jacob Wright", + "version": "4.2.95" + }, + { + "id": "F3C76352-A033-4969-BBC4-99E2BEE84FAE", + "name": "account-check", + "codepoint": "F0008", + "aliases": [ + "user-check", + "account-tick", + "user-tick", + "person-check", + "person-tick", + "how-to-reg" + ], + "tags": [ + "Account \/ User" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "50F80B8D-C424-4FC1-9A2E-81715787C240", + "name": "account-check-outline", + "codepoint": "F0BE2", + "aliases": [ + "account-tick-outline", + "user-check-outline", + "user-tick-outline", + "person-check-outline", + "person-tick-outline", + "how-to-reg-outline" + ], + "tags": [ + "Account \/ User" + ], + "author": "Google", + "version": "3.2.89" + }, + { + "id": "431A5DA2-1B7E-4B86-8EAE-BEE1099048A1", + "name": "account-child", + "codepoint": "F0A89", + "aliases": [ + "user-child", + "person-child", + "guardian" + ], + "tags": [ + "Account \/ User" + ], + "author": "Google", + "version": "2.7.94" + }, + { + "id": "AF386BC9-683F-42B4-97DA-C256CF82C79F", + "name": "account-child-circle", + "codepoint": "F0A8A", + "aliases": [ + "user-child-circle", + "person-child-circle", + "guardian-circle" + ], + "tags": [ + "Account \/ User" + ], + "author": "Google", + "version": "2.7.94" + }, + { + "id": "B8194820-B46C-41EB-921A-4DD7DDF9BE1F", + "name": "account-child-outline", + "codepoint": "F10C8", + "aliases": [], + "tags": [ + "Account \/ User" + ], + "author": "Sascha Wohlgemuth", + "version": "4.3.95" + }, + { + "id": "1D7E8F31-998D-442A-80E6-EBB8DFA8CBA2", + "name": "account-circle", + "codepoint": "F0009", + "aliases": [ + "user-circle", + "person-circle" + ], + "tags": [ + "Account \/ User" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "17CE7627-5016-43F9-B42D-AFAAFA0A0564", + "name": "account-circle-outline", + "codepoint": "F0B55", + "aliases": [ + "user-circle-outline", + "person-circle-outline" + ], + "tags": [ + "Account \/ User" + ], + "author": "Google", + "version": "3.0.39" + }, + { + "id": "E9851E02-790A-40FD-918A-BB1145051470", + "name": "account-clock", + "codepoint": "F0B56", + "aliases": [ + "user-clock", + "account-pending", + "person-clock" + ], + "tags": [ + "Account \/ User", + "Date \/ Time" + ], + "author": "Coffeemate", + "version": "3.0.39" + }, + { + "id": "AA800DB2-3369-412C-B881-0F99863D13F7", + "name": "account-clock-outline", + "codepoint": "F0B57", + "aliases": [ + "user-clock-outline", + "account-pending-outline", + "person-clock-outline" + ], + "tags": [ + "Account \/ User", + "Date \/ Time" + ], + "author": "Coffeemate", + "version": "3.0.39" + }, + { + "id": "CA7B4B4E-B909-48F5-B93B-7A024D6A9AAA", + "name": "account-cog", + "codepoint": "F1370", + "aliases": [ + "account-settings" + ], + "tags": [ + "Account \/ User", + "Settings" + ], + "author": "Michael Irigoyen", + "version": "4.9.95" + }, + { + "id": "7B40CAE5-6B01-4E2E-8F23-60ECAB9DAC9F", + "name": "account-cog-outline", + "codepoint": "F1371", + "aliases": [ + "account-settings-outline" + ], + "tags": [ + "Account \/ User", + "Settings" + ], + "author": "Michael Irigoyen", + "version": "4.9.95" + }, + { + "id": "A6964E10-1CF0-41FA-BDCA-A77C9C6F30AF", + "name": "account-convert", + "codepoint": "F000A", + "aliases": [ + "user-convert", + "person-convert" + ], + "tags": [ + "Account \/ User" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "BED42D20-9EEE-4297-81DC-A72F2F9D935D", + "name": "account-convert-outline", + "codepoint": "F1301", + "aliases": [], + "tags": [ + "Account \/ User" + ], + "author": "Simran", + "version": "4.8.95" + }, + { + "id": "18963ABD-E908-4E3C-B8DA-D87916F269F7", + "name": "account-cowboy-hat", + "codepoint": "F0E9B", + "aliases": [ + "rancher" + ], + "tags": [ + "Account \/ User", + "Agriculture" + ], + "author": "Augustin Ursu", + "version": "3.7.94" + }, + { + "id": "E1C851E1-3BBD-4661-A6FA-C77AD370DC6A", + "name": "account-cowboy-hat-outline", + "codepoint": "F17F3", + "aliases": [ + "rancher-outline" + ], + "tags": [ + "Account \/ User", + "Agriculture" + ], + "author": "Jeff Anders", + "version": "6.1.95" + }, + { + "id": "3696B7DF-3E12-44EF-B27F-E171AEB5241F", + "name": "account-details", + "codepoint": "F0631", + "aliases": [ + "user-details", + "person-details" + ], + "tags": [ + "Account \/ User", + "Settings" + ], + "author": "Google", + "version": "1.6.50" + }, + { + "id": "B9137734-8DC1-41D1-9B34-CEDBB1742A39", + "name": "account-details-outline", + "codepoint": "F1372", + "aliases": [ + "person-details-outline", + "user-details-outline" + ], + "tags": [ + "Account \/ User", + "Settings" + ], + "author": "Simran", + "version": "4.9.95" + }, + { + "id": "66271DF7-FF11-4998-9C03-F096CE407E4C", + "name": "account-edit", + "codepoint": "F06BC", + "aliases": [ + "user-edit", + "person-edit" + ], + "tags": [ + "Account \/ User", + "Edit \/ Modify" + ], + "author": "Michael Richins", + "version": "1.8.36" + }, + { + "id": "2374A15A-0DC7-458D-A8BD-766E55DFB0AF", + "name": "account-edit-outline", + "codepoint": "F0FFB", + "aliases": [], + "tags": [ + "Account \/ User" + ], + "author": "Michael Richins", + "version": "4.0.96" + }, + { + "id": "5FFF2FB6-08B2-4860-ACCF-72D614641882", + "name": "account-eye", + "codepoint": "F0420", + "aliases": [ + "account-view" + ], + "tags": [ + "Account \/ User" + ], + "author": "Michael Irigoyen", + "version": "1.5.54" + }, + { + "id": "32388085-89F4-4C2C-BE98-1AEBED8F9B95", + "name": "account-eye-outline", + "codepoint": "F127B", + "aliases": [ + "account-view-outline" + ], + "tags": [ + "Account \/ User" + ], + "author": "Michael Irigoyen", + "version": "4.7.95" + }, + { + "id": "839928F4-21EA-472B-94A0-C7DFBD6C263A", + "name": "account-filter", + "codepoint": "F0936", + "aliases": [ + "account-funnel", + "leads" + ], + "tags": [ + "Account \/ User" + ], + "author": "Michael Irigoyen", + "version": "2.4.85" + }, + { + "id": "4C7A5C71-F3C9-4BD7-B123-C71BE81CAFB7", + "name": "account-filter-outline", + "codepoint": "F0F9D", + "aliases": [ + "account-funnel-outline", + "leads-outline" + ], + "tags": [ + "Account \/ User" + ], + "author": "Michael Irigoyen", + "version": "4.0.96" + }, + { + "id": "7B8F1133-B47B-46C0-AAC0-FD87F06B038D", + "name": "account-group", + "codepoint": "F0849", + "aliases": [ + "user-group", + "users-group", + "person-group", + "people-group", + "accounts-group" + ], + "tags": [ + "Account \/ User" + ], + "author": "GreenTurtwig", + "version": "2.1.99" + }, + { + "id": "7DFB1292-669B-4769-A107-FA3359281270", + "name": "account-group-outline", + "codepoint": "F0B58", + "aliases": [ + "user-group-outline", + "users-group-outline", + "person-group-outline", + "people-group-outline", + "accounts-group-outline" + ], + "tags": [ + "Account \/ User" + ], + "author": "GreenTurtwig", + "version": "3.0.39" + }, + { + "id": "54665F14-32CD-41E3-B5C5-0E9ABDD3A317", + "name": "account-hard-hat", + "codepoint": "F05B5", + "aliases": [ + "worker", + "construction" + ], + "tags": [ + "Account \/ User" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "15C54239-5327-4962-95CD-721512C6B27F", + "name": "account-heart", + "codepoint": "F0899", + "aliases": [ + "user-heart", + "person-heart" + ], + "tags": [ + "Account \/ User", + "Medical \/ Hospital" + ], + "author": "Michael Irigoyen", + "version": "2.2.43" + }, + { + "id": "66013F5C-F7FD-4974-AB80-E624C3E0A5E9", + "name": "account-heart-outline", + "codepoint": "F0BE3", + "aliases": [ + "user-heart-outline", + "person-heart-outline" + ], + "tags": [ + "Account \/ User", + "Medical \/ Hospital" + ], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "E2BDD02C-EBDD-4394-9C2B-20279DBDF180", + "name": "account-injury", + "codepoint": "F1815", + "aliases": [ + "account-disability" + ], + "tags": [ + "Medical \/ Hospital", + "Account \/ User" + ], + "author": "Google", + "version": "6.1.95" + }, + { + "id": "DB3273BF-116D-4AD9-8302-16CE79B64498", + "name": "account-injury-outline", + "codepoint": "F1816", + "aliases": [ + "account-disability-outline" + ], + "tags": [ + "Account \/ User", + "Medical \/ Hospital" + ], + "author": "Google", + "version": "6.1.95" + }, + { + "id": "645E04E6-A328-45DD-9B22-03E2296837B1", + "name": "account-key", + "codepoint": "F000B", + "aliases": [ + "user-key", + "person-key" + ], + "tags": [ + "Account \/ User" + ], + "author": "REJack", + "version": "1.5.54" + }, + { + "id": "85086B0D-4678-4B8E-9824-308F59F09C0F", + "name": "account-key-outline", + "codepoint": "F0BE4", + "aliases": [ + "user-key-outline", + "person-key-outline" + ], + "tags": [ + "Account \/ User" + ], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "BD94D7C7-DFDF-419F-862E-FB1AC3263967", + "name": "account-lock", + "codepoint": "F115E", + "aliases": [ + "account-security", + "account-secure", + "user-lock", + "person-lock" + ], + "tags": [ + "Account \/ User", + "Lock" + ], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "255D3923-5FE0-4BDD-AAF4-D71735D52E53", + "name": "account-lock-open", + "codepoint": "F1960", + "aliases": [ + "account-unlocked", + "user-unlocked", + "user-lock-open" + ], + "tags": [ + "Account \/ User", + "Lock" + ], + "author": "Michael Irigoyen", + "version": "6.5.95" + }, + { + "id": "0E6C1E1C-7F80-445A-92CB-230F04F09093", + "name": "account-lock-open-outline", + "codepoint": "F1961", + "aliases": [ + "user-lock-open-outline", + "user-unlocked-outline", + "account-unlocked-outline" + ], + "tags": [ + "Account \/ User", + "Lock" + ], + "author": "Michael Irigoyen", + "version": "6.5.95" + }, + { + "id": "F0E25FF6-2E45-4F3D-B9E3-6F251A6B1651", + "name": "account-lock-outline", + "codepoint": "F115F", + "aliases": [ + "account-security-outline", + "account-secure-outline", + "person-lock-outline", + "user-lock-outline" + ], + "tags": [ + "Account \/ User", + "Lock" + ], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "9CF96408-1A24-4040-AD04-011183CC9ABC", + "name": "account-minus", + "codepoint": "F000D", + "aliases": [ + "user-minus", + "person-minus" + ], + "tags": [ + "Account \/ User" + ], + "author": "REJack", + "version": "1.5.54" + }, + { + "id": "C03476FC-2655-4137-862E-28D714E93A50", + "name": "account-minus-outline", + "codepoint": "F0AEC", + "aliases": [ + "user-minus-outline", + "person-minus-outline" + ], + "tags": [ + "Account \/ User" + ], + "author": "Peter Noble", + "version": "2.8.94" + }, + { + "id": "A8C2EE6C-31B9-4D51-B941-8128FDD77A96", + "name": "account-multiple", + "codepoint": "F000E", + "aliases": [ + "people", + "user-multiple", + "group", + "accounts", + "users", + "person-multiple" + ], + "tags": [ + "Account \/ User" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "3B3E2DF7-1E21-476A-8473-7F1EAA514D1F", + "name": "account-multiple-check", + "codepoint": "F08C5", + "aliases": [ + "user-multiple-check", + "account-multiple-tick", + "accounts-check", + "accounts-tick", + "users-check", + "users-tick", + "user-multiple-tick", + "person-multiple-check", + "person-multiple-tick", + "people-check", + "people-tick" + ], + "tags": [ + "Account \/ User" + ], + "author": "Roberto Graham", + "version": "2.3.50" + }, + { + "id": "4391B451-368F-4E41-82C5-63A89A2CDE69", + "name": "account-multiple-check-outline", + "codepoint": "F11FE", + "aliases": [ + "user-multiple-check-outline", + "account-multiple-tick-outline", + "accounts-check-outline", + "accounts-tick-outline", + "users-check-outline", + "users-tick-outline", + "user-multiple-tick-outline", + "person-multiple-check-outline", + "person-multiple-tick-outline", + "people-check-outline", + "people-tick-outline" + ], + "tags": [ + "Account \/ User" + ], + "author": "Michael Richins", + "version": "4.6.95" + }, + { + "id": "BD31FA9F-EC76-44E9-A9F3-A85F83045D78", + "name": "account-multiple-minus", + "codepoint": "F05D3", + "aliases": [ + "user-multiple-minus", + "accounts-minus", + "users-minus", + "people-minus", + "person-multiple-minus" + ], + "tags": [ + "Account \/ User" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "45C692AD-F1E8-404C-BED2-9FD58F0690CD", + "name": "account-multiple-minus-outline", + "codepoint": "F0BE5", + "aliases": [ + "accounts-minus-outline", + "people-minus-outline", + "user-multiple-minus-outline", + "users-minus-outline", + "person-multiple-minus-outline" + ], + "tags": [ + "Account \/ User" + ], + "author": "Google", + "version": "3.2.89" + }, + { + "id": "30C6B7FE-4496-4961-B36F-E0FBC4F2696E", + "name": "account-multiple-outline", + "codepoint": "F000F", + "aliases": [ + "user-multiple-outline", + "people-outline", + "accounts-outline", + "users-outline" + ], + "tags": [ + "Account \/ User" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "047F8AC1-524D-4077-BCEB-434FE1C50C8B", + "name": "account-multiple-plus", + "codepoint": "F0010", + "aliases": [ + "user-multiple-plus", + "group-add", + "accounts-plus", + "users-plus", + "person-multiple-plus", + "people-plus", + "person-multiple-add", + "people-add", + "account-multiple-add", + "accounts-add", + "user-multiple-add", + "users-add", + "invite" + ], + "tags": [ + "Account \/ User" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "AFF0AB6B-616A-4C18-8E28-EE8067224EED", + "name": "account-multiple-plus-outline", + "codepoint": "F0800", + "aliases": [ + "group-add-outline", + "user-multiple-plus-outline", + "accounts-plus-outline", + "users-plus-outline", + "person-multiple-plus-outline", + "people-plus-outline", + "person-multiple-add-outline", + "people-add-outline", + "account-multiple-add-outline", + "accounts-add-outline", + "user-multiple-add-outline", + "users-add-outline", + "invite" + ], + "tags": [ + "Account \/ User" + ], + "author": "Google", + "version": "2.1.19" + }, + { + "id": "998E10E4-B96A-4DB2-9793-3E1C31D42501", + "name": "account-multiple-remove", + "codepoint": "F120A", + "aliases": [ + "user-multiple-remove", + "person-multiple-remove" + ], + "tags": [ + "Account \/ User" + ], + "author": "Michael Richins", + "version": "4.6.95" + }, + { + "id": "618B092A-7228-4E70-A95C-7EB4EC1BA2FB", + "name": "account-multiple-remove-outline", + "codepoint": "F120B", + "aliases": [ + "user-multiple-remove-outline", + "person-multiple-remove-outline" + ], + "tags": [ + "Account \/ User" + ], + "author": "Michael Richins", + "version": "4.6.95" + }, + { + "id": "306F2F2C-4B76-40E9-9561-BC3AD271D6BA", + "name": "account-music", + "codepoint": "F0803", + "aliases": [ + "artist" + ], + "tags": [ + "Account \/ User" + ], + "author": "Google", + "version": "2.1.19" + }, + { + "id": "A8CC9CFF-A5DE-4FC8-A4AC-BCE153F767F8", + "name": "account-music-outline", + "codepoint": "F0CE9", + "aliases": [ + "artist-outline" + ], + "tags": [ + "Account \/ User" + ], + "author": "GreenTurtwig", + "version": "3.3.92" + }, + { + "id": "8F49C741-4ED8-4DD3-A22E-310C039EDDA6", + "name": "account-network", + "codepoint": "F0011", + "aliases": [ + "user-network", + "person-network" + ], + "tags": [ + "Account \/ User" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "2EEA7799-E0DA-4E9B-880E-B5975A6FC11F", + "name": "account-network-outline", + "codepoint": "F0BE6", + "aliases": [ + "user-network-outline", + "person-network-outline" + ], + "tags": [ + "Account \/ User" + ], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "2306EFC9-3375-4D03-A631-A32BD72075EC", + "name": "account-off", + "codepoint": "F0012", + "aliases": [ + "user-off", + "person-off" + ], + "tags": [ + "Account \/ User" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "231E3EA7-A7EC-41A0-A594-032040488448", + "name": "account-off-outline", + "codepoint": "F0BE7", + "aliases": [ + "user-off-outline", + "person-off-outline" + ], + "tags": [ + "Account \/ User" + ], + "author": "Austin Andrews", + "version": "3.2.89" + }, + { + "id": "79ECAAC6-71DC-406C-A9B7-57C5F0BAA9E0", + "name": "account-outline", + "codepoint": "F0013", + "aliases": [ + "user-outline", + "perm-identity", + "person-outline" + ], + "tags": [ + "Account \/ User" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "66556BA4-6B65-4ED9-B813-AD33CA8C2CCF", + "name": "account-plus", + "codepoint": "F0014", + "aliases": [ + "register", + "user-plus", + "person-add", + "account-add", + "person-plus", + "user-add", + "invite" + ], + "tags": [ + "Account \/ User", + "Home Automation" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "1095C7C6-C264-4415-BD6D-A2078242477E", + "name": "account-plus-outline", + "codepoint": "F0801", + "aliases": [ + "person-add-outline", + "register-outline", + "user-plus-outline", + "account-add-outline", + "person-plus-outline", + "user-add-outline", + "invite" + ], + "tags": [ + "Account \/ User" + ], + "author": "GreenTurtwig", + "version": "2.1.19" + }, + { + "id": "163F4ADF-F6CC-42D0-AEED-DB61351C624C", + "name": "account-question", + "codepoint": "F0B59", + "aliases": [ + "user-help", + "account-question-mark", + "account-help", + "user-question", + "person-question", + "person-help" + ], + "tags": [ + "Account \/ User" + ], + "author": "Coffeemate", + "version": "3.0.39" + }, + { + "id": "C5217A29-708E-4340-AE2D-89A33F364A97", + "name": "account-question-outline", + "codepoint": "F0B5A", + "aliases": [ + "account-question-mark-outline", + "user-help-outline", + "account-help-outline", + "user-question-outline", + "person-question-outline", + "person-help-outline" + ], + "tags": [ + "Account \/ User" + ], + "author": "Coffeemate", + "version": "3.0.39" + }, + { + "id": "AD1CDB51-AAD9-411A-A81F-8D718A843FDE", + "name": "account-reactivate", + "codepoint": "F152B", + "aliases": [], + "tags": [ + "Account \/ User" + ], + "author": "Fran\u00e7ois Risoud", + "version": "5.4.55" + }, + { + "id": "9CB5E1B3-D7AA-4BD2-9966-89CDAC0BF710", + "name": "account-reactivate-outline", + "codepoint": "F152C", + "aliases": [], + "tags": [ + "Account \/ User" + ], + "author": "Fran\u00e7ois Risoud", + "version": "5.4.55" + }, + { + "id": "0A1FDBBB-9E1C-480E-BC1D-725778D0851B", + "name": "account-remove", + "codepoint": "F0015", + "aliases": [ + "user-remove", + "person-remove" + ], + "tags": [ + "Account \/ User" + ], + "author": "REJack", + "version": "1.5.54" + }, + { + "id": "9F89EDE8-E95A-401D-9532-7F0DCD6AE321", + "name": "account-remove-outline", + "codepoint": "F0AED", + "aliases": [ + "user-remove-outline", + "person-remove-outline" + ], + "tags": [ + "Account \/ User" + ], + "author": "Austin Andrews", + "version": "2.8.94" + }, + { + "id": "48E9C474-C544-4868-9966-C3A8D7808FCA", + "name": "account-search", + "codepoint": "F0016", + "aliases": [ + "user-search", + "person-search" + ], + "tags": [ + "Account \/ User" + ], + "author": "GreenTurtwig", + "version": "1.5.54" + }, + { + "id": "F6808872-4EB9-43AF-BD74-BDA6861E1862", + "name": "account-search-outline", + "codepoint": "F0935", + "aliases": [ + "user-search-outline", + "person-search-outline" + ], + "tags": [ + "Account \/ User" + ], + "author": "GreenTurtwig", + "version": "2.4.85" + }, + { + "id": "A975CEEA-FDFD-49A2-A618-E74A3FF87A63", + "name": "account-settings", + "codepoint": "F0630", + "aliases": [ + "user-settings", + "person-settings" + ], + "tags": [ + "Account \/ User", + "Settings" + ], + "author": "Austin Andrews", + "version": "1.6.50" + }, + { + "id": "CA95C904-F98B-43D4-A896-DF5E174A0F72", + "name": "account-settings-outline", + "codepoint": "F10C9", + "aliases": [], + "tags": [ + "Account \/ User" + ], + "author": "Sascha Wohlgemuth", + "version": "4.3.95" + }, + { + "id": "1E04960E-FFFE-439D-A5FD-C51E7291DA6F", + "name": "account-star", + "codepoint": "F0017", + "aliases": [ + "user-star", + "person-star", + "account-favorite" + ], + "tags": [ + "Account \/ User" + ], + "author": "REJack", + "version": "1.5.54" + }, + { + "id": "3B63C1BC-9FB2-4F41-86CF-93D6117585E9", + "name": "account-star-outline", + "codepoint": "F0BE8", + "aliases": [ + "user-star-outline", + "person-star-outline" + ], + "tags": [ + "Account \/ User" + ], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "DF632613-259D-4C5E-9718-0EB3057290AF", + "name": "account-supervisor", + "codepoint": "F0A8B", + "aliases": [ + "user-supervisor", + "person-supervisor" + ], + "tags": [ + "Account \/ User" + ], + "author": "Google", + "version": "2.7.94" + }, + { + "id": "741E5459-89DC-4045-B02E-3FB74F636143", + "name": "account-supervisor-circle", + "codepoint": "F0A8C", + "aliases": [ + "user-supervisor-circle", + "person-supervisor-circle" + ], + "tags": [ + "Account \/ User" + ], + "author": "Google", + "version": "2.7.94" + }, + { + "id": "51B2A4EF-1F20-44EA-BC57-D1B3129C496C", + "name": "account-supervisor-circle-outline", + "codepoint": "F14EC", + "aliases": [], + "tags": [ + "Account \/ User" + ], + "author": "Google", + "version": "5.4.55" + }, + { + "id": "B640886A-F3F0-4FE4-AC74-4AE1407E264F", + "name": "account-supervisor-outline", + "codepoint": "F112D", + "aliases": [], + "tags": [ + "Account \/ User" + ], + "author": "Sascha Wohlgemuth", + "version": "4.4.95" + }, + { + "id": "FC4F4C4D-83C2-493F-9606-CA80E44BFEF8", + "name": "account-switch", + "codepoint": "F0019", + "aliases": [ + "user-switch", + "accounts-switch", + "users-switch", + "person-switch", + "people-switch" + ], + "tags": [ + "Account \/ User" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "82D545A0-9A8E-4363-A462-883526E48330", + "name": "account-switch-outline", + "codepoint": "F04CB", + "aliases": [], + "tags": [ + "Account \/ User" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "85F768C4-8659-414E-8C96-F2E90EB36971", + "name": "account-sync", + "codepoint": "F191B", + "aliases": [ + "account-cache" + ], + "tags": [ + "Account \/ User" + ], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "4D5C282D-E452-4544-BD36-6EBF5DE7FD85", + "name": "account-sync-outline", + "codepoint": "F191C", + "aliases": [ + "account-cache-outline" + ], + "tags": [ + "Account \/ User" + ], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "5EF0B9EA-FECB-409C-999C-FE1ECF0C8B01", + "name": "account-tie", + "codepoint": "F0CE3", + "aliases": [ + "person-tie", + "user-tie" + ], + "tags": [ + "Account \/ User" + ], + "author": "Michael Irigoyen", + "version": "3.3.92" + }, + { + "id": "07487BB8-778A-4B30-8129-FC2780463D86", + "name": "account-tie-hat", + "codepoint": "F1898", + "aliases": [ + "account-pilot" + ], + "tags": [ + "Account \/ User", + "Transportation + Flying" + ], + "author": "Michael Irigoyen", + "version": "6.3.95" + }, + { + "id": "8097E3AA-0C0F-47BE-9700-DEAF4986E6AE", + "name": "account-tie-hat-outline", + "codepoint": "F1899", + "aliases": [ + "account-pilot-outline" + ], + "tags": [ + "Account \/ User", + "Transportation + Flying" + ], + "author": "Michael Irigoyen", + "version": "6.3.95" + }, + { + "id": "0D809FB8-6A27-4972-B4E5-6A308963FD8B", + "name": "account-tie-outline", + "codepoint": "F10CA", + "aliases": [], + "tags": [ + "Account \/ User" + ], + "author": "Sascha Wohlgemuth", + "version": "4.3.95" + }, + { + "id": "7EAF1288-141D-4C8E-91E6-891D04BAE32C", + "name": "account-tie-voice", + "codepoint": "F1308", + "aliases": [], + "tags": [ + "Account \/ User" + ], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "F835F775-8FC4-4E85-9B26-7C95F8F45B05", + "name": "account-tie-voice-off", + "codepoint": "F130A", + "aliases": [], + "tags": [ + "Account \/ User" + ], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "6CDB4F0E-41EC-409E-A2E0-87785BDAC858", + "name": "account-tie-voice-off-outline", + "codepoint": "F130B", + "aliases": [], + "tags": [ + "Account \/ User" + ], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "5712C24C-E8EE-48CD-9E6F-9712AD2BA502", + "name": "account-tie-voice-outline", + "codepoint": "F1309", + "aliases": [], + "tags": [ + "Account \/ User" + ], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "F1EEA910-2CD7-448A-A12F-A1BD0FDC6010", + "name": "account-voice", + "codepoint": "F05CB", + "aliases": [ + "record-voice-over", + "speak", + "talk", + "speaking", + "talking" + ], + "tags": [ + "Account \/ User" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "C90AED93-FCBD-4FDC-A15B-26CD066775BD", + "name": "account-voice-off", + "codepoint": "F0ED4", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.7.95" + }, + { + "id": "C3712CBF-1E1C-4794-95B1-F77380FCEB7C", + "name": "account-wrench", + "codepoint": "F189A", + "aliases": [ + "account-service" + ], + "tags": [ + "Account \/ User" + ], + "author": "Michael Irigoyen", + "version": "6.3.95" + }, + { + "id": "9AD54A3C-987A-4ED9-A416-7432C9540239", + "name": "account-wrench-outline", + "codepoint": "F189B", + "aliases": [ + "account-service-outline" + ], + "tags": [ + "Account \/ User" + ], + "author": "Michael Irigoyen", + "version": "6.3.95" + }, + { + "id": "3334E19F-962D-45B4-BE11-F009E1192165", + "name": "adjust", + "codepoint": "F001A", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "F368D23C-0F09-44D6-8487-F3229BEB6F1C", + "name": "advertisements", + "codepoint": "F192A", + "aliases": [ + "ads" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "28583E81-1315-4397-8FC5-46325CF1FB94", + "name": "advertisements-off", + "codepoint": "F192B", + "aliases": [ + "ads-off" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "FACEA69B-49F0-4588-BDEC-693965AD4649", + "name": "air-conditioner", + "codepoint": "F001B", + "aliases": [ + "ac-unit" + ], + "tags": [ + "Home Automation", + "Automotive" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "C9AF90F5-7CE7-4251-9BA2-3A614B4882AA", + "name": "air-filter", + "codepoint": "F0D43", + "aliases": [ + "water-filter", + "filter" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "3.4.93" + }, + { + "id": "41485B7B-F175-4627-90EB-640C9C60B27C", + "name": "air-horn", + "codepoint": "F0DAC", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "3.5.94" + }, + { + "id": "C35492EC-7A43-444E-86A1-B3E960A86950", + "name": "air-humidifier", + "codepoint": "F1099", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "4.2.95" + }, + { + "id": "9B86205A-73F4-4DB6-9F2C-73654EDF4D52", + "name": "air-humidifier-off", + "codepoint": "F1466", + "aliases": [ + "air-dehumidifier" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "C1621283-2EDC-43C5-9108-812DCAD0BC12", + "name": "air-purifier", + "codepoint": "F0D44", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Google", + "version": "3.4.93" + }, + { + "id": "26929F83-C254-41C2-8B0D-B4D95EACAD3E", + "name": "airbag", + "codepoint": "F0BE9", + "aliases": [], + "tags": [ + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "3E1D81B2-7DF1-4AAF-9598-4995B8D8E5CC", + "name": "airballoon", + "codepoint": "F001C", + "aliases": [ + "hot-air-balloon" + ], + "tags": [ + "Transportation + Other", + "Transportation + Flying" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "67E3294D-960F-4CD8-B4DB-3AAB13D6E17C", + "name": "airballoon-outline", + "codepoint": "F100B", + "aliases": [ + "hot-air-balloon-outline" + ], + "tags": [ + "Transportation + Flying" + ], + "author": "Michael Irigoyen", + "version": "4.1.95" + }, + { + "id": "5AE3D483-1E1C-49DE-92FF-21C6B93FD52F", + "name": "airplane", + "codepoint": "F001D", + "aliases": [ + "aeroplane", + "airplanemode-active", + "flight", + "local-airport", + "flight-mode", + "plane" + ], + "tags": [ + "Transportation + Flying", + "Navigation" + ], + "author": "Colton Wiscombe", + "version": "1.5.54" + }, + { + "id": "C0734996-651C-4CEE-A216-E1D03B2FA6F6", + "name": "airplane-alert", + "codepoint": "F187A", + "aliases": [], + "tags": [ + "Transportation + Flying" + ], + "author": "Colton Wiscombe", + "version": "6.2.95" + }, + { + "id": "3771D65E-17FD-41E0-B8E7-D1136B28D672", + "name": "airplane-check", + "codepoint": "F187B", + "aliases": [], + "tags": [ + "Transportation + Flying" + ], + "author": "Colton Wiscombe", + "version": "6.2.95" + }, + { + "id": "8C33AFFF-209E-41AC-A403-B1A46B321917", + "name": "airplane-clock", + "codepoint": "F187C", + "aliases": [ + "airplane-schedule", + "airplane-time", + "airplane-date" + ], + "tags": [ + "Transportation + Flying" + ], + "author": "Colton Wiscombe", + "version": "6.2.95" + }, + { + "id": "BBFABE86-364F-44BA-861F-0EA4502F2E14", + "name": "airplane-cog", + "codepoint": "F187D", + "aliases": [ + "airplane-settings" + ], + "tags": [ + "Transportation + Flying" + ], + "author": "Colton Wiscombe", + "version": "6.2.95" + }, + { + "id": "7B7C1A74-3C6D-4CF8-8F29-62F99BD9AC24", + "name": "airplane-edit", + "codepoint": "F187E", + "aliases": [], + "tags": [ + "Transportation + Flying" + ], + "author": "Colton Wiscombe", + "version": "6.2.95" + }, + { + "id": "634EE7E8-8280-4CF1-B642-0921E740B6DB", + "name": "airplane-landing", + "codepoint": "F05D4", + "aliases": [ + "aeroplane-landing", + "flight-land", + "plane-landing" + ], + "tags": [ + "Transportation + Flying" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "792432E4-3913-4118-80E9-C8F348DEFBA4", + "name": "airplane-marker", + "codepoint": "F187F", + "aliases": [ + "airplane-location", + "airplane-gps" + ], + "tags": [ + "Transportation + Flying" + ], + "author": "Colton Wiscombe", + "version": "6.2.95" + }, + { + "id": "B92E8598-1A85-4EC5-9082-2CF13684EB13", + "name": "airplane-minus", + "codepoint": "F1880", + "aliases": [], + "tags": [ + "Transportation + Flying" + ], + "author": "Colton Wiscombe", + "version": "6.2.95" + }, + { + "id": "D2D1D38E-ABE7-47B6-9405-DC6BDBA1C335", + "name": "airplane-off", + "codepoint": "F001E", + "aliases": [ + "aeroplane-off", + "airplanemode-inactive", + "flight-mode-off", + "plane-off" + ], + "tags": [ + "Transportation + Flying" + ], + "author": "Colton Wiscombe", + "version": "1.5.54" + }, + { + "id": "4D5B4816-F71A-4413-A065-A58F2A907656", + "name": "airplane-plus", + "codepoint": "F1881", + "aliases": [], + "tags": [ + "Transportation + Flying" + ], + "author": "Colton Wiscombe", + "version": "6.2.95" + }, + { + "id": "244A039A-5ABD-46F5-8E5E-8F6D84FC116C", + "name": "airplane-remove", + "codepoint": "F1882", + "aliases": [], + "tags": [ + "Transportation + Flying" + ], + "author": "Colton Wiscombe", + "version": "6.2.95" + }, + { + "id": "4DBDF7D5-FD3A-4CE2-BCC6-306A09694221", + "name": "airplane-search", + "codepoint": "F1883", + "aliases": [ + "airplane-find" + ], + "tags": [ + "Transportation + Flying" + ], + "author": "Colton Wiscombe", + "version": "6.2.95" + }, + { + "id": "7B89A30A-F211-4B69-9629-9148A539D41D", + "name": "airplane-settings", + "codepoint": "F1884", + "aliases": [], + "tags": [ + "Transportation + Flying" + ], + "author": "Colton Wiscombe", + "version": "6.2.95" + }, + { + "id": "2B9BB7A1-A94B-4D24-8308-5599504317C2", + "name": "airplane-takeoff", + "codepoint": "F05D5", + "aliases": [ + "aeroplane-takeoff", + "flight-takeoff", + "plane-takeoff", + "airplane-take-off" + ], + "tags": [ + "Transportation + Flying" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "62C9DAA4-6718-44A9-BCD3-2401D96BE1E7", + "name": "airport", + "codepoint": "F084B", + "aliases": [], + "tags": [ + "Places", + "Transportation + Flying" + ], + "author": "Michael Irigoyen", + "version": "2.1.99" + }, + { + "id": "9A1AAF33-6F36-4987-9E8C-798E34D919A9", + "name": "alarm", + "codepoint": "F0020", + "aliases": [ + "access-alarms", + "alarm-clock" + ], + "tags": [ + "Date \/ Time" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "02423F51-52A3-4F45-8373-05CA8E8D57B7", + "name": "alarm-bell", + "codepoint": "F078E", + "aliases": [], + "tags": [ + "Notification" + ], + "author": "Michael Richins", + "version": "2.0.46" + }, + { + "id": "6DCCA48F-E413-4C45-BFE5-8E3C8BE61A4E", + "name": "alarm-check", + "codepoint": "F0021", + "aliases": [ + "alarm-on", + "alarm-tick", + "alarm-clock-check", + "alarm-clock-tick" + ], + "tags": [ + "Date \/ Time" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "B6D88F9D-A85A-4943-A61C-7D33FB0EBF4F", + "name": "alarm-light", + "codepoint": "F078F", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Richins", + "version": "2.0.46" + }, + { + "id": "E328D226-0D09-402D-BCAA-A7630396F168", + "name": "alarm-light-off", + "codepoint": "F171E", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "5.9.55" + }, + { + "id": "70D649B6-0FA1-4465-A92C-BB362D4D5FAD", + "name": "alarm-light-off-outline", + "codepoint": "F171F", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "5.9.55" + }, + { + "id": "F6F4DACD-B15B-49FD-8ACC-FAE0E994435A", + "name": "alarm-light-outline", + "codepoint": "F0BEA", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Austin Andrews", + "version": "3.2.89" + }, + { + "id": "67D410AB-495A-41BD-B9D8-20A7DFBBF623", + "name": "alarm-multiple", + "codepoint": "F0022", + "aliases": [ + "alarms", + "alarm-clock-multiple", + "alarm-clocks" + ], + "tags": [ + "Date \/ Time" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "2C35D0DC-0191-4DFF-AF19-066F88DE56FE", + "name": "alarm-note", + "codepoint": "F0E71", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "3.7.94" + }, + { + "id": "2ECA27D9-8F96-4B03-A7BF-B74468CFCBF9", + "name": "alarm-note-off", + "codepoint": "F0E72", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "3.7.94" + }, + { + "id": "DD224DD6-9A65-47AB-8838-90FE346A7768", + "name": "alarm-off", + "codepoint": "F0023", + "aliases": [ + "alarm-clock-off" + ], + "tags": [ + "Date \/ Time" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "AB8BCA23-EA1C-4A27-B535-4F373F1451E6", + "name": "alarm-panel", + "codepoint": "F15C4", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "5.6.55" + }, + { + "id": "60F9887C-36C5-4E6A-B282-4BACB99120BC", + "name": "alarm-panel-outline", + "codepoint": "F15C5", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "5.6.55" + }, + { + "id": "6D93F44C-83F7-4446-A5CD-E4135C8644D7", + "name": "alarm-plus", + "codepoint": "F0024", + "aliases": [ + "add-alarm", + "alarm-clock-plus", + "alarm-clock-add", + "alarm-add" + ], + "tags": [ + "Date \/ Time" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "28F85724-265B-4C24-9975-DDDF788A99E5", + "name": "alarm-snooze", + "codepoint": "F068E", + "aliases": [ + "alarm-clock-snooze" + ], + "tags": [ + "Date \/ Time" + ], + "author": "Google", + "version": "1.7.12" + }, + { + "id": "8529D611-F581-4808-95BE-271FB1A6C2FD", + "name": "album", + "codepoint": "F0025", + "aliases": [ + "vinyl", + "record" + ], + "tags": [ + "Audio", + "Music" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "9FF7DF3F-D575-433B-9C9A-69C58363C186", + "name": "alert", + "codepoint": "F0026", + "aliases": [ + "warning", + "report-problem" + ], + "tags": [ + "Alert \/ Error" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "7B5D47A1-5658-4169-94C7-0C41E7179DD2", + "name": "alert-box", + "codepoint": "F0027", + "aliases": [ + "warning-box" + ], + "tags": [ + "Alert \/ Error" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "D37BD379-9466-4E87-AD27-087CF72F076D", + "name": "alert-box-outline", + "codepoint": "F0CE4", + "aliases": [ + "warning-box-outline" + ], + "tags": [ + "Alert \/ Error" + ], + "author": "Peter Noble", + "version": "3.3.92" + }, + { + "id": "C7EDD5B7-95D4-4D83-A4E3-95D8A16A4887", + "name": "alert-circle", + "codepoint": "F0028", + "aliases": [ + "warning-circle", + "error" + ], + "tags": [ + "Alert \/ Error" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "68F19F47-B38B-4370-B299-4EE2BF2619A5", + "name": "alert-circle-check", + "codepoint": "F11ED", + "aliases": [], + "tags": [ + "Alert \/ Error" + ], + "author": "Austin Andrews", + "version": "4.5.95" + }, + { + "id": "BB715CDA-DE45-4983-A33F-10C6141F4FEA", + "name": "alert-circle-check-outline", + "codepoint": "F11EE", + "aliases": [], + "tags": [ + "Alert \/ Error" + ], + "author": "Austin Andrews", + "version": "4.5.95" + }, + { + "id": "0F4002B4-3C3D-43C4-939F-A998B2C59177", + "name": "alert-circle-outline", + "codepoint": "F05D6", + "aliases": [ + "warning-circle-outline", + "error-outline", + "git-issue" + ], + "tags": [ + "Alert \/ Error" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "B4866C08-2DAE-4B0A-8942-E057094B3C76", + "name": "alert-decagram", + "codepoint": "F06BD", + "aliases": [ + "new-releases", + "warning-decagram" + ], + "tags": [ + "Alert \/ Error" + ], + "author": "Google", + "version": "1.8.36" + }, + { + "id": "B2984FA7-4B68-4191-8835-EB768C58DD10", + "name": "alert-decagram-outline", + "codepoint": "F0CE5", + "aliases": [ + "warning-decagram-outline" + ], + "tags": [ + "Alert \/ Error" + ], + "author": "Peter Noble", + "version": "3.3.92" + }, + { + "id": "233D24FC-6BAE-44C4-BE98-7178560C4A32", + "name": "alert-minus", + "codepoint": "F14BB", + "aliases": [], + "tags": [ + "Alert \/ Error" + ], + "author": "Michael Irigoyen", + "version": "5.3.45" + }, + { + "id": "044D1C2C-2EA5-4058-A3B0-0550BD2E3170", + "name": "alert-minus-outline", + "codepoint": "F14BE", + "aliases": [], + "tags": [ + "Alert \/ Error" + ], + "author": "Alessandro Rossignoli", + "version": "5.3.45" + }, + { + "id": "9BC1A338-CD03-4D39-BE46-E9DE5EE51A2F", + "name": "alert-octagon", + "codepoint": "F0029", + "aliases": [ + "warning-octagon", + "report", + "stop-alert" + ], + "tags": [ + "Alert \/ Error" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "90994A54-72AA-498F-8806-AAD466CC21BD", + "name": "alert-octagon-outline", + "codepoint": "F0CE6", + "aliases": [ + "warning-octagon-outline", + "stop-alert-outline" + ], + "tags": [ + "Alert \/ Error" + ], + "author": "Peter Noble", + "version": "3.3.92" + }, + { + "id": "124F37BE-27F6-4524-9655-A18D28E91CA6", + "name": "alert-octagram", + "codepoint": "F0767", + "aliases": [ + "warning-octagram" + ], + "tags": [ + "Alert \/ Error" + ], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "2AD21B3E-77C1-4027-9AE9-7655246D9DFF", + "name": "alert-octagram-outline", + "codepoint": "F0CE7", + "aliases": [ + "warning-octagram-outline" + ], + "tags": [ + "Alert \/ Error" + ], + "author": "Peter Noble", + "version": "3.3.92" + }, + { + "id": "4E574535-954C-42F5-BE5B-DF3716DB7C5A", + "name": "alert-outline", + "codepoint": "F002A", + "aliases": [ + "warning-outline" + ], + "tags": [ + "Alert \/ Error" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "6D804890-36C6-43DC-B93D-B289A4C04D8F", + "name": "alert-plus", + "codepoint": "F14BA", + "aliases": [], + "tags": [ + "Alert \/ Error" + ], + "author": "Austin Andrews", + "version": "5.3.45" + }, + { + "id": "C5512AAF-943C-4025-8FAB-F14D896F2C14", + "name": "alert-plus-outline", + "codepoint": "F14BD", + "aliases": [], + "tags": [ + "Alert \/ Error" + ], + "author": "Alessandro Rossignoli", + "version": "5.3.45" + }, + { + "id": "EF9A06FC-5167-4AE0-AB4E-FAD8C705E8C2", + "name": "alert-remove", + "codepoint": "F14BC", + "aliases": [], + "tags": [ + "Alert \/ Error" + ], + "author": "Michael Irigoyen", + "version": "5.3.45" + }, + { + "id": "926FBBF9-9299-4E27-BB55-9CE300F50FDE", + "name": "alert-remove-outline", + "codepoint": "F14BF", + "aliases": [], + "tags": [ + "Alert \/ Error" + ], + "author": "Michael Irigoyen", + "version": "5.3.45" + }, + { + "id": "C8354F93-0DA4-48B4-97B3-4BDE2C0046AB", + "name": "alert-rhombus", + "codepoint": "F11CE", + "aliases": [], + "tags": [ + "Alert \/ Error" + ], + "author": "Michael Richins", + "version": "4.5.95" + }, + { + "id": "C9724C30-FDBB-4A14-BC0B-59F0E6826DC3", + "name": "alert-rhombus-outline", + "codepoint": "F11CF", + "aliases": [], + "tags": [ + "Alert \/ Error" + ], + "author": "Michael Richins", + "version": "4.5.95" + }, + { + "id": "CD43AC33-8EE0-42BE-A7E0-3CCB31D8C5D3", + "name": "alien", + "codepoint": "F089A", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "2.2.43" + }, + { + "id": "F673BEC2-F616-4A5A-B33B-4CD776D80819", + "name": "alien-outline", + "codepoint": "F10CB", + "aliases": [], + "tags": [], + "author": "Sascha Wohlgemuth", + "version": "4.3.95" + }, + { + "id": "05901A9E-71D5-47D9-B5E1-DC55B687E8E0", + "name": "align-horizontal-center", + "codepoint": "F11C3", + "aliases": [ + "align-horizontal-centre" + ], + "tags": [], + "author": "Google", + "version": "4.5.95" + }, + { + "id": "B4B2B3EB-A8C5-48C3-8F82-4F295424B396", + "name": "align-horizontal-distribute", + "codepoint": "F1962", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "6.5.95" + }, + { + "id": "91ED2206-4D41-48DB-964F-5E3AC50F899D", + "name": "align-horizontal-left", + "codepoint": "F11C2", + "aliases": [], + "tags": [], + "author": "Google", + "version": "4.5.95" + }, + { + "id": "5FEBC8BB-061B-4D91-BD96-88285B5C2E23", + "name": "align-horizontal-right", + "codepoint": "F11C4", + "aliases": [], + "tags": [], + "author": "Google", + "version": "4.5.95" + }, + { + "id": "AA5D11B7-D45D-4505-938E-8BEF8C1A79F0", + "name": "align-vertical-bottom", + "codepoint": "F11C5", + "aliases": [], + "tags": [], + "author": "Google", + "version": "4.5.95" + }, + { + "id": "04AE9704-928E-4272-B7FA-BD2ABC38ABE0", + "name": "align-vertical-center", + "codepoint": "F11C6", + "aliases": [ + "align-vertical-centre" + ], + "tags": [], + "author": "Google", + "version": "4.5.95" + }, + { + "id": "CB64EDBD-09A0-4085-BD1E-0D84EAA56297", + "name": "align-vertical-distribute", + "codepoint": "F1963", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "6.5.95" + }, + { + "id": "9069B66B-C7CA-478D-BE02-BC9863E27FDB", + "name": "align-vertical-top", + "codepoint": "F11C7", + "aliases": [], + "tags": [], + "author": "Google", + "version": "4.5.95" + }, + { + "id": "5596E6E7-916E-4870-9346-5D46BC86C0D5", + "name": "all-inclusive", + "codepoint": "F06BE", + "aliases": [ + "infinity", + "forever" + ], + "tags": [], + "author": "Google", + "version": "1.8.36" + }, + { + "id": "C8E30B1A-135A-4B8A-900C-D93FE1699720", + "name": "all-inclusive-box", + "codepoint": "F188D", + "aliases": [ + "infinity-box", + "forever-box" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.2.95" + }, + { + "id": "C3D587B3-D1F0-4C6F-9E4F-5FEE39AFFE33", + "name": "all-inclusive-box-outline", + "codepoint": "F188E", + "aliases": [ + "forever-box-outline", + "infinity-box-outline" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.2.95" + }, + { + "id": "76B6381F-14CA-4453-8B28-184C508D003B", + "name": "allergy", + "codepoint": "F1258", + "aliases": [ + "hand", + "rash", + "germ" + ], + "tags": [ + "Medical \/ Hospital" + ], + "author": "Michael Richins", + "version": "4.7.95" + }, + { + "id": "0B93DD30-B279-4997-BD6D-AC86E29D34CA", + "name": "alpha", + "codepoint": "F002B", + "aliases": [], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "8A55BEB9-D57B-43DA-9905-7216E3EB7057", + "name": "alpha-a", + "codepoint": "F0AEE", + "aliases": [ + "alphabet-a", + "letter-a" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "1AC5B76A-B93F-4F9B-851D-C3DAF9743046", + "name": "alpha-a-box", + "codepoint": "F0B08", + "aliases": [ + "alphabet-a-box", + "letter-a-box" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "B501FBBD-91FA-4567-8D4A-BD933FECCE7B", + "name": "alpha-a-box-outline", + "codepoint": "F0BEB", + "aliases": [ + "alphabet-a-box-outline", + "letter-a-box-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "71A79E36-29B9-4543-B386-399F950641E2", + "name": "alpha-a-circle", + "codepoint": "F0BEC", + "aliases": [ + "alphabet-a-circle", + "letter-a-circle" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "6BB0D642-F5B7-4903-977C-325FE1F068FF", + "name": "alpha-a-circle-outline", + "codepoint": "F0BED", + "aliases": [ + "alphabet-a-circle-outline", + "letter-a-circle-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "910DF87E-809E-40D6-886F-34E581899455", + "name": "alpha-b", + "codepoint": "F0AEF", + "aliases": [ + "alphabet-b", + "letter-b" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "057EDDAB-65B4-495C-A473-71F759BC6FD9", + "name": "alpha-b-box", + "codepoint": "F0B09", + "aliases": [ + "alphabet-b-box", + "letter-b-box" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "ACEAA38C-D83E-4812-AFF3-A063F0226825", + "name": "alpha-b-box-outline", + "codepoint": "F0BEE", + "aliases": [ + "alphabet-b-box-outline", + "letter-b-box-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "433A1CBB-57A4-44DA-8B93-B65AF6E54B1D", + "name": "alpha-b-circle", + "codepoint": "F0BEF", + "aliases": [ + "alphabet-b-circle", + "letter-b-circle" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "5CBD1C34-B372-4DA7-9FF1-19DD9B3D9C3A", + "name": "alpha-b-circle-outline", + "codepoint": "F0BF0", + "aliases": [ + "alphabet-b-circle-outline", + "letter-b-circle-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "F5F53184-51BB-46A3-AB67-D799A1D15F7F", + "name": "alpha-c", + "codepoint": "F0AF0", + "aliases": [ + "alphabet-c", + "letter-c" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "F7A4DF3D-18C8-4717-AD58-247CEFF7EDE3", + "name": "alpha-c-box", + "codepoint": "F0B0A", + "aliases": [ + "alphabet-c-box", + "letter-c-box" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "9EB832F8-B389-47AA-ADDA-A2163E75DC20", + "name": "alpha-c-box-outline", + "codepoint": "F0BF1", + "aliases": [ + "alphabet-c-box-outline", + "letter-c-box-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "19229F43-9ACD-477E-9A30-9D2731080026", + "name": "alpha-c-circle", + "codepoint": "F0BF2", + "aliases": [ + "alphabet-c-circle", + "letter-c-circle" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "23362597-17A2-4413-BE28-65B36F4591E7", + "name": "alpha-c-circle-outline", + "codepoint": "F0BF3", + "aliases": [ + "alphabet-c-circle-outline", + "letter-c-circle-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "0A79E0A4-CE86-431C-A152-57492815C31E", + "name": "alpha-d", + "codepoint": "F0AF1", + "aliases": [ + "alphabet-d", + "letter-d", + "drive" + ], + "tags": [ + "Automotive", + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "5299B671-D7CF-4D68-B439-92E3056A104A", + "name": "alpha-d-box", + "codepoint": "F0B0B", + "aliases": [ + "alphabet-d-box", + "letter-d-box" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "5D512B06-6DF4-4BC7-A307-81512F828192", + "name": "alpha-d-box-outline", + "codepoint": "F0BF4", + "aliases": [ + "alphabet-d-box-outline", + "letter-d-box-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "758D2479-2950-4C5E-8FDC-C0FFA2EBE114", + "name": "alpha-d-circle", + "codepoint": "F0BF5", + "aliases": [ + "alphabet-d-circle", + "letter-d-circle" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "6B6C0FE9-544A-4098-A5B2-823160140EE7", + "name": "alpha-d-circle-outline", + "codepoint": "F0BF6", + "aliases": [ + "alphabet-d-circle-outline", + "letter-d-circle-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "3B3F5AA2-8A97-4A66-BD4A-7AA105901B61", + "name": "alpha-e", + "codepoint": "F0AF2", + "aliases": [ + "alphabet-e", + "letter-e" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "15C859D5-210D-4C8B-BB14-7A2B92ADB1C2", + "name": "alpha-e-box", + "codepoint": "F0B0C", + "aliases": [ + "alphabet-e-box", + "letter-e-box" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "6C02F23D-4684-4018-9E47-624103B0653E", + "name": "alpha-e-box-outline", + "codepoint": "F0BF7", + "aliases": [ + "alphabet-e-box-outline", + "letter-e-box-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "D1367C3A-1884-4A3E-A90F-0AAB3DDCACF1", + "name": "alpha-e-circle", + "codepoint": "F0BF8", + "aliases": [ + "alphabet-e-circle", + "letter-e-circle" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "CD51D79A-B691-4B46-BABF-6A419EE2716A", + "name": "alpha-e-circle-outline", + "codepoint": "F0BF9", + "aliases": [ + "alphabet-e-circle-outline", + "letter-e-circle-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "6E5FB32C-27B6-4ECE-8F88-65D8E29D1CD8", + "name": "alpha-f", + "codepoint": "F0AF3", + "aliases": [ + "alphabet-f", + "letter-f" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "1E5D6AAB-6056-4CEE-88EC-87FBE2C84FF0", + "name": "alpha-f-box", + "codepoint": "F0B0D", + "aliases": [ + "alphabet-f-box", + "letter-f-box" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "304C0008-2989-4DC9-8927-AE51F7B44F6C", + "name": "alpha-f-box-outline", + "codepoint": "F0BFA", + "aliases": [ + "alphabet-f-box-outline", + "letter-f-box-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "317A9E55-62CC-4A55-B851-483EB546D022", + "name": "alpha-f-circle", + "codepoint": "F0BFB", + "aliases": [ + "alphabet-f-circle", + "letter-f-circle" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "46706811-B9CA-4F96-B201-63E658BE1F6D", + "name": "alpha-f-circle-outline", + "codepoint": "F0BFC", + "aliases": [ + "alphabet-f-circle-outline", + "letter-f-circle-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "4B7C3083-DFDF-402E-9D71-CABE04305297", + "name": "alpha-g", + "codepoint": "F0AF4", + "aliases": [ + "alphabet-g", + "letter-g" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "A2781290-35AD-441F-B02C-15A0AB49B74D", + "name": "alpha-g-box", + "codepoint": "F0B0E", + "aliases": [ + "alphabet-g-box", + "letter-g-box" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "D9ED1661-B57E-47E9-B727-F03BC035DE4D", + "name": "alpha-g-box-outline", + "codepoint": "F0BFD", + "aliases": [ + "alphabet-g-box-outline", + "letter-g-box-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "5DB072AE-CE38-4FA8-A41D-0C7443DA3481", + "name": "alpha-g-circle", + "codepoint": "F0BFE", + "aliases": [ + "alphabet-g-circle", + "letter-g-circle" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "780BAB12-D647-4E55-BD56-487367D70FD0", + "name": "alpha-g-circle-outline", + "codepoint": "F0BFF", + "aliases": [ + "alphabet-g-circle-outline", + "letter-g-circle-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "99A5A78F-6759-4C02-A5D2-DA8FA3DDBBA9", + "name": "alpha-h", + "codepoint": "F0AF5", + "aliases": [ + "alphabet-h", + "letter-h" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "180E5F6A-8C7E-4B29-92C1-94C97D1266B9", + "name": "alpha-h-box", + "codepoint": "F0B0F", + "aliases": [ + "alphabet-h-box", + "letter-h-box" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "7568D810-145E-41E7-8447-E2257339D5D8", + "name": "alpha-h-box-outline", + "codepoint": "F0C00", + "aliases": [ + "alphabet-h-box-outline", + "letter-h-box-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "FC1C719F-CE44-4B8A-A2A8-5DE6E02405D2", + "name": "alpha-h-circle", + "codepoint": "F0C01", + "aliases": [ + "alphabet-h-circle", + "letter-h-circle" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "29BA4374-825B-46E4-8E81-FC027000A16F", + "name": "alpha-h-circle-outline", + "codepoint": "F0C02", + "aliases": [ + "alphabet-h-circle-outline", + "letter-h-circle-outline", + "helipad" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "C34618B6-174E-42C7-AD23-B65FCAC93D74", + "name": "alpha-i", + "codepoint": "F0AF6", + "aliases": [ + "alphabet-i", + "letter-i", + "roman-numeral-1" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "4D933A0E-88F5-4712-8BA1-0E60290A6623", + "name": "alpha-i-box", + "codepoint": "F0B10", + "aliases": [ + "alphabet-i-box", + "letter-i-box" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "E7CF351D-BC47-44AC-BA3E-D61F99D11026", + "name": "alpha-i-box-outline", + "codepoint": "F0C03", + "aliases": [ + "alphabet-i-box-outline", + "letter-i-box-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "0CAD67D2-EFF3-442E-91D6-1C27D759C1DD", + "name": "alpha-i-circle", + "codepoint": "F0C04", + "aliases": [ + "alphabet-i-circle", + "letter-i-circle" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "4AAE84B4-CF3E-4736-A420-DD188452F819", + "name": "alpha-i-circle-outline", + "codepoint": "F0C05", + "aliases": [ + "alphabet-i-circle-outline", + "letter-i-circle-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "C964FFC4-AA90-4AF6-B604-352082207789", + "name": "alpha-j", + "codepoint": "F0AF7", + "aliases": [ + "alphabet-j", + "letter-j" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "1472FB12-4CBA-476C-8F57-E1CB5E4213A6", + "name": "alpha-j-box", + "codepoint": "F0B11", + "aliases": [ + "alphabet-j-box", + "letter-j-box" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "52E82BF4-8023-49C2-A4CB-AF3A88B43D1A", + "name": "alpha-j-box-outline", + "codepoint": "F0C06", + "aliases": [ + "alphabet-j-box-outline", + "letter-j-box-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "90C7D800-47CA-4E5E-860D-8AAB0F6C51DC", + "name": "alpha-j-circle", + "codepoint": "F0C07", + "aliases": [ + "alphabet-j-circle", + "letter-j-circle" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "0A0B3839-C0D3-422A-B688-E59F4927AA6F", + "name": "alpha-j-circle-outline", + "codepoint": "F0C08", + "aliases": [ + "alphabet-j-circle-outline", + "letter-j-circle-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "358C06F7-7E39-4023-A9FC-2C02F275B84B", + "name": "alpha-k", + "codepoint": "F0AF8", + "aliases": [ + "alphabet-k", + "letter-k" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "EF778205-36FD-4C55-BDFB-0373983C95D4", + "name": "alpha-k-box", + "codepoint": "F0B12", + "aliases": [ + "alphabet-k-box", + "letter-k-box" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "FD913715-7C1E-4E80-9A44-34992AADB3E6", + "name": "alpha-k-box-outline", + "codepoint": "F0C09", + "aliases": [ + "alphabet-k-box-outline", + "letter-k-box-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "1F260841-CE76-48D8-BACE-8935459D850E", + "name": "alpha-k-circle", + "codepoint": "F0C0A", + "aliases": [ + "alphabet-k-circle", + "letter-k-circle" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "F4E2D505-4C0D-4184-9F62-FDD7A450F6E7", + "name": "alpha-k-circle-outline", + "codepoint": "F0C0B", + "aliases": [ + "alphabet-k-circle-outline", + "letter-k-circle-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "C4CFE00B-0978-482B-8E9E-F1DD4B21B45B", + "name": "alpha-l", + "codepoint": "F0AF9", + "aliases": [ + "alphabet-l", + "letter-l" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "7E7BF31C-C3FA-4744-B214-FF8D15753ED5", + "name": "alpha-l-box", + "codepoint": "F0B13", + "aliases": [ + "alphabet-l-box", + "letter-l-box" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "C0044FE0-893A-4429-A57F-9C58DFBE36CC", + "name": "alpha-l-box-outline", + "codepoint": "F0C0C", + "aliases": [ + "alphabet-l-box-outline", + "letter-l-box-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "B1456398-80C2-4D10-B7D3-A79BE026E457", + "name": "alpha-l-circle", + "codepoint": "F0C0D", + "aliases": [ + "alphabet-l-circle", + "letter-l-circle" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "F62EB8C2-6037-474B-8D48-FD635163D3A6", + "name": "alpha-l-circle-outline", + "codepoint": "F0C0E", + "aliases": [ + "alphabet-l-circle-outline", + "letter-l-circle-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "31B62839-D838-41FE-86B8-313070BBB0A9", + "name": "alpha-m", + "codepoint": "F0AFA", + "aliases": [ + "alphabet-m", + "letter-m" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "AB678336-D11A-4426-92A8-AA520A4F282B", + "name": "alpha-m-box", + "codepoint": "F0B14", + "aliases": [ + "alphabet-m-box", + "letter-m-box" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "147229CF-1402-4406-8E94-B83CC64248E2", + "name": "alpha-m-box-outline", + "codepoint": "F0C0F", + "aliases": [ + "alphabet-m-box-outline", + "letter-m-box-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "88D09175-8E63-4542-BBE7-6B8D7EC16EBE", + "name": "alpha-m-circle", + "codepoint": "F0C10", + "aliases": [ + "alphabet-m-circle", + "letter-m-circle" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "F85ABB66-FEE7-46ED-9DE3-AB3B24597863", + "name": "alpha-m-circle-outline", + "codepoint": "F0C11", + "aliases": [ + "alphabet-m-circle-outline", + "letter-m-circle-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "528E55D8-A774-4678-9D76-42EEFDF5FE3E", + "name": "alpha-n", + "codepoint": "F0AFB", + "aliases": [ + "alphabet-n", + "letter-n", + "neutral" + ], + "tags": [ + "Automotive", + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "8A547BE1-B4F5-4080-824D-998618AF2542", + "name": "alpha-n-box", + "codepoint": "F0B15", + "aliases": [ + "alphabet-n-box", + "letter-n-box" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "DF0B3005-5E38-4E53-9025-981EFA45D8FD", + "name": "alpha-n-box-outline", + "codepoint": "F0C12", + "aliases": [ + "alphabet-n-box-outline", + "letter-n-box-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "929903C6-6867-4884-8A02-7D72F1C44F2D", + "name": "alpha-n-circle", + "codepoint": "F0C13", + "aliases": [ + "alphabet-n-circle", + "letter-n-circle" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "8DA6710E-B31C-42C1-BB43-1B903D4B5CA5", + "name": "alpha-n-circle-outline", + "codepoint": "F0C14", + "aliases": [ + "alphabet-n-circle-outline", + "letter-n-circle-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "67F8B291-3AA9-4C70-AEAB-0150A40909FB", + "name": "alpha-o", + "codepoint": "F0AFC", + "aliases": [ + "alphabet-o", + "letter-o" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "53B24801-62B0-46AC-9474-90DCA470E506", + "name": "alpha-o-box", + "codepoint": "F0B16", + "aliases": [ + "alphabet-o-box", + "letter-o-box" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "9563FB80-4D77-4800-B7DF-CCFDD00A49DD", + "name": "alpha-o-box-outline", + "codepoint": "F0C15", + "aliases": [ + "alphabet-o-box-outline", + "letter-o-box-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "5DB486E7-89A5-45A6-8926-007B37DBC7D9", + "name": "alpha-o-circle", + "codepoint": "F0C16", + "aliases": [ + "alphabet-o-circle", + "letter-o-circle" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "485D936E-F9F7-4D89-A2CC-2C11268EAC1A", + "name": "alpha-o-circle-outline", + "codepoint": "F0C17", + "aliases": [ + "alphabet-o-circle-outline", + "letter-o-circle-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "750E27F3-36FF-423A-8AAD-F2FE833D9028", + "name": "alpha-p", + "codepoint": "F0AFD", + "aliases": [ + "alphabet-p", + "letter-p", + "park" + ], + "tags": [ + "Automotive", + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "A2775802-5936-4F9A-9E7F-54D2EA8CC0E9", + "name": "alpha-p-box", + "codepoint": "F0B17", + "aliases": [ + "alphabet-p-box", + "letter-p-box" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "B9B61AA9-C657-4C73-8C75-2A01C08672A6", + "name": "alpha-p-box-outline", + "codepoint": "F0C18", + "aliases": [ + "alphabet-p-box-outline", + "letter-p-box-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "172BAE9F-C813-407E-A1D0-CBB548C3F9D8", + "name": "alpha-p-circle", + "codepoint": "F0C19", + "aliases": [ + "alphabet-p-circle", + "letter-p-circle" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "5FF2B25B-8414-4FC9-BBEB-5D51901FB709", + "name": "alpha-p-circle-outline", + "codepoint": "F0C1A", + "aliases": [ + "alphabet-p-circle-outline", + "letter-p-circle-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "7DAD6E06-5D6E-4827-A20E-526F2F5AF4C9", + "name": "alpha-q", + "codepoint": "F0AFE", + "aliases": [ + "alphabet-q", + "letter-q" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "4B916C98-B981-4822-90D2-3EADCAE01FA3", + "name": "alpha-q-box", + "codepoint": "F0B18", + "aliases": [ + "alphabet-q-box", + "letter-q-box" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "C30942DA-E2FB-41A1-A0A5-3FB004E8FC67", + "name": "alpha-q-box-outline", + "codepoint": "F0C1B", + "aliases": [ + "alphabet-q-box-outline", + "letter-q-box-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "03AA79A3-ADEF-4B0E-8023-455FAD721515", + "name": "alpha-q-circle", + "codepoint": "F0C1C", + "aliases": [ + "alphabet-q-circle", + "letter-q-circle" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "43F96FE9-53D0-4C4E-AEC3-773656C97E41", + "name": "alpha-q-circle-outline", + "codepoint": "F0C1D", + "aliases": [ + "alphabet-q-circle-outline", + "letter-q-circle-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "A1C326AD-B2A8-4A9A-98AA-B657C101EB2F", + "name": "alpha-r", + "codepoint": "F0AFF", + "aliases": [ + "alphabet-r", + "letter-r", + "reverse" + ], + "tags": [ + "Automotive", + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "0089397E-6983-4161-9D06-77F3598119DD", + "name": "alpha-r-box", + "codepoint": "F0B19", + "aliases": [ + "alphabet-r-box", + "letter-r-box" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "206DB27B-1F78-481F-8E8E-1A78F8221EF7", + "name": "alpha-r-box-outline", + "codepoint": "F0C1E", + "aliases": [ + "alphabet-r-box-outline", + "letter-r-box-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "A0CA4573-5B82-4760-BB23-7D1413DE7257", + "name": "alpha-r-circle", + "codepoint": "F0C1F", + "aliases": [ + "alphabet-r-circle", + "letter-r-circle" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "3EFEFA7D-EE69-4813-93AB-096C148CC74B", + "name": "alpha-r-circle-outline", + "codepoint": "F0C20", + "aliases": [ + "alphabet-r-circle-outline", + "letter-r-circle-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "5E4ECB99-9DA0-419C-AADE-F2F7AE91FF6A", + "name": "alpha-s", + "codepoint": "F0B00", + "aliases": [ + "alphabet-s", + "letter-s" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "2BC531B2-987E-411F-B3AE-3686F24F3B05", + "name": "alpha-s-box", + "codepoint": "F0B1A", + "aliases": [ + "alphabet-s-box", + "letter-s-box" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "839A6E89-0555-4B05-BADA-B0D0C665E885", + "name": "alpha-s-box-outline", + "codepoint": "F0C21", + "aliases": [ + "alphabet-s-box-outline", + "letter-s-box-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "2F13C710-300C-4287-9320-C84024C1002D", + "name": "alpha-s-circle", + "codepoint": "F0C22", + "aliases": [ + "alphabet-s-circle", + "letter-s-circle" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "17018533-C274-4E75-86DB-2D0DB1F4B45E", + "name": "alpha-s-circle-outline", + "codepoint": "F0C23", + "aliases": [ + "alphabet-s-circle-outline", + "letter-s-circle-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "DEAF6AD9-9AB9-4B59-B47D-830357A4B665", + "name": "alpha-t", + "codepoint": "F0B01", + "aliases": [ + "alphabet-t", + "letter-t" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "3FDF524A-6293-4401-BEDE-7768370743CE", + "name": "alpha-t-box", + "codepoint": "F0B1B", + "aliases": [ + "alphabet-t-box", + "letter-t-box" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "5AB643B8-7A4C-470B-9C0C-3A3E1E730623", + "name": "alpha-t-box-outline", + "codepoint": "F0C24", + "aliases": [ + "alphabet-t-box-outline", + "letter-t-box-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "6A41607E-FD2D-49EB-B6A5-67472ECF381E", + "name": "alpha-t-circle", + "codepoint": "F0C25", + "aliases": [ + "alphabet-t-circle", + "letter-t-circle" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "63897F2D-C1BC-46D0-96D8-82CCC8AB8E9C", + "name": "alpha-t-circle-outline", + "codepoint": "F0C26", + "aliases": [ + "alphabet-t-circle-outline", + "letter-t-circle-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "7404138B-11FC-441F-9F64-2CADF3EED84F", + "name": "alpha-u", + "codepoint": "F0B02", + "aliases": [ + "alphabet-u", + "letter-u" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "B383312A-D001-4F27-95D9-9C705B7529E7", + "name": "alpha-u-box", + "codepoint": "F0B1C", + "aliases": [ + "alphabet-u-box", + "letter-u-box" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "CAA94F37-3C12-4A17-A0CF-F093E39F5463", + "name": "alpha-u-box-outline", + "codepoint": "F0C27", + "aliases": [ + "alphabet-u-box-outline", + "letter-u-box-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "C47AD771-D938-41ED-B07A-28499959E3BF", + "name": "alpha-u-circle", + "codepoint": "F0C28", + "aliases": [ + "alphabet-u-circle", + "letter-u-circle" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "12B388EE-036B-45AF-8390-122E6BA125CF", + "name": "alpha-u-circle-outline", + "codepoint": "F0C29", + "aliases": [ + "alphabet-u-circle-outline", + "letter-u-circle-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "6A261917-D952-4EFD-B8A4-9A91BCF67DE1", + "name": "alpha-v", + "codepoint": "F0B03", + "aliases": [ + "alphabet-v", + "letter-v", + "roman-numeral-5" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "C3B68231-EFA7-4988-BED2-9C158A812AC4", + "name": "alpha-v-box", + "codepoint": "F0B1D", + "aliases": [ + "alphabet-v-box", + "letter-v-box" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "784EF15E-8476-47B9-BACA-D440F60A371E", + "name": "alpha-v-box-outline", + "codepoint": "F0C2A", + "aliases": [ + "alphabet-v-box-outline", + "letter-v-box-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "C97A782B-26C7-4732-804F-D7D5BE126D5D", + "name": "alpha-v-circle", + "codepoint": "F0C2B", + "aliases": [ + "alphabet-v-circle", + "letter-v-circle" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "F6CE363B-41A6-411A-9FDE-D36E24013012", + "name": "alpha-v-circle-outline", + "codepoint": "F0C2C", + "aliases": [ + "alphabet-v-circle-outline", + "letter-v-circle-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "DFACCE73-8433-472E-AAB6-6471BBFDC82C", + "name": "alpha-w", + "codepoint": "F0B04", + "aliases": [ + "alphabet-w", + "letter-w" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "E63E39FF-8E9F-470F-9CDD-55B2703E620A", + "name": "alpha-w-box", + "codepoint": "F0B1E", + "aliases": [ + "alphabet-w-box", + "letter-w-box" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "B844FAFE-5491-4441-9C3E-23F2AB148E10", + "name": "alpha-w-box-outline", + "codepoint": "F0C2D", + "aliases": [ + "alphabet-w-box-outline", + "letter-w-box-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "8718E128-006E-4009-A718-A104B4C8E3A4", + "name": "alpha-w-circle", + "codepoint": "F0C2E", + "aliases": [ + "alphabet-w-circle", + "letter-w-circle" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "24152C0F-8019-42D1-B4F2-3917388A8987", + "name": "alpha-w-circle-outline", + "codepoint": "F0C2F", + "aliases": [ + "alphabet-w-circle-outline", + "letter-w-circle-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "44344AAE-07D8-455B-AA2E-68474E8829FE", + "name": "alpha-x", + "codepoint": "F0B05", + "aliases": [ + "alphabet-x", + "letter-x", + "roman-numeral-10" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "25BBD26F-C8D4-4E4D-899C-57D910EECA55", + "name": "alpha-x-box", + "codepoint": "F0B1F", + "aliases": [ + "alphabet-x-box", + "letter-x-box" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "98537673-0A9D-4982-A0E0-BFD69A0C1401", + "name": "alpha-x-box-outline", + "codepoint": "F0C30", + "aliases": [ + "alphabet-x-box-outline", + "letter-x-box-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "BF0C5599-EFCE-44ED-AD08-3CE99DFC9802", + "name": "alpha-x-circle", + "codepoint": "F0C31", + "aliases": [ + "alphabet-x-circle", + "letter-x-circle" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "8B9761E9-9101-4850-8DCA-D8B63193A20B", + "name": "alpha-x-circle-outline", + "codepoint": "F0C32", + "aliases": [ + "alphabet-x-circle-outline", + "letter-x-circle-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "CD6A13CC-DA14-42AD-A4A0-2A99EA3E5E3D", + "name": "alpha-y", + "codepoint": "F0B06", + "aliases": [ + "alphabet-y", + "letter-y" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "00418BEF-11B7-4644-8F57-3CBB7D8F9760", + "name": "alpha-y-box", + "codepoint": "F0B20", + "aliases": [ + "alphabet-y-box", + "letter-y-box" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "929FF46B-C6B6-4973-BB7E-44C232F149AC", + "name": "alpha-y-box-outline", + "codepoint": "F0C33", + "aliases": [ + "alphabet-y-box-outline", + "letter-y-box-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "07D04396-8CE9-47A0-80BF-9D7055655F81", + "name": "alpha-y-circle", + "codepoint": "F0C34", + "aliases": [ + "alphabet-y-circle", + "letter-y-circle" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "94DF1C7C-7FDE-4AD8-B6F9-B23C3C4DA478", + "name": "alpha-y-circle-outline", + "codepoint": "F0C35", + "aliases": [ + "alphabet-y-circle-outline", + "letter-y-circle-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "E82C7336-9ECE-4BA9-84BA-AA229FBF4E37", + "name": "alpha-z", + "codepoint": "F0B07", + "aliases": [ + "alphabet-z", + "letter-z" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "175F93C9-39AA-4076-A997-B1984D5CE960", + "name": "alpha-z-box", + "codepoint": "F0B21", + "aliases": [ + "alphabet-z-box", + "letter-z-box" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "EB6335C7-9EA1-4EB3-BCA5-2DF54F8B50C8", + "name": "alpha-z-box-outline", + "codepoint": "F0C36", + "aliases": [ + "alphabet-z-box-outline", + "letter-z-box-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "1F60D37E-2D88-48D1-A291-D3F59D171E55", + "name": "alpha-z-circle", + "codepoint": "F0C37", + "aliases": [ + "alphabet-z-circle", + "letter-z-circle" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "63AF9496-BE67-43F7-9DE4-341E0EDC0C62", + "name": "alpha-z-circle-outline", + "codepoint": "F0C38", + "aliases": [ + "alphabet-z-circle-outline", + "letter-z-circle-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "68AC0195-57C1-4759-8814-FA18DFE0351B", + "name": "alphabet-aurebesh", + "codepoint": "F132C", + "aliases": [ + "writing-system-aurebesh" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Haley Halcyon", + "version": "4.9.95" + }, + { + "id": "197B613F-AF17-41DE-B2A6-7FCB8D86C366", + "name": "alphabet-cyrillic", + "codepoint": "F132D", + "aliases": [ + "writing-system-cyrillic" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Haley Halcyon", + "version": "4.9.95" + }, + { + "id": "5E1EDFBD-2E67-41E1-8E23-F835614DBBD9", + "name": "alphabet-greek", + "codepoint": "F132E", + "aliases": [ + "writing-system-greek" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Haley Halcyon", + "version": "4.9.95" + }, + { + "id": "07851190-1E8F-43D3-A5BF-01A120C0A3FB", + "name": "alphabet-latin", + "codepoint": "F132F", + "aliases": [ + "writing-system-latin" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Haley Halcyon", + "version": "4.9.95" + }, + { + "id": "169593B8-F579-4167-B49C-5F353BBABB00", + "name": "alphabet-piqad", + "codepoint": "F1330", + "aliases": [ + "writing-system-piqad" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Haley Halcyon", + "version": "4.9.95" + }, + { + "id": "48C4C59F-80F3-454B-94B2-1951506F38C1", + "name": "alphabet-tengwar", + "codepoint": "F1337", + "aliases": [ + "writing-system-tengwar" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Haley Halcyon", + "version": "4.9.95" + }, + { + "id": "EAD8BAC5-EE7C-4553-9316-F45094CF9C7A", + "name": "alphabetical", + "codepoint": "F002C", + "aliases": [ + "letters", + "a-b-c", + "abc" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "5C6F0A6B-362A-4EBF-9E0C-57E7405429AE", + "name": "alphabetical-off", + "codepoint": "F100C", + "aliases": [], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Michael Richins", + "version": "4.1.95" + }, + { + "id": "87F9C7D3-2B22-45A0-A1A8-1060ECA2B0DD", + "name": "alphabetical-variant", + "codepoint": "F100D", + "aliases": [], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Michael Richins", + "version": "4.1.95" + }, + { + "id": "5C408382-5124-4A1E-9603-C510614D4C63", + "name": "alphabetical-variant-off", + "codepoint": "F100E", + "aliases": [], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Michael Richins", + "version": "4.1.95" + }, + { + "id": "1F7A2F31-3549-4F3C-A95E-E7356033A601", + "name": "altimeter", + "codepoint": "F05D7", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "B0DB559B-A9D4-473A-AF6D-C72559CCC9D9", + "name": "ambulance", + "codepoint": "F002F", + "aliases": [], + "tags": [ + "Transportation + Road", + "Medical \/ Hospital" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "0F3F828D-7F80-4571-A5B5-296FAC62FFB9", + "name": "ammunition", + "codepoint": "F0CE8", + "aliases": [ + "bullets" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.3.92" + }, + { + "id": "CC5AC69B-0EAA-454A-8757-4F670F478952", + "name": "ampersand", + "codepoint": "F0A8D", + "aliases": [ + "and" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "2.7.94" + }, + { + "id": "4A952C8C-7A6F-4028-A974-48E4DCE299CF", + "name": "amplifier", + "codepoint": "F0030", + "aliases": [], + "tags": [ + "Home Automation", + "Music" + ], + "author": "Christopher Schreiner", + "version": "1.5.54" + }, + { + "id": "E2914725-030B-4979-BCDE-87FCD4435F7F", + "name": "amplifier-off", + "codepoint": "F11B5", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.5.95" + }, + { + "id": "8A3C8CCE-D798-446B-A283-90129AD847C9", + "name": "anchor", + "codepoint": "F0031", + "aliases": [], + "tags": [ + "Transportation + Water" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "4633B767-FF29-411D-8C04-69057C6B65B2", + "name": "android", + "codepoint": "F0032", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "55847C89-2AE5-4F91-85AA-761FD8CE57F0", + "name": "android-messages", + "codepoint": "F0D45", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.4.93" + }, + { + "id": "B156B15D-86F9-40E0-8B8E-421F78BE5509", + "name": "android-studio", + "codepoint": "F0034", + "aliases": [ + "math-compass-variant" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "B4A236B3-E14B-4A64-8EDD-A48128013388", + "name": "angle-acute", + "codepoint": "F0937", + "aliases": [], + "tags": [ + "Math" + ], + "author": "Haley Halcyon", + "version": "2.4.85" + }, + { + "id": "7A6B88D9-B385-4A6B-84C8-8280456944E4", + "name": "angle-obtuse", + "codepoint": "F0938", + "aliases": [], + "tags": [ + "Math" + ], + "author": "Haley Halcyon", + "version": "2.4.85" + }, + { + "id": "77550809-9FBB-4283-BA57-7C48AB2B86C0", + "name": "angle-right", + "codepoint": "F0939", + "aliases": [], + "tags": [ + "Math" + ], + "author": "Haley Halcyon", + "version": "2.4.85" + }, + { + "id": "549F8173-7E91-411F-9ECF-D04D2B64B386", + "name": "angular", + "codepoint": "F06B2", + "aliases": [], + "tags": [ + "Brand \/ Logo", + "Developer \/ Languages" + ], + "author": "Contributors", + "version": "1.7.22" + }, + { + "id": "8A82CBEA-C1B3-40C2-96C2-DED8D83DA446", + "name": "angularjs", + "codepoint": "F06BF", + "aliases": [], + "tags": [ + "Brand \/ Logo", + "Developer \/ Languages" + ], + "author": "Contributors", + "version": "1.8.36" + }, + { + "id": "4FE8F135-8FF9-427B-8857-122FBB0A300A", + "name": "animation", + "codepoint": "F05D8", + "aliases": [ + "auto-awesome-motion" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "5DCFE57B-82CA-401A-A797-3C12F1BF4080", + "name": "animation-outline", + "codepoint": "F0A8F", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "2.7.94" + }, + { + "id": "093AE881-42E2-46B9-B833-894DDC2FE368", + "name": "animation-play", + "codepoint": "F093A", + "aliases": [], + "tags": [], + "author": "Google", + "version": "2.4.85" + }, + { + "id": "423AD280-5A46-49AF-B4C7-20C5E1640002", + "name": "animation-play-outline", + "codepoint": "F0A90", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "2.7.94" + }, + { + "id": "34EEAB55-08C0-4C84-A580-CAF1FA926D94", + "name": "ansible", + "codepoint": "F109A", + "aliases": [], + "tags": [ + "Developer \/ Languages", + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "4.2.95" + }, + { + "id": "B6F97155-147F-4D03-9C71-7668E5EA2712", + "name": "antenna", + "codepoint": "F1119", + "aliases": [], + "tags": [], + "author": "Google", + "version": "4.3.95" + }, + { + "id": "C72FF17B-D0E1-4641-9802-B6BA993D5910", + "name": "anvil", + "codepoint": "F089B", + "aliases": [], + "tags": [], + "author": "Nick", + "version": "2.2.43" + }, + { + "id": "B94C01C7-0851-4FD4-AEFD-CCD63F65C093", + "name": "apache-kafka", + "codepoint": "F100F", + "aliases": [], + "tags": [ + "Brand \/ Logo", + "Developer \/ Languages" + ], + "author": "Contributors", + "version": "4.1.95" + }, + { + "id": "ABE80259-E64D-4BF4-BC6E-1D8FFA16636F", + "name": "api", + "codepoint": "F109B", + "aliases": [], + "tags": [ + "Developer \/ Languages" + ], + "author": "Google", + "version": "4.2.95" + }, + { + "id": "22B88F3A-28F4-41FA-A63B-721699E2A8B2", + "name": "api-off", + "codepoint": "F1257", + "aliases": [], + "tags": [], + "author": "sergiocarlotto", + "version": "4.6.95" + }, + { + "id": "2829275C-A01C-42CD-A195-447629791D04", + "name": "apple", + "codepoint": "F0035", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "FAEC5B00-46A8-49AD-87DA-765891B9E387", + "name": "apple-finder", + "codepoint": "F0036", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "BDB8AF3D-28BD-4FF2-AED0-36108C1B0543", + "name": "apple-icloud", + "codepoint": "F0038", + "aliases": [ + "apple-mobileme" + ], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "9B0B7248-3416-4D43-9CE1-13D70949EAA1", + "name": "apple-ios", + "codepoint": "F0037", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "070FF4A9-7726-4682-8ABD-AC1800B8D83E", + "name": "apple-keyboard-caps", + "codepoint": "F0632", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.6.50" + }, + { + "id": "03043022-A59D-4E31-B385-E6D94D3D9B92", + "name": "apple-keyboard-command", + "codepoint": "F0633", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.6.50" + }, + { + "id": "F24769F6-25C3-4244-8C64-13A514E7CAAD", + "name": "apple-keyboard-control", + "codepoint": "F0634", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.6.50" + }, + { + "id": "C06A94E2-9606-484B-BC0D-D0B9A2FBA76F", + "name": "apple-keyboard-option", + "codepoint": "F0635", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.6.50" + }, + { + "id": "5AF5B660-DDD5-446A-8AC9-102776DBBBC9", + "name": "apple-keyboard-shift", + "codepoint": "F0636", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.6.50" + }, + { + "id": "F79DE68B-BB98-41F7-9B5D-69C8926AB9B0", + "name": "apple-safari", + "codepoint": "F0039", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "DD3492E1-1F83-4E41-8BA9-9E6A1380D235", + "name": "application", + "codepoint": "F08C6", + "aliases": [ + "iframe" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "2.3.50" + }, + { + "id": "B5216901-ECCB-41B3-8F35-BFA701ECDDBC", + "name": "application-array", + "codepoint": "F10F5", + "aliases": [ + "iframe-array" + ], + "tags": [ + "Developer \/ Languages" + ], + "author": "Michael Irigoyen", + "version": "4.3.95" + }, + { + "id": "D07A9442-941E-47BB-8B31-F2EB41DE069E", + "name": "application-array-outline", + "codepoint": "F10F6", + "aliases": [ + "iframe-array-outline" + ], + "tags": [ + "Developer \/ Languages" + ], + "author": "Michael Irigoyen", + "version": "4.3.95" + }, + { + "id": "6453ED46-EC58-4FE8-94C3-1AC170E42152", + "name": "application-braces", + "codepoint": "F10F7", + "aliases": [ + "iframe-braces" + ], + "tags": [ + "Developer \/ Languages" + ], + "author": "Michael Irigoyen", + "version": "4.3.95" + }, + { + "id": "3727A772-B282-4785-B291-A7C7EBCB25A8", + "name": "application-braces-outline", + "codepoint": "F10F8", + "aliases": [ + "iframe-braces-outline" + ], + "tags": [ + "Developer \/ Languages" + ], + "author": "Michael Irigoyen", + "version": "4.3.95" + }, + { + "id": "86A1CD17-B112-46F8-A076-424D528A25AA", + "name": "application-brackets", + "codepoint": "F0C8B", + "aliases": [ + "iframe-brackets" + ], + "tags": [ + "Developer \/ Languages" + ], + "author": "Michael Richins", + "version": "3.2.89" + }, + { + "id": "87F83807-58BE-49C5-981B-CBDFD8EABE4A", + "name": "application-brackets-outline", + "codepoint": "F0C8C", + "aliases": [ + "iframe-brackets-outline" + ], + "tags": [ + "Developer \/ Languages" + ], + "author": "Michael Richins", + "version": "3.2.89" + }, + { + "id": "38278159-AC2C-433A-9335-95B05C1F6F56", + "name": "application-cog", + "codepoint": "F0675", + "aliases": [ + "iframe-cog" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "1.7.12" + }, + { + "id": "A3B1663D-87F0-4E57-BAF4-5CB9D0CC6B17", + "name": "application-cog-outline", + "codepoint": "F1577", + "aliases": [ + "application-settings", + "iframe-cog-outline" + ], + "tags": [ + "Settings" + ], + "author": "Michael Irigoyen", + "version": "5.5.55" + }, + { + "id": "AAF23976-7C9D-4AFA-BE25-CCD225A95EEA", + "name": "application-edit", + "codepoint": "F00AE", + "aliases": [ + "iframe-edit" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "1.5.54" + }, + { + "id": "FBD11E2A-7F1F-4CE2-B17D-B3623D4FEA43", + "name": "application-edit-outline", + "codepoint": "F0619", + "aliases": [ + "iframe-edit-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "1.6.50" + }, + { + "id": "19852AF4-396B-4BA7-B9A1-3E412D49290A", + "name": "application-export", + "codepoint": "F0DAD", + "aliases": [ + "iframe-export-outline" + ], + "tags": [], + "author": "Austin Andrews", + "version": "3.5.94" + }, + { + "id": "0870BDBC-060F-49E5-B72C-CA06949643AF", + "name": "application-import", + "codepoint": "F0DAE", + "aliases": [ + "iframe-import-outline" + ], + "tags": [], + "author": "Austin Andrews", + "version": "3.5.94" + }, + { + "id": "55C0C50F-9F4D-44C4-A84B-C79F645A8604", + "name": "application-outline", + "codepoint": "F0614", + "aliases": [ + "web-asset", + "iframe-outline" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.6.50" + }, + { + "id": "2A524868-FBD4-442F-8E4C-413A1C8DDDEE", + "name": "application-parentheses", + "codepoint": "F10F9", + "aliases": [ + "iframe-parentheses" + ], + "tags": [ + "Developer \/ Languages" + ], + "author": "Michael Irigoyen", + "version": "4.3.95" + }, + { + "id": "9FA63D08-5057-4AA3-9FD0-367B8AE55352", + "name": "application-parentheses-outline", + "codepoint": "F10FA", + "aliases": [ + "iframe-parentheses-outline" + ], + "tags": [ + "Developer \/ Languages" + ], + "author": "Michael Irigoyen", + "version": "4.3.95" + }, + { + "id": "0AA8EAC5-6700-47B6-A38B-0E58CFA0CFE7", + "name": "application-settings", + "codepoint": "F0B60", + "aliases": [ + "iframe-settings" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.0.39" + }, + { + "id": "EB7E0628-A5CC-4E23-9AD1-CC35CC4E3722", + "name": "application-settings-outline", + "codepoint": "F1555", + "aliases": [ + "iframe-settings-outline" + ], + "tags": [ + "Settings" + ], + "author": "CoreyVidal", + "version": "5.5.55" + }, + { + "id": "A42EE2E1-D139-426F-9B59-C21E8C185DA7", + "name": "application-variable", + "codepoint": "F10FB", + "aliases": [ + "iframe-variable" + ], + "tags": [ + "Developer \/ Languages" + ], + "author": "Michael Irigoyen", + "version": "4.3.95" + }, + { + "id": "DF02C215-E96B-40CA-B372-9767965F11D3", + "name": "application-variable-outline", + "codepoint": "F10FC", + "aliases": [ + "iframe-variable-outline" + ], + "tags": [ + "Developer \/ Languages" + ], + "author": "Michael Irigoyen", + "version": "4.3.95" + }, + { + "id": "B5A9F91C-21A0-415A-AC77-B4318137C32D", + "name": "approximately-equal", + "codepoint": "F0F9E", + "aliases": [], + "tags": [ + "Math" + ], + "author": "Michael Irigoyen", + "version": "4.0.96" + }, + { + "id": "8EE13AEC-B8FF-4E25-9D5B-8447B0310133", + "name": "approximately-equal-box", + "codepoint": "F0F9F", + "aliases": [], + "tags": [ + "Math" + ], + "author": "Michael Irigoyen", + "version": "4.0.96" + }, + { + "id": "7F5B9650-26E7-4A88-A6D1-2C338778651D", + "name": "apps", + "codepoint": "F003B", + "aliases": [], + "tags": [ + "View" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "3EEC66E4-C03F-4701-B151-1C8048D19505", + "name": "apps-box", + "codepoint": "F0D46", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.4.93" + }, + { + "id": "B7F8E18D-C18D-4EA1-BABE-BE0E48BDCF2D", + "name": "arch", + "codepoint": "F08C7", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "2.3.50" + }, + { + "id": "9C2AD144-9997-4169-983C-879DCCD62760", + "name": "archive", + "codepoint": "F003C", + "aliases": [ + "box" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "41367FBC-DCE3-4202-AF33-3AD576C3FD7C", + "name": "archive-alert", + "codepoint": "F14FD", + "aliases": [ + "box-alert" + ], + "tags": [ + "Alert \/ Error" + ], + "author": "Austin Andrews", + "version": "5.4.55" + }, + { + "id": "1D17B03B-9147-4067-8F5E-88773D68289E", + "name": "archive-alert-outline", + "codepoint": "F14FE", + "aliases": [ + "box-alert-outline" + ], + "tags": [ + "Alert \/ Error" + ], + "author": "Austin Andrews", + "version": "5.4.55" + }, + { + "id": "237B205E-C03C-424A-93F9-8C771FE01A38", + "name": "archive-arrow-down", + "codepoint": "F1259", + "aliases": [ + "box-arrow-down", + "this-side-down" + ], + "tags": [], + "author": "frankgrinaert", + "version": "4.7.95" + }, + { + "id": "133BA980-E797-4DB3-9C92-F59AC3DB3399", + "name": "archive-arrow-down-outline", + "codepoint": "F125A", + "aliases": [ + "box-arrow-down", + "this-side-down-outline" + ], + "tags": [], + "author": "frankgrinaert", + "version": "4.7.95" + }, + { + "id": "43E8F715-D3DB-4CAA-9355-88E22C7E4D28", + "name": "archive-arrow-up", + "codepoint": "F125B", + "aliases": [ + "box-arrow-up", + "this-side-up" + ], + "tags": [], + "author": "frankgrinaert", + "version": "4.7.95" + }, + { + "id": "643EF8E3-148D-4858-85C6-A965822B74CF", + "name": "archive-arrow-up-outline", + "codepoint": "F125C", + "aliases": [ + "box-arrow-up-outline", + "this-side-up-outline" + ], + "tags": [], + "author": "frankgrinaert", + "version": "4.7.95" + }, + { + "id": "656CE7E5-1C31-4428-A609-703A2AA39DA7", + "name": "archive-cancel", + "codepoint": "F174B", + "aliases": [ + "box-cancel" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "2D1FAE99-E9DD-480C-B144-8B7FC7AB99C4", + "name": "archive-cancel-outline", + "codepoint": "F174C", + "aliases": [ + "box-cancel-outline" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "03F9B9A5-04B8-4A24-AE38-87BE165BBE35", + "name": "archive-check", + "codepoint": "F174D", + "aliases": [ + "box-check" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "F5A70DE2-BC31-4FCA-AE8E-5295D2F5DB7B", + "name": "archive-check-outline", + "codepoint": "F174E", + "aliases": [ + "box-check-outline" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "8DBB6350-60C3-4433-9805-C8AB712950C4", + "name": "archive-clock", + "codepoint": "F174F", + "aliases": [ + "box-clock", + "box-time", + "archive-time" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "0087686D-DB93-46D3-AD96-C8BA2F17E0D6", + "name": "archive-clock-outline", + "codepoint": "F1750", + "aliases": [ + "box-clock-outline", + "box-time-outline", + "archive-time-outline" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "3B5F3441-7A3E-4CF1-933B-F5FCF801CB8E", + "name": "archive-cog", + "codepoint": "F1751", + "aliases": [ + "box-cog" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "FD6CA806-C4D6-4D5E-AA3B-4292EE225734", + "name": "archive-cog-outline", + "codepoint": "F1752", + "aliases": [ + "box-cog-outline" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "6FC882E2-B34D-47ED-8E18-6CD197A0D709", + "name": "archive-edit", + "codepoint": "F1753", + "aliases": [ + "box-edit" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "18D5853A-26A8-416D-9029-9F216DA3316B", + "name": "archive-edit-outline", + "codepoint": "F1754", + "aliases": [ + "box-edit-outline" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "82B3AAAD-92D1-4524-98F4-F29AFB1A5BFA", + "name": "archive-eye", + "codepoint": "F1755", + "aliases": [ + "archive-view", + "box-eye", + "box-view" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "A61C4171-FA5D-4273-A1F5-72CC6506BE70", + "name": "archive-eye-outline", + "codepoint": "F1756", + "aliases": [ + "archive-view-outline", + "box-eye-outline", + "box-view-outline" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "52016536-6E90-4C85-891F-5A9183313497", + "name": "archive-lock", + "codepoint": "F1757", + "aliases": [ + "box-lock" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "DE180687-AD0B-4DE0-8156-EC22729FE7C3", + "name": "archive-lock-open", + "codepoint": "F1758", + "aliases": [ + "box-lock-open" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "5128174B-10F3-4057-96AE-4DD993B4317F", + "name": "archive-lock-open-outline", + "codepoint": "F1759", + "aliases": [ + "box-lock-open-outline" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "E5F9A56B-CB7E-4EEC-B03A-571F9704E32E", + "name": "archive-lock-outline", + "codepoint": "F175A", + "aliases": [ + "box-lock-outline" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "FDC11926-2947-4451-A7CE-2466D7CB8E07", + "name": "archive-marker", + "codepoint": "F175B", + "aliases": [ + "archive-location", + "box-marker", + "box-location" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "8639E3F6-3A01-47DF-9787-F80E273C99A2", + "name": "archive-marker-outline", + "codepoint": "F175C", + "aliases": [ + "archive-location-outline", + "box-marker-outline", + "box-location-outline" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "0C3AB42B-5B81-46D3-A4BB-DB367FC99B3F", + "name": "archive-minus", + "codepoint": "F175D", + "aliases": [ + "box-minus" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "F0B3A03C-4591-4F17-8FD7-CD65BC990596", + "name": "archive-minus-outline", + "codepoint": "F175E", + "aliases": [ + "box-minus-outline" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "30D759AA-6F1F-463A-9768-8D92F607207F", + "name": "archive-music", + "codepoint": "F175F", + "aliases": [ + "box-music" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "B039CC1C-A987-4383-874C-587493FD807D", + "name": "archive-music-outline", + "codepoint": "F1760", + "aliases": [ + "box-music-outline" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "C99E212A-CA2F-4E72-B727-B3B87C17B6B2", + "name": "archive-off", + "codepoint": "F1761", + "aliases": [ + "box-off" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "6E4F081A-2C98-4B93-B617-F1077839E94E", + "name": "archive-off-outline", + "codepoint": "F1762", + "aliases": [ + "box-off-outline" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "4B8AAB0C-9EB8-44D9-B1DF-C2EE6ACB91BE", + "name": "archive-outline", + "codepoint": "F120E", + "aliases": [ + "box-outline" + ], + "tags": [], + "author": "James Coyle", + "version": "4.6.95" + }, + { + "id": "FA4EDA1A-8E9B-47EA-9436-B75CF8BB5B21", + "name": "archive-plus", + "codepoint": "F1763", + "aliases": [ + "archive-add", + "box-plus", + "box-add" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "C2898E88-9D7F-44D1-A653-539A4B5481EC", + "name": "archive-plus-outline", + "codepoint": "F1764", + "aliases": [ + "archive-add-outline", + "box-plus-outline", + "box-add-outline" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "8BFF742C-7BD5-46C0-B280-0813A2431850", + "name": "archive-refresh", + "codepoint": "F1765", + "aliases": [ + "box-refresh" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "AFCA7BDE-7A75-4C5E-BC61-32662E4B011C", + "name": "archive-refresh-outline", + "codepoint": "F1766", + "aliases": [ + "box-refresh-outline" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "F856A6DD-E894-4B78-BE97-4239C01CECF7", + "name": "archive-remove", + "codepoint": "F1767", + "aliases": [ + "box-remove" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "68E7CD1A-7530-4710-8A10-D9D1CF5EFB7F", + "name": "archive-remove-outline", + "codepoint": "F1768", + "aliases": [ + "box-remove-outline" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "28C866C2-139E-4AF4-8E3D-F23CFE556B59", + "name": "archive-search", + "codepoint": "F1769", + "aliases": [ + "box-search" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "6705AD82-194D-411F-8822-EC3DA2379582", + "name": "archive-search-outline", + "codepoint": "F176A", + "aliases": [ + "box-search-outline" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "1F72C97E-9F21-4096-B59B-CD23519B1367", + "name": "archive-settings", + "codepoint": "F176B", + "aliases": [ + "box-settings" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "E07DE8F7-F3D7-4FCB-95EC-5D6C52CAFE32", + "name": "archive-settings-outline", + "codepoint": "F176C", + "aliases": [ + "box-settings-outline" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "08484938-1011-46B2-9756-2C227B9BCAAC", + "name": "archive-star", + "codepoint": "F176D", + "aliases": [ + "archive-favorite", + "box-star", + "box-favorite" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "05768C3B-09EA-40A8-AC27-F13F734FBB4A", + "name": "archive-star-outline", + "codepoint": "F176E", + "aliases": [ + "archive-favorite-outline", + "box-star-outline", + "box-favorite-outline" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "BCB51994-105E-404E-96D2-1242AEB13CDB", + "name": "archive-sync", + "codepoint": "F176F", + "aliases": [ + "box-sync" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "BB297982-E355-4AEE-9D17-CD57BDB0625A", + "name": "archive-sync-outline", + "codepoint": "F1770", + "aliases": [ + "box-sync-outline" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "F7613EF8-368F-4AA6-B833-7246A01C3961", + "name": "arm-flex", + "codepoint": "F0FD7", + "aliases": [], + "tags": [], + "author": "yuanruili", + "version": "4.2.95" + }, + { + "id": "D64BE31F-BA1D-48E0-B747-A1422392EC2D", + "name": "arm-flex-outline", + "codepoint": "F0FD6", + "aliases": [], + "tags": [], + "author": "yuanruili", + "version": "4.2.95" + }, + { + "id": "7F57A003-5F4E-46CF-9099-51B8D05381F8", + "name": "arrange-bring-forward", + "codepoint": "F003D", + "aliases": [], + "tags": [ + "Arrange", + "Geographic Information System" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "679C0678-9688-49FD-BA71-BED740A09267", + "name": "arrange-bring-to-front", + "codepoint": "F003E", + "aliases": [], + "tags": [ + "Arrange", + "Geographic Information System" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "677B1C90-BB0B-4F73-8EEA-D6E8FA709A6D", + "name": "arrange-send-backward", + "codepoint": "F003F", + "aliases": [], + "tags": [ + "Arrange", + "Geographic Information System" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "86145497-4CAA-41D6-A14E-0DD3FEE7721E", + "name": "arrange-send-to-back", + "codepoint": "F0040", + "aliases": [], + "tags": [ + "Arrange", + "Geographic Information System" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "5540E986-54E7-4FBF-A62F-9937B9E4F78D", + "name": "arrow-all", + "codepoint": "F0041", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "25DD11B1-DE14-49E3-A54F-B01DCC45798D", + "name": "arrow-bottom-left", + "codepoint": "F0042", + "aliases": [ + "arrow-down-left" + ], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "2EB5C181-D681-49D8-8D2D-C57840531E7F", + "name": "arrow-bottom-left-bold-box", + "codepoint": "F1964", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Michael Irigoyen", + "version": "6.5.95" + }, + { + "id": "EDB8949D-3883-4491-BD88-C3D7C8BA2A3E", + "name": "arrow-bottom-left-bold-box-outline", + "codepoint": "F1965", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Michael Irigoyen", + "version": "6.5.95" + }, + { + "id": "B34E6142-64AF-43FE-A565-2FAEEA35B800", + "name": "arrow-bottom-left-bold-outline", + "codepoint": "F09B7", + "aliases": [ + "arrow-down-left-bold-outline" + ], + "tags": [ + "Arrow" + ], + "author": "Michael Irigoyen", + "version": "2.5.94" + }, + { + "id": "73858F0F-F08D-4D54-A3C1-54E794E9C097", + "name": "arrow-bottom-left-thick", + "codepoint": "F09B8", + "aliases": [ + "arrow-down-left-thick", + "arrow-bottom-left-bold", + "arrow-down-left-bold" + ], + "tags": [ + "Arrow" + ], + "author": "Michael Irigoyen", + "version": "2.5.94" + }, + { + "id": "33169DB7-00C0-42E0-8C2D-2F50902FA15F", + "name": "arrow-bottom-left-thin", + "codepoint": "F19B6", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Matt Stayner", + "version": "6.5.95" + }, + { + "id": "D2582EA8-570A-4CB9-81A0-5DB3308BF6BD", + "name": "arrow-bottom-left-thin-circle-outline", + "codepoint": "F1596", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Google", + "version": "5.5.55" + }, + { + "id": "F7CB7031-655F-43BE-9165-F6C2CEC047B4", + "name": "arrow-bottom-right", + "codepoint": "F0043", + "aliases": [ + "arrow-down-right" + ], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "0A3C9B3E-5A92-45A9-AE11-63B0512981FB", + "name": "arrow-bottom-right-bold-box", + "codepoint": "F1966", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Michael Irigoyen", + "version": "6.5.95" + }, + { + "id": "C7024F9B-C057-444C-828C-5881C59183AE", + "name": "arrow-bottom-right-bold-box-outline", + "codepoint": "F1967", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Michael Irigoyen", + "version": "6.5.95" + }, + { + "id": "ABD34714-B566-4EDF-B876-93BFB6D254CB", + "name": "arrow-bottom-right-bold-outline", + "codepoint": "F09B9", + "aliases": [ + "arrow-down-right-bold-outline" + ], + "tags": [ + "Arrow" + ], + "author": "Michael Irigoyen", + "version": "2.5.94" + }, + { + "id": "01AD77CD-8F92-4E32-A752-387203BC9FF8", + "name": "arrow-bottom-right-thick", + "codepoint": "F09BA", + "aliases": [ + "arrow-down-right-thick", + "arrow-bottom-right-bold", + "arrow-down-right-bold" + ], + "tags": [ + "Arrow" + ], + "author": "Michael Irigoyen", + "version": "2.5.94" + }, + { + "id": "38BFAB4E-F7D3-45AE-BD45-39385BB23EE2", + "name": "arrow-bottom-right-thin", + "codepoint": "F19B7", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Matt Stayner", + "version": "6.5.95" + }, + { + "id": "26479C31-47EF-4EDA-B11E-323B136B7A6B", + "name": "arrow-bottom-right-thin-circle-outline", + "codepoint": "F1595", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Google", + "version": "5.5.55" + }, + { + "id": "86BB43B4-910B-4174-8455-661875054171", + "name": "arrow-collapse", + "codepoint": "F0615", + "aliases": [ + "arrow-compress" + ], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.6.50" + }, + { + "id": "54364780-8F31-4B23-8085-ABE21EA55926", + "name": "arrow-collapse-all", + "codepoint": "F0044", + "aliases": [ + "arrow-compress-all" + ], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "9989309E-22E1-46F6-B710-6717D1C5EA11", + "name": "arrow-collapse-down", + "codepoint": "F0792", + "aliases": [ + "arrow-compress-down" + ], + "tags": [ + "Arrow" + ], + "author": "Michael Richins", + "version": "2.0.46" + }, + { + "id": "56953ABE-D834-4DC6-A44B-87A3BF1181BA", + "name": "arrow-collapse-horizontal", + "codepoint": "F084C", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Google", + "version": "2.1.99" + }, + { + "id": "9F794864-D790-48F3-A8B4-31AEC3BB17FD", + "name": "arrow-collapse-left", + "codepoint": "F0793", + "aliases": [ + "arrow-compress-left" + ], + "tags": [ + "Arrow" + ], + "author": "Michael Richins", + "version": "2.0.46" + }, + { + "id": "FFED25A5-FD40-4274-9EE3-6B26F5C03584", + "name": "arrow-collapse-right", + "codepoint": "F0794", + "aliases": [ + "arrow-compress-right" + ], + "tags": [ + "Arrow" + ], + "author": "Michael Richins", + "version": "2.0.46" + }, + { + "id": "1E02D94D-6931-4CB8-8836-5276B076D811", + "name": "arrow-collapse-up", + "codepoint": "F0795", + "aliases": [ + "arrow-compress-up" + ], + "tags": [ + "Arrow" + ], + "author": "Michael Richins", + "version": "2.0.46" + }, + { + "id": "1D7700E7-2963-479F-81E1-910E2566894F", + "name": "arrow-collapse-vertical", + "codepoint": "F084D", + "aliases": [ + "compress" + ], + "tags": [ + "Arrow" + ], + "author": "Google", + "version": "2.1.99" + }, + { + "id": "61D65F86-CEB6-4CCC-8B88-00A4D0AD37C4", + "name": "arrow-decision", + "codepoint": "F09BB", + "aliases": [ + "proxy" + ], + "tags": [ + "Arrow" + ], + "author": "Michael Richins", + "version": "2.5.94" + }, + { + "id": "B115DB5B-AAF9-4C39-BC44-9E573E3154A1", + "name": "arrow-decision-auto", + "codepoint": "F09BC", + "aliases": [ + "proxy-auto" + ], + "tags": [], + "author": "Michael Richins", + "version": "2.5.94" + }, + { + "id": "FA34CDF8-9B5D-40D2-97D5-00F41438A185", + "name": "arrow-decision-auto-outline", + "codepoint": "F09BD", + "aliases": [ + "proxy-auto-outline" + ], + "tags": [], + "author": "Michael Richins", + "version": "2.5.94" + }, + { + "id": "7731818A-2C14-4B22-8758-9C7604BA6F3B", + "name": "arrow-decision-outline", + "codepoint": "F09BE", + "aliases": [ + "proxy-outline" + ], + "tags": [ + "Arrow" + ], + "author": "Michael Richins", + "version": "2.5.94" + }, + { + "id": "3821BF79-5857-47BE-84E3-A100B7247535", + "name": "arrow-down", + "codepoint": "F0045", + "aliases": [ + "arrow-downward", + "arrow-bottom" + ], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "CA8684F7-5654-4AE0-9840-9C3AD9611D19", + "name": "arrow-down-bold", + "codepoint": "F072E", + "aliases": [ + "arrow-bottom-bold" + ], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "545DF72E-705C-46AC-BABE-94F6C304CFAB", + "name": "arrow-down-bold-box", + "codepoint": "F072F", + "aliases": [ + "arrow-bottom-bold-box" + ], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "2D68AA5F-ACA1-45AA-873B-AD077377E698", + "name": "arrow-down-bold-box-outline", + "codepoint": "F0730", + "aliases": [ + "arrow-bottom-bold-box-outline" + ], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "E4AFC38F-01B3-452D-BDD7-A08EA66D53FA", + "name": "arrow-down-bold-circle", + "codepoint": "F0047", + "aliases": [ + "arrow-bottom-bold-circle" + ], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "1DA60E82-C1F0-449C-8157-7014A7C9E749", + "name": "arrow-down-bold-circle-outline", + "codepoint": "F0048", + "aliases": [ + "arrow-bottom-bold-circle-outline" + ], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "1F47DB52-28B0-40B7-836F-F6F2C58F2412", + "name": "arrow-down-bold-hexagon-outline", + "codepoint": "F0049", + "aliases": [ + "arrow-bottom-bold-hexagon-outline" + ], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "517A69FA-E66C-469C-908F-E0CD723EBE8A", + "name": "arrow-down-bold-outline", + "codepoint": "F09BF", + "aliases": [ + "arrow-bottom-bold-outline" + ], + "tags": [ + "Arrow" + ], + "author": "Michael Irigoyen", + "version": "2.5.94" + }, + { + "id": "04449961-F211-4FB7-BD87-EDA5F828B41D", + "name": "arrow-down-box", + "codepoint": "F06C0", + "aliases": [ + "arrow-bottom-box" + ], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.8.36" + }, + { + "id": "51D021A8-C3E1-477C-8BBF-DD4B84549515", + "name": "arrow-down-circle", + "codepoint": "F0CDB", + "aliases": [ + "arrow-bottom-circle" + ], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "3.3.92" + }, + { + "id": "E7EF8487-25AE-4CD6-8D04-4F90C60B3DCC", + "name": "arrow-down-circle-outline", + "codepoint": "F0CDC", + "aliases": [ + "arrow-bottom-circle-outline" + ], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "3.3.92" + }, + { + "id": "34BD0C0B-AF54-4BFC-A539-35D67612C4AC", + "name": "arrow-down-drop-circle", + "codepoint": "F004A", + "aliases": [ + "arrow-drop-down-circle", + "arrow-bottom-drop-circle" + ], + "tags": [ + "Arrow" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "65BE2EE5-23A5-49F8-A7A2-AEDD25C9C661", + "name": "arrow-down-drop-circle-outline", + "codepoint": "F004B", + "aliases": [ + "arrow-bottom-drop-circle-outline" + ], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "366A6689-1806-4A63-942C-C7CB82AD6C9C", + "name": "arrow-down-left", + "codepoint": "F17A1", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "ADB762F4-4A0D-46D2-8B63-979B496DD373", + "name": "arrow-down-left-bold", + "codepoint": "F17A2", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "28795CBE-011D-440C-9D9C-A1D50C4121B7", + "name": "arrow-down-right", + "codepoint": "F17A3", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "2104E4B3-3A34-44AE-B073-B041FDFE5D41", + "name": "arrow-down-right-bold", + "codepoint": "F17A4", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "E345145F-AD51-4B6F-8F7B-EC22C34E4E89", + "name": "arrow-down-thick", + "codepoint": "F0046", + "aliases": [ + "arrow-bottom-thick", + "arrow-down-bold", + "arrow-bottom-bold" + ], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "3419199D-CEAB-4084-AB62-A2EA908D40EB", + "name": "arrow-down-thin", + "codepoint": "F19B3", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Matt Stayner", + "version": "6.5.95" + }, + { + "id": "6BDA2640-A009-416F-95F8-EE91CB931B66", + "name": "arrow-down-thin-circle-outline", + "codepoint": "F1599", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Google", + "version": "5.5.55" + }, + { + "id": "F75C0670-7074-4756-BF30-7840D1C47E09", + "name": "arrow-expand", + "codepoint": "F0616", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.6.50" + }, + { + "id": "14842517-5BC4-49B6-86F2-8D6DC8870786", + "name": "arrow-expand-all", + "codepoint": "F004C", + "aliases": [], + "tags": [ + "Arrow", + "Geographic Information System" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "2338FC6A-1234-4A1F-AF6D-CFD45C92A2DF", + "name": "arrow-expand-down", + "codepoint": "F0796", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Michael Richins", + "version": "2.0.46" + }, + { + "id": "B48C3976-1304-4E32-9D69-0062A48018FB", + "name": "arrow-expand-horizontal", + "codepoint": "F084E", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Google", + "version": "2.1.99" + }, + { + "id": "FDF3C8E5-7AD6-4428-90EC-9426E56B5478", + "name": "arrow-expand-left", + "codepoint": "F0797", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Michael Richins", + "version": "2.0.46" + }, + { + "id": "FF7885EC-2A34-4149-A4F8-626135606D7F", + "name": "arrow-expand-right", + "codepoint": "F0798", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Michael Richins", + "version": "2.0.46" + }, + { + "id": "C13A62FF-DCC7-40DA-9326-C7FA77E4610F", + "name": "arrow-expand-up", + "codepoint": "F0799", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Michael Richins", + "version": "2.0.46" + }, + { + "id": "3B6EC96B-24CB-4CCE-AE9F-AA1787987C63", + "name": "arrow-expand-vertical", + "codepoint": "F084F", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Google", + "version": "2.1.99" + }, + { + "id": "AE7BA87E-D5CF-415E-8641-ADE156760E93", + "name": "arrow-horizontal-lock", + "codepoint": "F115B", + "aliases": [ + "scroll-horizontal-lock" + ], + "tags": [ + "Lock", + "Arrow" + ], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "C21995A9-094F-4EA8-9127-BA0506B240A6", + "name": "arrow-left", + "codepoint": "F004D", + "aliases": [ + "arrow-back" + ], + "tags": [ + "Arrow" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "E990CF7B-A7D8-444E-99FE-24930ABF2FA6", + "name": "arrow-left-bold", + "codepoint": "F0731", + "aliases": [], + "tags": [ + "Arrow", + "Automotive" + ], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "B7333E10-D6D6-4F86-A163-3A486C0B839D", + "name": "arrow-left-bold-box", + "codepoint": "F0732", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "E95F06DD-DD66-4CD1-AAAC-AAA870CE6AC7", + "name": "arrow-left-bold-box-outline", + "codepoint": "F0733", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "D40EF576-5116-4176-9F9D-C9E491517321", + "name": "arrow-left-bold-circle", + "codepoint": "F004F", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "E5ED912C-8075-477C-B62B-60184A436F2C", + "name": "arrow-left-bold-circle-outline", + "codepoint": "F0050", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "5B274371-4B53-4E82-9CE3-42EADBDCCF92", + "name": "arrow-left-bold-hexagon-outline", + "codepoint": "F0051", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "F88B9364-AE49-4AF6-A891-E20068064832", + "name": "arrow-left-bold-outline", + "codepoint": "F09C0", + "aliases": [], + "tags": [ + "Arrow", + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "2.5.94" + }, + { + "id": "94A5B560-135A-48EE-AF4D-89E19600F072", + "name": "arrow-left-bottom", + "codepoint": "F17A5", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "F1A75B07-42E2-4C15-A17C-264E9E18D12B", + "name": "arrow-left-bottom-bold", + "codepoint": "F17A6", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "67481609-631A-45C8-AB97-679B3D95F9FB", + "name": "arrow-left-box", + "codepoint": "F06C1", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.8.36" + }, + { + "id": "57F5D624-D5B0-4F19-AFAB-676F822C87DC", + "name": "arrow-left-circle", + "codepoint": "F0CDD", + "aliases": [ + "arrow-back-circle" + ], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "3.3.92" + }, + { + "id": "DEE2CC7E-5349-49CE-9700-6EF0D935A2E6", + "name": "arrow-left-circle-outline", + "codepoint": "F0CDE", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "3.3.92" + }, + { + "id": "199C908D-09C4-47C6-968A-74582AC4AF26", + "name": "arrow-left-drop-circle", + "codepoint": "F0052", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "37B06F58-3BD0-413F-B86D-2EFD008B3D69", + "name": "arrow-left-drop-circle-outline", + "codepoint": "F0053", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "D6011A13-DCCB-4DF7-B5A8-335A404C6B71", + "name": "arrow-left-right", + "codepoint": "F0E73", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "ginlime", + "version": "3.7.94" + }, + { + "id": "917B10C1-CFB6-4066-9977-0FA6DD835C0E", + "name": "arrow-left-right-bold", + "codepoint": "F0E74", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "3.7.94" + }, + { + "id": "341A3007-7214-4634-924D-1FFEA455AD5E", + "name": "arrow-left-right-bold-outline", + "codepoint": "F09C1", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Michael Irigoyen", + "version": "2.5.94" + }, + { + "id": "FA880DCB-AC6F-4C9C-9B6D-6E8236272C31", + "name": "arrow-left-thick", + "codepoint": "F004E", + "aliases": [ + "arrow-left-bold" + ], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "B3A70192-FB1E-4CC9-AA89-44AD6C921BCE", + "name": "arrow-left-thin", + "codepoint": "F19B1", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Matt Stayner", + "version": "6.5.95" + }, + { + "id": "B0495FDB-2123-4D72-9D15-F44ED6FBF8CD", + "name": "arrow-left-thin-circle-outline", + "codepoint": "F159A", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Google", + "version": "5.5.55" + }, + { + "id": "4FB19260-E56B-411D-B0A6-22D15C3299A3", + "name": "arrow-left-top", + "codepoint": "F17A7", + "aliases": [ + "turn-left" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "1239A338-77EE-47E5-A50B-2BC667AD7BB1", + "name": "arrow-left-top-bold", + "codepoint": "F17A8", + "aliases": [ + "turn-left-bold" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "A673515F-F8A6-41DC-9CB2-05C315FBDA53", + "name": "arrow-projectile", + "codepoint": "F1840", + "aliases": [], + "tags": [ + "Gaming \/ RPG", + "Sport" + ], + "author": "Colton Wiscombe", + "version": "6.2.95" + }, + { + "id": "F3A249F5-9D86-4A3E-A197-C8C410C3721B", + "name": "arrow-projectile-multiple", + "codepoint": "F183F", + "aliases": [], + "tags": [ + "Gaming \/ RPG", + "Sport" + ], + "author": "Colton Wiscombe", + "version": "6.2.95" + }, + { + "id": "05F25B05-A6D6-4863-8B21-6969E10329CF", + "name": "arrow-right", + "codepoint": "F0054", + "aliases": [ + "arrow-forward" + ], + "tags": [ + "Arrow" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "8C7A25B6-878E-4BDB-A5B7-2927257E1B7D", + "name": "arrow-right-bold", + "codepoint": "F0734", + "aliases": [], + "tags": [ + "Arrow", + "Automotive" + ], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "7225998A-DEF1-40C6-A05C-FA4119A643D9", + "name": "arrow-right-bold-box", + "codepoint": "F0735", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "1830D607-FDD5-4CC1-8D74-2A92C16B9E51", + "name": "arrow-right-bold-box-outline", + "codepoint": "F0736", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "AF178779-F8E7-4F77-A9D1-A4675713C440", + "name": "arrow-right-bold-circle", + "codepoint": "F0056", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "8B60DF03-2440-4D73-98DE-A8666666864E", + "name": "arrow-right-bold-circle-outline", + "codepoint": "F0057", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "1EAE1304-ED67-4607-A5C3-833B9CF7D943", + "name": "arrow-right-bold-hexagon-outline", + "codepoint": "F0058", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "86D895A6-8B2C-4757-A2CC-C506B402C2BB", + "name": "arrow-right-bold-outline", + "codepoint": "F09C2", + "aliases": [], + "tags": [ + "Arrow", + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "2.5.94" + }, + { + "id": "C46163EC-EF8C-4352-939E-FA980174E6B7", + "name": "arrow-right-bottom", + "codepoint": "F17A9", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "CBE2124B-2BE8-4891-9637-FC0E603E61F9", + "name": "arrow-right-bottom-bold", + "codepoint": "F17AA", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "8BA08E5C-7ED5-49E2-BDDE-1F1425C9FE1A", + "name": "arrow-right-box", + "codepoint": "F06C2", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.8.36" + }, + { + "id": "DF8E13FB-5C26-4C43-A6DC-F01185A97E42", + "name": "arrow-right-circle", + "codepoint": "F0CDF", + "aliases": [ + "arrow-forward-circle" + ], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "3.3.92" + }, + { + "id": "A0626F15-BC40-422F-B978-EEDFB5543961", + "name": "arrow-right-circle-outline", + "codepoint": "F0CE0", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "3.3.92" + }, + { + "id": "39AEA4FF-B65C-4368-B582-98108E3F9F06", + "name": "arrow-right-drop-circle", + "codepoint": "F0059", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "1E7109A9-3178-4B5E-87A9-CD1054B38BE9", + "name": "arrow-right-drop-circle-outline", + "codepoint": "F005A", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "9F7385FB-733C-4C1F-AC88-684BE98F381B", + "name": "arrow-right-thick", + "codepoint": "F0055", + "aliases": [ + "arrow-right-bold" + ], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "61B5D6E3-5706-401F-8D18-3145A446C543", + "name": "arrow-right-thin", + "codepoint": "F19B0", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Matt Stayner", + "version": "6.5.95" + }, + { + "id": "5ADB8DD0-2F9D-4F1B-ABC9-093579E960A0", + "name": "arrow-right-thin-circle-outline", + "codepoint": "F1598", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Google", + "version": "5.5.55" + }, + { + "id": "0FD8FA03-2B86-4B8E-8650-075591AC024C", + "name": "arrow-right-top", + "codepoint": "F17AB", + "aliases": [ + "turn-right" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "45C175E3-90FF-4F10-B6E2-6A08B0F70FAA", + "name": "arrow-right-top-bold", + "codepoint": "F17AC", + "aliases": [ + "turn-right-bold" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "ED7981BC-0B25-4657-BB7C-FB14A3D91D99", + "name": "arrow-split-horizontal", + "codepoint": "F093B", + "aliases": [ + "resize-vertical", + "resize" + ], + "tags": [ + "Arrow" + ], + "author": "Michael Richins", + "version": "2.4.85" + }, + { + "id": "7234382E-CB5D-4EB3-8BA2-0C50BC2171DB", + "name": "arrow-split-vertical", + "codepoint": "F093C", + "aliases": [ + "resize-horizontal", + "resize" + ], + "tags": [ + "Arrow" + ], + "author": "Michael Richins", + "version": "2.4.85" + }, + { + "id": "DD1AC44D-81B8-42EF-8714-7E7D29F2BC3F", + "name": "arrow-top-left", + "codepoint": "F005B", + "aliases": [ + "arrow-up-left" + ], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "3D49377B-0A47-4029-B384-F74C68234D41", + "name": "arrow-top-left-bold-box", + "codepoint": "F1968", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Michael Irigoyen", + "version": "6.5.95" + }, + { + "id": "63353DF0-B961-42CD-88D6-FA40887FD3DC", + "name": "arrow-top-left-bold-box-outline", + "codepoint": "F1969", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Michael Irigoyen", + "version": "6.5.95" + }, + { + "id": "4D43349E-EF13-4BB1-9684-0CEDE55DE9DE", + "name": "arrow-top-left-bold-outline", + "codepoint": "F09C3", + "aliases": [ + "arrow-up-left-bold-outline" + ], + "tags": [ + "Arrow" + ], + "author": "Michael Irigoyen", + "version": "2.5.94" + }, + { + "id": "3F3EFD86-07D4-495B-9E20-66826FF54E1D", + "name": "arrow-top-left-bottom-right", + "codepoint": "F0E75", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "ginlime", + "version": "3.7.94" + }, + { + "id": "D6AFEFE4-0E22-4197-B094-53E9528FFF0A", + "name": "arrow-top-left-bottom-right-bold", + "codepoint": "F0E76", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "3.7.94" + }, + { + "id": "D1D2B0DA-2EAD-451B-A9D9-B4C52E16FEDC", + "name": "arrow-top-left-thick", + "codepoint": "F09C4", + "aliases": [ + "arrow-up-left-thick", + "arrow-top-left-bold", + "arrow-up-left-bold" + ], + "tags": [ + "Arrow" + ], + "author": "Michael Irigoyen", + "version": "2.5.94" + }, + { + "id": "E88C3E97-A92F-4222-B649-01ABFB105FAF", + "name": "arrow-top-left-thin", + "codepoint": "F19B5", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Matt Stayner", + "version": "6.5.95" + }, + { + "id": "A3FB09A5-28B7-4A90-AA48-E6D0AA5031EB", + "name": "arrow-top-left-thin-circle-outline", + "codepoint": "F1593", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Google", + "version": "5.5.55" + }, + { + "id": "27AB7B33-64F3-49A5-8082-CA7B465152A9", + "name": "arrow-top-right", + "codepoint": "F005C", + "aliases": [ + "arrow-up-right" + ], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "249364CD-93CE-4A11-9556-65579FA8910F", + "name": "arrow-top-right-bold-box", + "codepoint": "F196A", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Michael Irigoyen", + "version": "6.5.95" + }, + { + "id": "7E8DD1EB-A1B7-48A5-B0B7-AF201BE6769E", + "name": "arrow-top-right-bold-box-outline", + "codepoint": "F196B", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Michael Irigoyen", + "version": "6.5.95" + }, + { + "id": "D6A6FF61-6566-4C1D-BBCC-30E00B0655DD", + "name": "arrow-top-right-bold-outline", + "codepoint": "F09C5", + "aliases": [ + "arrow-up-right-bold-outline" + ], + "tags": [ + "Arrow" + ], + "author": "Michael Irigoyen", + "version": "2.5.94" + }, + { + "id": "6B94201F-4E9F-486E-B3A6-484A6C266E55", + "name": "arrow-top-right-bottom-left", + "codepoint": "F0E77", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "ginlime", + "version": "3.7.94" + }, + { + "id": "815927F0-0D89-4D10-B336-2B918B321994", + "name": "arrow-top-right-bottom-left-bold", + "codepoint": "F0E78", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "3.7.94" + }, + { + "id": "37C83BAE-6330-4E45-A976-3E2642997035", + "name": "arrow-top-right-thick", + "codepoint": "F09C6", + "aliases": [ + "arrow-up-right-thick", + "arrow-top-right-bold", + "arrow-up-right-bold" + ], + "tags": [ + "Arrow" + ], + "author": "Michael Irigoyen", + "version": "2.5.94" + }, + { + "id": "500822ED-8EE6-427C-A4CE-AE56A4CB4C61", + "name": "arrow-top-right-thin", + "codepoint": "F19B4", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Matt Stayner", + "version": "6.5.95" + }, + { + "id": "83068FC2-BF4B-4B99-956D-46EC07F6738F", + "name": "arrow-top-right-thin-circle-outline", + "codepoint": "F1594", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Google", + "version": "5.5.55" + }, + { + "id": "D16AF4C4-90FC-42AB-8847-7F04DFDC6DF4", + "name": "arrow-u-down-left", + "codepoint": "F17AD", + "aliases": [ + "u-turn-left" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "EE6C5398-B666-4BE6-9728-AF35B5C77BA9", + "name": "arrow-u-down-left-bold", + "codepoint": "F17AE", + "aliases": [ + "u-turn-left-bold" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "C2A75394-FCF6-4BFB-868F-3FC14C48B6FC", + "name": "arrow-u-down-right", + "codepoint": "F17AF", + "aliases": [ + "u-turn-right" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "0B6ECB18-2663-4365-BBD1-3FE6A0A2A45C", + "name": "arrow-u-down-right-bold", + "codepoint": "F17B0", + "aliases": [ + "u-turn-right-bold" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "1130F0DA-3590-4221-BB00-33BED5B6EF10", + "name": "arrow-u-left-bottom", + "codepoint": "F17B1", + "aliases": [ + "undo" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "8793E254-1126-4A01-937C-C1827F173538", + "name": "arrow-u-left-bottom-bold", + "codepoint": "F17B2", + "aliases": [ + "undo" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "CA98908E-09FA-4F06-80AF-57851BF95AD3", + "name": "arrow-u-left-top", + "codepoint": "F17B3", + "aliases": [ + "undo" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "A249FE80-1743-4D6F-BF99-3311DB7B299B", + "name": "arrow-u-left-top-bold", + "codepoint": "F17B4", + "aliases": [ + "undo" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "4D16B4CD-BA9A-4B92-AF88-7CD0154655B2", + "name": "arrow-u-right-bottom", + "codepoint": "F17B5", + "aliases": [ + "redo" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "FF7E431E-FEA7-4953-AC5F-877269DE3B16", + "name": "arrow-u-right-bottom-bold", + "codepoint": "F17B6", + "aliases": [ + "redo" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "78232953-CC68-48A1-A4A5-DC64B46216BC", + "name": "arrow-u-right-top", + "codepoint": "F17B7", + "aliases": [ + "redo" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "31D886C9-7CC3-4E48-B829-D7870D11641C", + "name": "arrow-u-right-top-bold", + "codepoint": "F17B8", + "aliases": [ + "redo" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "A5C0B876-8E0A-4792-A2EF-101CB41C989B", + "name": "arrow-u-up-left", + "codepoint": "F17B9", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "EDF2047D-119E-4FD0-A936-67B372A4905F", + "name": "arrow-u-up-left-bold", + "codepoint": "F17BA", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "B743ECCA-F8DA-4F54-BF8F-8558F370AECB", + "name": "arrow-u-up-right", + "codepoint": "F17BB", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "EFF50AE6-BF7E-4BF5-AA67-F8BBE9B10588", + "name": "arrow-u-up-right-bold", + "codepoint": "F17BC", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "3AF49B97-A909-4961-9FBB-82C60D7CC773", + "name": "arrow-up", + "codepoint": "F005D", + "aliases": [ + "arrow-upward", + "arrow-top" + ], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "36199A40-CCCB-44B9-A6B0-73F7315E5716", + "name": "arrow-up-bold", + "codepoint": "F0737", + "aliases": [ + "arrow-top-bold" + ], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "062452EE-7669-4C36-85E6-A85BBA735348", + "name": "arrow-up-bold-box", + "codepoint": "F0738", + "aliases": [ + "arrow-top-bold-box" + ], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "5386BD1B-8959-4312-8739-5B08021F319D", + "name": "arrow-up-bold-box-outline", + "codepoint": "F0739", + "aliases": [ + "arrow-top-bold-box-outline" + ], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "D6719240-C87E-4185-B694-1EA5FFC94F4E", + "name": "arrow-up-bold-circle", + "codepoint": "F005F", + "aliases": [ + "arrow-top-bold-circle" + ], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "3337B267-94EC-426B-ABC9-5842F75B13B1", + "name": "arrow-up-bold-circle-outline", + "codepoint": "F0060", + "aliases": [ + "arrow-top-bold-circle-outline" + ], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "7C3BD067-49AB-41C8-9091-FBD2D533045E", + "name": "arrow-up-bold-hexagon-outline", + "codepoint": "F0061", + "aliases": [ + "arrow-top-bold-hexagon-outline" + ], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "664AA4B5-DD9C-40AD-A69E-3CD314025AD3", + "name": "arrow-up-bold-outline", + "codepoint": "F09C7", + "aliases": [ + "arrow-top-bold-outline" + ], + "tags": [ + "Arrow" + ], + "author": "Michael Irigoyen", + "version": "2.5.94" + }, + { + "id": "82958DF7-5F5F-4470-BFB4-4389937B4D29", + "name": "arrow-up-box", + "codepoint": "F06C3", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.8.36" + }, + { + "id": "208441AD-DDC5-4EC8-A48D-746DB5AE3CFD", + "name": "arrow-up-circle", + "codepoint": "F0CE1", + "aliases": [ + "arrow-top-circle" + ], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "3.3.92" + }, + { + "id": "D41B6302-5A2E-4B55-93A4-E30E07F761C1", + "name": "arrow-up-circle-outline", + "codepoint": "F0CE2", + "aliases": [ + "arrow-top-circle-outline" + ], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "3.3.92" + }, + { + "id": "DF1BCEA6-C202-477E-A3CF-2054D93E5F2A", + "name": "arrow-up-down", + "codepoint": "F0E79", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "ginlime", + "version": "3.7.94" + }, + { + "id": "478A5E36-5EC0-4DC5-B663-AFB1F84C83A9", + "name": "arrow-up-down-bold", + "codepoint": "F0E7A", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "3.7.94" + }, + { + "id": "1F1BE05B-E67A-4646-A8B3-08423BD58673", + "name": "arrow-up-down-bold-outline", + "codepoint": "F09C8", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Michael Irigoyen", + "version": "2.5.94" + }, + { + "id": "73B211DB-05CF-4025-B035-AD03454C47A6", + "name": "arrow-up-drop-circle", + "codepoint": "F0062", + "aliases": [ + "arrow-top-drop-circle" + ], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "42277E7D-D87A-4DE9-982B-37E6A8AE4E70", + "name": "arrow-up-drop-circle-outline", + "codepoint": "F0063", + "aliases": [ + "arrow-top-drop-circle-outline" + ], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "7FBBA0AD-B8E1-4C13-8BD7-B37D28135DD2", + "name": "arrow-up-left", + "codepoint": "F17BD", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "DDA1FF1D-BD25-4698-8D9B-7F0E6B71C274", + "name": "arrow-up-left-bold", + "codepoint": "F17BE", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "5C5BEA1F-BAA5-4F6A-AE84-F3EAD16C936C", + "name": "arrow-up-right", + "codepoint": "F17BF", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "491E8E53-19DC-4736-AA7F-F95AEB0F1696", + "name": "arrow-up-right-bold", + "codepoint": "F17C0", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "4EDBF232-461F-4F4C-82BB-64A89BA08405", + "name": "arrow-up-thick", + "codepoint": "F005E", + "aliases": [ + "arrow-top-thick", + "arrow-up-bold", + "arrow-top-bold" + ], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "62E619DA-599C-486F-AD85-9B5BAB4F5A92", + "name": "arrow-up-thin", + "codepoint": "F19B2", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Matt Stayner", + "version": "6.5.95" + }, + { + "id": "9733F983-7DD1-4230-B792-413D46E0B422", + "name": "arrow-up-thin-circle-outline", + "codepoint": "F1597", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Google", + "version": "5.5.55" + }, + { + "id": "8B00DF03-0754-4D7F-B0C9-8CF21D42989F", + "name": "arrow-vertical-lock", + "codepoint": "F115C", + "aliases": [ + "scroll-vertical-lock" + ], + "tags": [ + "Lock", + "Arrow" + ], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "548CCDA7-0E99-4568-9997-2ECFD33392BB", + "name": "artstation", + "codepoint": "F0B5B", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "3.0.39" + }, + { + "id": "AE294E7D-3AC0-4C7D-AFAF-8DDA0AB5BF52", + "name": "aspect-ratio", + "codepoint": "F0A24", + "aliases": [], + "tags": [], + "author": "Google", + "version": "2.6.95" + }, + { + "id": "0C612FE5-D7CC-44F3-945A-4BD15A7E39BA", + "name": "assistant", + "codepoint": "F0064", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "E8C373FE-4258-4341-B52A-E33D9A484968", + "name": "asterisk", + "codepoint": "F06C4", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "1.8.36" + }, + { + "id": "9FC24609-9C8B-4DBA-A473-F5EFAFCC90DF", + "name": "at", + "codepoint": "F0065", + "aliases": [ + "alternate-email" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "25806C84-E41E-43A7-93AF-EA4ABACA982E", + "name": "atlassian", + "codepoint": "F0804", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "2.1.19" + }, + { + "id": "A35ABE08-C956-4177-935C-1E1FB835772D", + "name": "atm", + "codepoint": "F0D47", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.4.93" + }, + { + "id": "C366C8B8-44FB-481E-88F2-AE0C3B1E8C74", + "name": "atom", + "codepoint": "F0768", + "aliases": [], + "tags": [ + "Science" + ], + "author": "Roberto Graham", + "version": "1.9.32" + }, + { + "id": "AD030F55-7B31-45F9-94F7-738CC84B2009", + "name": "atom-variant", + "codepoint": "F0E7B", + "aliases": [ + "orbit" + ], + "tags": [ + "Science" + ], + "author": "Austin Andrews", + "version": "3.7.94" + }, + { + "id": "E3C20B38-A6D3-4EF0-817D-863B25E555BA", + "name": "attachment", + "codepoint": "F0066", + "aliases": [ + "paperclip-horizontal" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "08E6060D-0A4F-4A3C-867E-192E737972C6", + "name": "attachment-lock", + "codepoint": "F19C4", + "aliases": [ + "paperclip-lock" + ], + "tags": [], + "author": "Simran", + "version": "6.6.95" + }, + { + "id": "2CB292B6-3835-44B4-857B-5231B87B5968", + "name": "audio-input-rca", + "codepoint": "F186B", + "aliases": [], + "tags": [ + "Audio" + ], + "author": "GreenTurtwig", + "version": "6.2.95" + }, + { + "id": "45243722-DE4F-4339-878C-4990A62A1990", + "name": "audio-input-stereo-minijack", + "codepoint": "F186C", + "aliases": [], + "tags": [ + "Audio" + ], + "author": "GreenTurtwig", + "version": "6.2.95" + }, + { + "id": "030EBE1B-EB48-4332-9E3D-BA6EF9C0AF79", + "name": "audio-input-xlr", + "codepoint": "F186D", + "aliases": [], + "tags": [ + "Audio" + ], + "author": "GreenTurtwig", + "version": "6.2.95" + }, + { + "id": "79CBF0E5-365C-466B-B162-2EBD1531F182", + "name": "audio-video", + "codepoint": "F093D", + "aliases": [ + "av-receiver" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Richins", + "version": "2.4.85" + }, + { + "id": "09FB4D77-A411-4CBF-9E88-21807D804CB3", + "name": "audio-video-off", + "codepoint": "F11B6", + "aliases": [ + "av-receiver-off" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "4.5.95" + }, + { + "id": "FC29D627-D661-4F31-9BEC-2F4BE355DFE7", + "name": "augmented-reality", + "codepoint": "F0850", + "aliases": [], + "tags": [], + "author": "GreenTurtwig", + "version": "2.1.99" + }, + { + "id": "2EAC4201-2055-4755-84A9-958FDDF7732B", + "name": "auto-download", + "codepoint": "F137E", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "4.9.95" + }, + { + "id": "FAAFAACC-4E0D-4688-B583-FC88A782A9B6", + "name": "auto-fix", + "codepoint": "F0068", + "aliases": [ + "magic", + "wand", + "auto-fix-high" + ], + "tags": [ + "Photography" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "3DEAD47C-90B3-485E-943C-CE2D70C85154", + "name": "auto-upload", + "codepoint": "F0069", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "00598C19-1255-479D-914A-1AADFDBC4868", + "name": "autorenew", + "codepoint": "F006A", + "aliases": [ + "clockwise-arrows", + "circular-arrows", + "circle-arrows", + "sync" + ], + "tags": [ + "Arrow" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "A118E3CD-FF18-48FD-B26C-B4A48641E4C5", + "name": "av-timer", + "codepoint": "F006B", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "851E2C6C-16AE-4C0F-B99A-AB6BE37C4F55", + "name": "aws", + "codepoint": "F0E0F", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "3.6.95" + }, + { + "id": "B6119C36-82C4-4C6F-98D5-B339A73C837E", + "name": "axe", + "codepoint": "F08C8", + "aliases": [], + "tags": [ + "Hardware \/ Tools" + ], + "author": "Nick", + "version": "2.3.50" + }, + { + "id": "C2FB1086-E609-4BD6-BF91-F703CDE00209", + "name": "axe-battle", + "codepoint": "F1842", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Colton Wiscombe", + "version": "6.2.95" + }, + { + "id": "78DCA9F5-C22C-407A-ABC1-15510C2F977A", + "name": "axis", + "codepoint": "F0D48", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "3.4.93" + }, + { + "id": "3D0AC996-0A31-4D68-AD38-A8507967B269", + "name": "axis-arrow", + "codepoint": "F0D49", + "aliases": [ + "accelerometer", + "gyro" + ], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "3.4.93" + }, + { + "id": "FCB87FD8-4522-47AF-AC10-2DF8A59F632D", + "name": "axis-arrow-info", + "codepoint": "F140E", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "5.1.45" + }, + { + "id": "1EE0C03F-9BCA-4AB4-92C3-209EA92FA54F", + "name": "axis-arrow-lock", + "codepoint": "F0D4A", + "aliases": [], + "tags": [ + "Lock", + "Arrow" + ], + "author": "Austin Andrews", + "version": "3.4.93" + }, + { + "id": "D2BAA555-22F2-447F-89F1-95D11AE09126", + "name": "axis-lock", + "codepoint": "F0D4B", + "aliases": [], + "tags": [ + "Lock" + ], + "author": "Austin Andrews", + "version": "3.4.93" + }, + { + "id": "933B83F8-4F97-436F-89E0-574315FF1E2E", + "name": "axis-x-arrow", + "codepoint": "F0D4C", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "3.4.93" + }, + { + "id": "E113D418-BFDB-44FE-A809-61072FEAEF39", + "name": "axis-x-arrow-lock", + "codepoint": "F0D4D", + "aliases": [], + "tags": [ + "Lock", + "Arrow" + ], + "author": "Austin Andrews", + "version": "3.4.93" + }, + { + "id": "7EE23AE2-F41C-4CDA-9B52-B8A432CA7E20", + "name": "axis-x-rotate-clockwise", + "codepoint": "F0D4E", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "3.4.93" + }, + { + "id": "B500E4B0-397A-4BA2-926F-5B8BDF10632F", + "name": "axis-x-rotate-counterclockwise", + "codepoint": "F0D4F", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "3.4.93" + }, + { + "id": "6620039A-2405-48BB-9619-143BAF7CF8DD", + "name": "axis-x-y-arrow-lock", + "codepoint": "F0D50", + "aliases": [], + "tags": [ + "Lock", + "Arrow" + ], + "author": "Austin Andrews", + "version": "3.4.93" + }, + { + "id": "F12198D8-62C4-4E6A-A201-5D33DB690736", + "name": "axis-y-arrow", + "codepoint": "F0D51", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "3.4.93" + }, + { + "id": "4C02BFA9-8AF8-4FC3-AAC7-F4D4AEF9BE06", + "name": "axis-y-arrow-lock", + "codepoint": "F0D52", + "aliases": [], + "tags": [ + "Lock", + "Arrow" + ], + "author": "Austin Andrews", + "version": "3.4.93" + }, + { + "id": "6A8E42CA-4236-496C-9C0A-81FADCDA6506", + "name": "axis-y-rotate-clockwise", + "codepoint": "F0D53", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "3.4.93" + }, + { + "id": "70E8F92A-9AAA-44CB-AB76-527463DE2D06", + "name": "axis-y-rotate-counterclockwise", + "codepoint": "F0D54", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "3.4.93" + }, + { + "id": "2BAA5FEA-713E-44D6-A44F-B36C92BB7F60", + "name": "axis-z-arrow", + "codepoint": "F0D55", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "3.4.93" + }, + { + "id": "870F3E6C-6957-498E-AC62-BAE40C9FA7EA", + "name": "axis-z-arrow-lock", + "codepoint": "F0D56", + "aliases": [], + "tags": [ + "Lock", + "Arrow" + ], + "author": "Austin Andrews", + "version": "3.4.93" + }, + { + "id": "D3A59461-2A63-4C62-B528-564252BBAB29", + "name": "axis-z-rotate-clockwise", + "codepoint": "F0D57", + "aliases": [ + "vertical-rotate-clockwise" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.4.93" + }, + { + "id": "DB0819A2-5E99-483B-BBC8-AEAD0DE9D196", + "name": "axis-z-rotate-counterclockwise", + "codepoint": "F0D58", + "aliases": [ + "vertical-rotate-counterclockwise" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.4.93" + }, + { + "id": "3F7EAFAC-7A39-4051-B58D-2CBA6687110C", + "name": "babel", + "codepoint": "F0A25", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "2.6.95" + }, + { + "id": "2CD51EFC-51B6-4323-B1EA-429EB58BFF7F", + "name": "baby", + "codepoint": "F006C", + "aliases": [], + "tags": [ + "People \/ Family" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "B3497A75-EE3B-4A8A-8F27-39A458423659", + "name": "baby-bottle", + "codepoint": "F0F39", + "aliases": [], + "tags": [ + "People \/ Family" + ], + "author": "Michael Richins", + "version": "3.9.97" + }, + { + "id": "5E06191D-D9AC-412E-B21B-C3AF1F28D76F", + "name": "baby-bottle-outline", + "codepoint": "F0F3A", + "aliases": [], + "tags": [ + "People \/ Family" + ], + "author": "Michael Richins", + "version": "3.9.97" + }, + { + "id": "46AF3844-1F3F-43B5-A93B-424EC83BCADB", + "name": "baby-buggy", + "codepoint": "F13E0", + "aliases": [ + "stroller", + "pram", + "carriage" + ], + "tags": [ + "People \/ Family" + ], + "author": "Moma Design Studio", + "version": "5.1.45" + }, + { + "id": "FA711E97-6083-45AA-9C92-FCCDABC57D37", + "name": "baby-carriage", + "codepoint": "F068F", + "aliases": [ + "child-friendly", + "stroller", + "pram", + "buggy" + ], + "tags": [ + "People \/ Family" + ], + "author": "Google", + "version": "1.7.12" + }, + { + "id": "D495FD84-4476-4E2E-B099-4E0A07AA9D90", + "name": "baby-carriage-off", + "codepoint": "F0FA0", + "aliases": [ + "child-friendly-off", + "stroller-off", + "pram-off", + "buggy-off" + ], + "tags": [ + "People \/ Family" + ], + "author": "Michael Richins", + "version": "4.0.96" + }, + { + "id": "78A84DE8-3ED5-4F81-991B-8EAE452908D3", + "name": "baby-face", + "codepoint": "F0E7C", + "aliases": [ + "emoji-baby", + "emoticon-baby" + ], + "tags": [ + "People \/ Family" + ], + "author": "Google", + "version": "3.7.94" + }, + { + "id": "24C6F5BD-6965-4CDB-B3AC-02CA82F24216", + "name": "baby-face-outline", + "codepoint": "F0E7D", + "aliases": [ + "emoji-baby-outline", + "emoticon-baby-outline" + ], + "tags": [ + "People \/ Family" + ], + "author": "Google", + "version": "3.7.94" + }, + { + "id": "5A5BC824-220B-4998-883A-0E57FB2AB75F", + "name": "backburger", + "codepoint": "F006D", + "aliases": [ + "hamburger-menu-back" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "2AAC06E6-8ABD-418B-B9A4-8554B62D7C04", + "name": "backspace", + "codepoint": "F006E", + "aliases": [ + "erase", + "clear" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "7CD351DA-560B-42B5-86F3-7F782EA70FEA", + "name": "backspace-outline", + "codepoint": "F0B5C", + "aliases": [ + "erase-outline", + "clear-outline" + ], + "tags": [], + "author": "Google", + "version": "3.0.39" + }, + { + "id": "49AA61F3-2E3D-4EEA-BFB1-32D59C6906F0", + "name": "backspace-reverse", + "codepoint": "F0E7E", + "aliases": [ + "clear-reverse", + "erase-reverse" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.7.94" + }, + { + "id": "287700E2-130D-484B-B56D-0162BE6DEEEE", + "name": "backspace-reverse-outline", + "codepoint": "F0E7F", + "aliases": [ + "clear-reverse-outline", + "erase-reverse-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.7.94" + }, + { + "id": "36F8C2B4-C82C-4546-AFFC-601ECA54A603", + "name": "backup-restore", + "codepoint": "F006F", + "aliases": [ + "settings-backup-restore" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "059B29E7-34BA-402E-B06A-B9EBF021FA8B", + "name": "bacteria", + "codepoint": "F0ED5", + "aliases": [], + "tags": [ + "Science", + "Medical \/ Hospital" + ], + "author": "Michael Irigoyen", + "version": "3.8.95" + }, + { + "id": "548C05E8-98DD-4D5C-8308-FA997A2C9016", + "name": "bacteria-outline", + "codepoint": "F0ED6", + "aliases": [], + "tags": [ + "Science", + "Medical \/ Hospital" + ], + "author": "Michael Irigoyen", + "version": "3.8.95" + }, + { + "id": "AE2E869B-B420-4505-9EE0-EE3751478D64", + "name": "badge-account", + "codepoint": "F0DA7", + "aliases": [ + "user-badge", + "person-badge" + ], + "tags": [ + "Account \/ User" + ], + "author": "Michael Richins", + "version": "3.5.94" + }, + { + "id": "610A9983-6737-4876-B1E2-09C22D3888D9", + "name": "badge-account-alert", + "codepoint": "F0DA8", + "aliases": [ + "user-badge-alert", + "person-badge-alert", + "account-badge-warning", + "user-badge-warning", + "person-badge-warning" + ], + "tags": [ + "Account \/ User", + "Alert \/ Error" + ], + "author": "Michael Richins", + "version": "3.5.94" + }, + { + "id": "3F5E356C-AD32-46E2-835F-ECFC043C73AD", + "name": "badge-account-alert-outline", + "codepoint": "F0DA9", + "aliases": [ + "user-badge-alert-outline", + "person-badge-alert-outline", + "account-badge-warning-outline", + "user-badge-warning-outline", + "person-badge-warning-outline" + ], + "tags": [ + "Account \/ User", + "Alert \/ Error" + ], + "author": "Michael Richins", + "version": "3.5.94" + }, + { + "id": "99CC4A89-E39E-460D-B199-227045E4A57D", + "name": "badge-account-horizontal", + "codepoint": "F0E0D", + "aliases": [], + "tags": [ + "Account \/ User" + ], + "author": "Google", + "version": "3.6.95" + }, + { + "id": "089F503E-00BF-4103-9475-B0E3955CE09D", + "name": "badge-account-horizontal-outline", + "codepoint": "F0E0E", + "aliases": [], + "tags": [ + "Account \/ User" + ], + "author": "Google", + "version": "3.6.95" + }, + { + "id": "37856000-4337-42D9-B273-9C9656E9CFCD", + "name": "badge-account-outline", + "codepoint": "F0DAA", + "aliases": [ + "user-badge-outline", + "person-badge-outline" + ], + "tags": [ + "Account \/ User" + ], + "author": "Michael Richins", + "version": "3.5.94" + }, + { + "id": "AF478988-12FA-460A-AE5B-01536D6D5B97", + "name": "badminton", + "codepoint": "F0851", + "aliases": [ + "shuttlecock" + ], + "tags": [ + "Sport" + ], + "author": "Nick", + "version": "2.1.99" + }, + { + "id": "0B935A7D-05EB-4687-8E4B-BC075AA2FA85", + "name": "bag-carry-on", + "codepoint": "F0F3B", + "aliases": [ + "carry-on-luggage" + ], + "tags": [ + "Transportation + Flying" + ], + "author": "Google", + "version": "3.9.97" + }, + { + "id": "57DD596E-AFB6-46D2-8415-2DED40839B11", + "name": "bag-carry-on-check", + "codepoint": "F0D65", + "aliases": [ + "carry-on-bag-tick", + "carry-on-bag-check" + ], + "tags": [ + "Transportation + Flying" + ], + "author": "Google", + "version": "3.4.93" + }, + { + "id": "F11D5411-E08A-483D-B04C-A75B523C717C", + "name": "bag-carry-on-off", + "codepoint": "F0F3C", + "aliases": [ + "carry-on-luggage-off" + ], + "tags": [ + "Transportation + Flying" + ], + "author": "Google", + "version": "3.9.97" + }, + { + "id": "2D40D813-D1C8-4190-8010-012467F9E48F", + "name": "bag-checked", + "codepoint": "F0F3D", + "aliases": [ + "luggage" + ], + "tags": [ + "Transportation + Flying" + ], + "author": "Google", + "version": "3.9.97" + }, + { + "id": "FB55F27F-9D0D-4EA7-ACD7-22C85E799248", + "name": "bag-personal", + "codepoint": "F0E10", + "aliases": [ + "backpack" + ], + "tags": [ + "Transportation + Flying" + ], + "author": "Michael Richins", + "version": "3.6.95" + }, + { + "id": "9B14800C-E104-4A89-9773-B220CA30A403", + "name": "bag-personal-off", + "codepoint": "F0E11", + "aliases": [ + "backpack-off" + ], + "tags": [ + "Transportation + Flying" + ], + "author": "Michael Richins", + "version": "3.6.95" + }, + { + "id": "822DE3FA-6BBB-4DF9-B586-A63CA5162EF1", + "name": "bag-personal-off-outline", + "codepoint": "F0E12", + "aliases": [ + "backpack-off-outline" + ], + "tags": [ + "Transportation + Flying" + ], + "author": "Michael Richins", + "version": "3.6.95" + }, + { + "id": "E95F21EF-993D-462F-BA6E-21F7665BC34C", + "name": "bag-personal-outline", + "codepoint": "F0E13", + "aliases": [ + "backpack-outline" + ], + "tags": [ + "Transportation + Flying" + ], + "author": "Michael Richins", + "version": "3.6.95" + }, + { + "id": "0DBD5DC4-4D5B-48B9-951C-249BB05C3E7E", + "name": "bag-suitcase", + "codepoint": "F158B", + "aliases": [], + "tags": [ + "Transportation + Flying" + ], + "author": "Google", + "version": "5.5.55" + }, + { + "id": "44E2AE1A-79ED-43C0-9A29-B18DFCB9B915", + "name": "bag-suitcase-off", + "codepoint": "F158D", + "aliases": [], + "tags": [ + "Transportation + Flying" + ], + "author": "Google", + "version": "5.5.55" + }, + { + "id": "E89335F8-3A20-489F-A974-FF591F8A147E", + "name": "bag-suitcase-off-outline", + "codepoint": "F158E", + "aliases": [], + "tags": [ + "Transportation + Flying" + ], + "author": "Google", + "version": "5.5.55" + }, + { + "id": "4977C376-1E6B-41F4-92F4-3410E9699F2D", + "name": "bag-suitcase-outline", + "codepoint": "F158C", + "aliases": [], + "tags": [ + "Transportation + Flying" + ], + "author": "Google", + "version": "5.5.55" + }, + { + "id": "B6469241-E347-42D8-BF71-8DF29F1CA897", + "name": "baguette", + "codepoint": "F0F3E", + "aliases": [ + "bread", + "bakery", + "french-baguette", + "loaf" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Nick", + "version": "3.9.97" + }, + { + "id": "005E0382-9004-4606-AA2A-07E27AF1E77E", + "name": "balcony", + "codepoint": "F1817", + "aliases": [ + "terrace", + "patio", + "veranda" + ], + "tags": [ + "Home Automation" + ], + "author": "Google", + "version": "6.1.95" + }, + { + "id": "31D1D255-3E73-41A8-93E2-12DF16DA0C40", + "name": "balloon", + "codepoint": "F0A26", + "aliases": [ + "party-balloon" + ], + "tags": [ + "Holiday" + ], + "author": "Michael Richins", + "version": "2.6.95" + }, + { + "id": "27AB71F3-1EFD-484F-8E63-C1E4C694E392", + "name": "ballot", + "codepoint": "F09C9", + "aliases": [ + "vote" + ], + "tags": [], + "author": "Google", + "version": "2.5.94" + }, + { + "id": "B9CDE0FA-F96A-413C-9BFD-DAB4DBC3DDE3", + "name": "ballot-outline", + "codepoint": "F09CA", + "aliases": [ + "vote-outline" + ], + "tags": [], + "author": "Google", + "version": "2.5.94" + }, + { + "id": "D0C76005-3272-4189-A061-E344D9BAB0C6", + "name": "ballot-recount", + "codepoint": "F0C39", + "aliases": [ + "vote-recount" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "0B0AD153-4696-4ED2-9AE1-309926B23287", + "name": "ballot-recount-outline", + "codepoint": "F0C3A", + "aliases": [ + "vote-recount-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "6CDF527A-26C1-4175-A56B-5D65FD5E46E2", + "name": "bandage", + "codepoint": "F0DAF", + "aliases": [ + "band-aid", + "plaster" + ], + "tags": [], + "author": "Google", + "version": "3.5.94" + }, + { + "id": "FE08919F-CFFC-4A25-994C-CEDEB299908B", + "name": "bank", + "codepoint": "F0070", + "aliases": [ + "account-balance", + "museum" + ], + "tags": [ + "Banking", + "Places" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "1642BE6C-C1B6-49EA-833D-BB5E20BC1C69", + "name": "bank-check", + "codepoint": "F1655", + "aliases": [], + "tags": [ + "Banking" + ], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "DAC4946E-1A07-44B4-977F-E51D740DA5FB", + "name": "bank-minus", + "codepoint": "F0DB0", + "aliases": [], + "tags": [ + "Banking" + ], + "author": "Austin Andrews", + "version": "3.5.94" + }, + { + "id": "9379EA96-CBC9-4A84-BF1A-18A80E7BDBE2", + "name": "bank-off", + "codepoint": "F1656", + "aliases": [], + "tags": [ + "Banking" + ], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "4590ED1A-1E67-42F4-8D4B-E2B39E5EFC63", + "name": "bank-off-outline", + "codepoint": "F1657", + "aliases": [], + "tags": [ + "Banking" + ], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "952ADDE3-5EC1-4AB1-80F1-9FA7AA14AD74", + "name": "bank-outline", + "codepoint": "F0E80", + "aliases": [ + "museum-outline" + ], + "tags": [ + "Banking" + ], + "author": "Google", + "version": "3.7.94" + }, + { + "id": "DCB74822-6C93-473B-88B4-1818CFDE2B69", + "name": "bank-plus", + "codepoint": "F0DB1", + "aliases": [ + "bank-add" + ], + "tags": [ + "Banking" + ], + "author": "Rosemary Stanley", + "version": "3.5.94" + }, + { + "id": "14C747D0-C356-403D-862F-09A2F30276E7", + "name": "bank-remove", + "codepoint": "F0DB2", + "aliases": [], + "tags": [ + "Banking" + ], + "author": "Austin Andrews", + "version": "3.5.94" + }, + { + "id": "5692748F-52FC-41F9-97B2-D0F251F4619D", + "name": "bank-transfer", + "codepoint": "F0A27", + "aliases": [], + "tags": [ + "Banking" + ], + "author": "SarinManS", + "version": "2.6.95" + }, + { + "id": "F8E6FE4D-8CE9-41A5-A26A-FEC3A572DA3F", + "name": "bank-transfer-in", + "codepoint": "F0A28", + "aliases": [], + "tags": [ + "Banking" + ], + "author": "SarinManS", + "version": "2.6.95" + }, + { + "id": "02A1C3B5-91EE-43B9-9BDB-3EF67F540722", + "name": "bank-transfer-out", + "codepoint": "F0A29", + "aliases": [], + "tags": [ + "Banking" + ], + "author": "SarinManS", + "version": "2.6.95" + }, + { + "id": "5231CD58-9C30-40A8-993C-A24C6B70F6B8", + "name": "barcode", + "codepoint": "F0071", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "AF7144E7-5004-4685-A100-78425F035F51", + "name": "barcode-off", + "codepoint": "F1236", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.6.95" + }, + { + "id": "40365CB0-4664-4648-8C51-2E6E20A0D096", + "name": "barcode-scan", + "codepoint": "F0072", + "aliases": [ + "barcode-scanner" + ], + "tags": [], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "5126A5A7-ECBC-49FC-BBC6-1703DCACF5E4", + "name": "barley", + "codepoint": "F0073", + "aliases": [ + "grain", + "wheat", + "gluten" + ], + "tags": [ + "Agriculture", + "Food \/ Drink" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "6627D247-B25C-48F3-925D-BF282D7B4295", + "name": "barley-off", + "codepoint": "F0B5D", + "aliases": [ + "gluten-free", + "grain-off", + "wheat-off" + ], + "tags": [ + "Agriculture" + ], + "author": "Simran", + "version": "3.0.39" + }, + { + "id": "678BDE48-30CE-4897-BA06-9991001FA842", + "name": "barn", + "codepoint": "F0B5E", + "aliases": [ + "farm" + ], + "tags": [ + "Agriculture" + ], + "author": "SarinManS", + "version": "3.0.39" + }, + { + "id": "CD3098D2-892F-49F5-9FA7-1A5FDC53A15C", + "name": "barrel", + "codepoint": "F0074", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "EDAC5CB7-39B3-4DAD-89ED-38D7EA914211", + "name": "baseball", + "codepoint": "F0852", + "aliases": [], + "tags": [ + "Sport" + ], + "author": "Nick", + "version": "2.1.99" + }, + { + "id": "20D31EB1-5C7F-4597-9B42-80E08E0192F8", + "name": "baseball-bat", + "codepoint": "F0853", + "aliases": [], + "tags": [ + "Sport" + ], + "author": "Nick", + "version": "2.1.99" + }, + { + "id": "360632A2-1E37-4A89-BC24-166CF4824357", + "name": "baseball-diamond", + "codepoint": "F15EC", + "aliases": [], + "tags": [ + "Sport" + ], + "author": "Michael Irigoyen", + "version": "5.6.55" + }, + { + "id": "55F744E2-2059-41A4-B909-748029558069", + "name": "baseball-diamond-outline", + "codepoint": "F15ED", + "aliases": [], + "tags": [ + "Sport" + ], + "author": "Michael Irigoyen", + "version": "5.6.55" + }, + { + "id": "53BA6F8E-FC99-4B2A-8497-EA732C1880E4", + "name": "bash", + "codepoint": "F1183", + "aliases": [], + "tags": [ + "Developer \/ Languages" + ], + "author": "Michael Richins", + "version": "4.4.95" + }, + { + "id": "4E334FE9-DF93-469A-B7D7-AC88BBF25D84", + "name": "basket", + "codepoint": "F0076", + "aliases": [ + "shopping-basket", + "skip" + ], + "tags": [ + "Shopping" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "22A624ED-8F58-41BC-B82D-C1750626AA18", + "name": "basket-check", + "codepoint": "F18E5", + "aliases": [], + "tags": [ + "Shopping" + ], + "author": "Michael Irigoyen", + "version": "6.3.95" + }, + { + "id": "6B0573EB-F745-409B-B065-C492537579C6", + "name": "basket-check-outline", + "codepoint": "F18E6", + "aliases": [], + "tags": [ + "Shopping" + ], + "author": "Michael Irigoyen", + "version": "6.3.95" + }, + { + "id": "9B7DC550-62F9-4FB0-9B21-0379AA925A19", + "name": "basket-fill", + "codepoint": "F0077", + "aliases": [ + "skip-fill" + ], + "tags": [ + "Shopping" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "C41B2071-6BBF-458A-B73A-409D231A9F4D", + "name": "basket-minus", + "codepoint": "F1523", + "aliases": [ + "shopping-basket-minus", + "skip-minus" + ], + "tags": [ + "Shopping" + ], + "author": "Michael Irigoyen", + "version": "5.4.55" + }, + { + "id": "8F4899A8-07F0-4C00-90EE-1509BE7A0D4C", + "name": "basket-minus-outline", + "codepoint": "F1524", + "aliases": [ + "shopping-basket-minus-outline", + "skip-minus-outline" + ], + "tags": [ + "Shopping" + ], + "author": "Michael Irigoyen", + "version": "5.4.55" + }, + { + "id": "FC2C74AA-57B1-4E13-A499-AA81CBE6670A", + "name": "basket-off", + "codepoint": "F1525", + "aliases": [ + "shopping-basket-off", + "skip-off" + ], + "tags": [ + "Shopping" + ], + "author": "Michael Irigoyen", + "version": "5.4.55" + }, + { + "id": "2D28FB7D-8AEA-4ED6-BB7D-DA76EC3DA4EB", + "name": "basket-off-outline", + "codepoint": "F1526", + "aliases": [ + "shopping-basket-off-outline", + "skip-off-outline" + ], + "tags": [ + "Shopping" + ], + "author": "Michael Irigoyen", + "version": "5.4.55" + }, + { + "id": "A9AC5A33-FD7D-49C8-9C5E-C41335F6E833", + "name": "basket-outline", + "codepoint": "F1181", + "aliases": [ + "shopping-basket-outline", + "skip-outline" + ], + "tags": [ + "Shopping" + ], + "author": "Google", + "version": "4.4.95" + }, + { + "id": "3B02F0C6-F80B-479B-ABA7-CFBDBA843EB4", + "name": "basket-plus", + "codepoint": "F1527", + "aliases": [ + "shopping-basket-plus", + "skip-plus" + ], + "tags": [ + "Shopping" + ], + "author": "Michael Irigoyen", + "version": "5.4.55" + }, + { + "id": "DC1E93FF-94C4-4B14-9152-ADDE374A44BB", + "name": "basket-plus-outline", + "codepoint": "F1528", + "aliases": [ + "shopping-basket-plus-outline", + "skip-plus-outline" + ], + "tags": [ + "Shopping" + ], + "author": "Michael Irigoyen", + "version": "5.4.55" + }, + { + "id": "C730C431-5377-4B0E-933B-5307E736B75A", + "name": "basket-remove", + "codepoint": "F1529", + "aliases": [ + "shopping-basket-remove", + "skip-remove" + ], + "tags": [ + "Shopping" + ], + "author": "Michael Irigoyen", + "version": "5.4.55" + }, + { + "id": "8DB42CB2-5A41-489E-BC04-1DFADF917DE6", + "name": "basket-remove-outline", + "codepoint": "F152A", + "aliases": [ + "shopping-basket-remove-outline", + "skip-remove-outline" + ], + "tags": [ + "Shopping" + ], + "author": "Michael Irigoyen", + "version": "5.4.55" + }, + { + "id": "D46B98B3-4045-4EAD-A26E-659195B5CC65", + "name": "basket-unfill", + "codepoint": "F0078", + "aliases": [], + "tags": [ + "Shopping" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "FD797202-9EF1-407E-A290-97C014B8F37E", + "name": "basketball", + "codepoint": "F0806", + "aliases": [ + "youtube-sports" + ], + "tags": [ + "Sport" + ], + "author": "Google", + "version": "2.1.19" + }, + { + "id": "7792E2EB-0A99-44CF-AEBE-6683490594B0", + "name": "basketball-hoop", + "codepoint": "F0C3B", + "aliases": [], + "tags": [ + "Sport" + ], + "author": "Michael Richins", + "version": "3.2.89" + }, + { + "id": "3310ED1D-3E70-48C0-AE7B-14BB42E0CD16", + "name": "basketball-hoop-outline", + "codepoint": "F0C3C", + "aliases": [], + "tags": [ + "Sport" + ], + "author": "Michael Richins", + "version": "3.2.89" + }, + { + "id": "06925257-791B-4F7F-9A8F-A2D958EE8784", + "name": "bat", + "codepoint": "F0B5F", + "aliases": [], + "tags": [ + "Holiday", + "Animal" + ], + "author": "Austin Andrews", + "version": "3.0.39" + }, + { + "id": "4DB5FCB7-2D9E-4612-8087-4F78B0053305", + "name": "bathtub", + "codepoint": "F1818", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Google", + "version": "6.1.95" + }, + { + "id": "EE0AF53A-2C79-48C3-842C-4AD04DB14D84", + "name": "bathtub-outline", + "codepoint": "F1819", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Google", + "version": "6.1.95" + }, + { + "id": "C12D919F-7D0D-4355-8109-912BA37154B5", + "name": "battery", + "codepoint": "F0079", + "aliases": [ + "battery-full", + "battery-std", + "battery-100" + ], + "tags": [ + "Battery", + "Home Automation", + "Automotive" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "D753B56C-E806-4F17-B2A0-EBC4B4B78D19", + "name": "battery-10", + "codepoint": "F007A", + "aliases": [], + "tags": [ + "Battery", + "Home Automation", + "Automotive" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "9C8DAC10-97C6-476E-8122-25D7709F7AF6", + "name": "battery-10-bluetooth", + "codepoint": "F093E", + "aliases": [], + "tags": [ + "Battery" + ], + "author": "GreenTurtwig", + "version": "2.4.85" + }, + { + "id": "95AEB324-9D57-4D27-B463-0C8077C04E24", + "name": "battery-20", + "codepoint": "F007B", + "aliases": [], + "tags": [ + "Battery", + "Home Automation", + "Automotive" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "9BA1E9FB-BB6A-447E-9F35-615CCC81CD81", + "name": "battery-20-bluetooth", + "codepoint": "F093F", + "aliases": [], + "tags": [ + "Battery" + ], + "author": "GreenTurtwig", + "version": "2.4.85" + }, + { + "id": "970E1F42-4594-42CD-BB4E-6F5CBDBF5D21", + "name": "battery-30", + "codepoint": "F007C", + "aliases": [], + "tags": [ + "Battery", + "Home Automation", + "Automotive" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "6128BD10-A4CD-440E-BF98-151777783110", + "name": "battery-30-bluetooth", + "codepoint": "F0940", + "aliases": [], + "tags": [ + "Battery" + ], + "author": "GreenTurtwig", + "version": "2.4.85" + }, + { + "id": "EE290FAF-A1D6-4A0D-8BBA-8DD2455AFB82", + "name": "battery-40", + "codepoint": "F007D", + "aliases": [], + "tags": [ + "Battery", + "Home Automation", + "Automotive" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "058D5094-AB60-4412-8C71-6CF4A56784A6", + "name": "battery-40-bluetooth", + "codepoint": "F0941", + "aliases": [], + "tags": [ + "Battery" + ], + "author": "GreenTurtwig", + "version": "2.4.85" + }, + { + "id": "A79598F9-7FDF-46A2-9F8D-1DBD6BAB1A1D", + "name": "battery-50", + "codepoint": "F007E", + "aliases": [], + "tags": [ + "Battery", + "Home Automation", + "Automotive" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "313BE145-A7FB-4620-915C-4B2298C70EA1", + "name": "battery-50-bluetooth", + "codepoint": "F0942", + "aliases": [], + "tags": [ + "Battery" + ], + "author": "GreenTurtwig", + "version": "2.4.85" + }, + { + "id": "B6EB700B-9288-474C-9A5C-C269680BFC5F", + "name": "battery-60", + "codepoint": "F007F", + "aliases": [], + "tags": [ + "Battery", + "Home Automation", + "Automotive" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "B422BB57-AC2D-43C2-B7A0-67160D90519E", + "name": "battery-60-bluetooth", + "codepoint": "F0943", + "aliases": [], + "tags": [ + "Battery" + ], + "author": "GreenTurtwig", + "version": "2.4.85" + }, + { + "id": "5DC968CB-1DC2-42B1-96E2-80AC6B23BB9C", + "name": "battery-70", + "codepoint": "F0080", + "aliases": [], + "tags": [ + "Battery", + "Home Automation", + "Automotive" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "426481A7-5387-4385-9D2D-BEB1BCF5900D", + "name": "battery-70-bluetooth", + "codepoint": "F0944", + "aliases": [], + "tags": [ + "Battery" + ], + "author": "GreenTurtwig", + "version": "2.4.85" + }, + { + "id": "54485D0C-49B3-424D-8283-4CE90E16F88D", + "name": "battery-80", + "codepoint": "F0081", + "aliases": [], + "tags": [ + "Battery", + "Home Automation", + "Automotive" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "176EE56B-73A9-44C7-94FF-90C11A48127E", + "name": "battery-80-bluetooth", + "codepoint": "F0945", + "aliases": [], + "tags": [ + "Battery" + ], + "author": "GreenTurtwig", + "version": "2.4.85" + }, + { + "id": "58205285-7EAA-400A-A8E5-A9373E7D986A", + "name": "battery-90", + "codepoint": "F0082", + "aliases": [], + "tags": [ + "Battery", + "Home Automation", + "Automotive" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "AEB32E6B-7E3D-4C3A-AE1A-96C63868E208", + "name": "battery-90-bluetooth", + "codepoint": "F0946", + "aliases": [], + "tags": [ + "Battery" + ], + "author": "GreenTurtwig", + "version": "2.4.85" + }, + { + "id": "ABFAD078-0E10-4293-94AD-16871B75E51F", + "name": "battery-alert", + "codepoint": "F0083", + "aliases": [ + "battery-warning" + ], + "tags": [ + "Battery", + "Home Automation", + "Alert \/ Error" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "7C1C81FB-9E38-4220-B225-460056043383", + "name": "battery-alert-bluetooth", + "codepoint": "F0947", + "aliases": [ + "battery-warning-bluetooth" + ], + "tags": [ + "Alert \/ Error", + "Battery" + ], + "author": "GreenTurtwig", + "version": "2.4.85" + }, + { + "id": "DD0191F8-8AE0-4D80-A29C-AB7451DAE464", + "name": "battery-alert-variant", + "codepoint": "F10CC", + "aliases": [], + "tags": [ + "Battery", + "Alert \/ Error" + ], + "author": "Austin Andrews", + "version": "4.3.95" + }, + { + "id": "C384D39D-C672-454D-964E-8AEF06C2381F", + "name": "battery-alert-variant-outline", + "codepoint": "F10CD", + "aliases": [], + "tags": [ + "Battery", + "Alert \/ Error" + ], + "author": "Austin Andrews", + "version": "4.3.95" + }, + { + "id": "E57A937E-29A3-4FE5-8B47-6E678F3D0539", + "name": "battery-arrow-down", + "codepoint": "F17DE", + "aliases": [], + "tags": [], + "author": "Fran\u00e7ois Risoud", + "version": "6.1.95" + }, + { + "id": "3CD83E68-9EEE-4DB8-B6D9-CCC8123BA198", + "name": "battery-arrow-down-outline", + "codepoint": "F17DF", + "aliases": [], + "tags": [], + "author": "Fran\u00e7ois Risoud", + "version": "6.1.95" + }, + { + "id": "DA4F5288-0BD2-4D9F-A49D-8E40E9893789", + "name": "battery-arrow-up", + "codepoint": "F17E0", + "aliases": [], + "tags": [], + "author": "Fran\u00e7ois Risoud", + "version": "6.1.95" + }, + { + "id": "D81D0F0F-E856-4F7A-BB00-B4462105D5DB", + "name": "battery-arrow-up-outline", + "codepoint": "F17E1", + "aliases": [], + "tags": [], + "author": "Fran\u00e7ois Risoud", + "version": "6.1.95" + }, + { + "id": "3DB7EA89-8F0C-40DA-B45A-E5B588F2CC01", + "name": "battery-bluetooth", + "codepoint": "F0948", + "aliases": [ + "battery-bluetooth-100", + "battery-bluetooth-full" + ], + "tags": [ + "Battery" + ], + "author": "GreenTurtwig", + "version": "2.4.85" + }, + { + "id": "910BCFA6-ED67-48A5-97EB-BA61969629E9", + "name": "battery-bluetooth-variant", + "codepoint": "F0949", + "aliases": [], + "tags": [ + "Battery" + ], + "author": "GreenTurtwig", + "version": "2.4.85" + }, + { + "id": "F365ACF3-9453-4516-B592-AECD72AB7433", + "name": "battery-charging", + "codepoint": "F0084", + "aliases": [ + "battery-charging-full" + ], + "tags": [ + "Battery", + "Home Automation", + "Automotive" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "EBDD7C45-CE9F-4503-9CE4-0682E4E8E6BF", + "name": "battery-charging-10", + "codepoint": "F089C", + "aliases": [], + "tags": [ + "Automotive", + "Battery" + ], + "author": "Google", + "version": "2.2.43" + }, + { + "id": "C1379E5C-2335-4C37-9A73-EE54D6747512", + "name": "battery-charging-100", + "codepoint": "F0085", + "aliases": [], + "tags": [ + "Battery", + "Home Automation", + "Automotive" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "3E25E8BE-5097-4414-A7E4-9CDF02CD4F84", + "name": "battery-charging-20", + "codepoint": "F0086", + "aliases": [], + "tags": [ + "Battery", + "Home Automation", + "Automotive" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "04D00269-7E8F-40D1-BFC4-36A01720260B", + "name": "battery-charging-30", + "codepoint": "F0087", + "aliases": [], + "tags": [ + "Battery", + "Home Automation", + "Automotive" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "D40803B3-43CB-4680-A7BD-56CC83ED54B8", + "name": "battery-charging-40", + "codepoint": "F0088", + "aliases": [], + "tags": [ + "Battery", + "Home Automation", + "Automotive" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "1681D3BD-4990-4571-87B0-1C846DC8D600", + "name": "battery-charging-50", + "codepoint": "F089D", + "aliases": [], + "tags": [ + "Automotive", + "Battery" + ], + "author": "Google", + "version": "2.2.43" + }, + { + "id": "23E8809B-FB62-4573-83CF-9C33E980FD41", + "name": "battery-charging-60", + "codepoint": "F0089", + "aliases": [], + "tags": [ + "Battery", + "Home Automation", + "Automotive" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "C8C75ED1-4B80-42A7-B590-DA3BE7567E86", + "name": "battery-charging-70", + "codepoint": "F089E", + "aliases": [], + "tags": [ + "Automotive", + "Battery" + ], + "author": "Google", + "version": "2.2.43" + }, + { + "id": "20455031-CCDD-40F8-A7A4-5E1F9E55F20E", + "name": "battery-charging-80", + "codepoint": "F008A", + "aliases": [], + "tags": [ + "Battery", + "Home Automation", + "Automotive" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "0EC45F7B-7A0A-43AD-ABD3-10E4209659C0", + "name": "battery-charging-90", + "codepoint": "F008B", + "aliases": [], + "tags": [ + "Battery", + "Home Automation", + "Automotive" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "2BD37CBE-629C-41E8-8631-CD438C1E7704", + "name": "battery-charging-high", + "codepoint": "F12A6", + "aliases": [], + "tags": [ + "Battery" + ], + "author": "Michael Irigoyen", + "version": "4.7.95" + }, + { + "id": "C0158CBD-1F8D-491B-9825-9DB96D901908", + "name": "battery-charging-low", + "codepoint": "F12A4", + "aliases": [], + "tags": [ + "Battery" + ], + "author": "Michael Irigoyen", + "version": "4.7.95" + }, + { + "id": "FD7F7486-1E30-44A5-A4B2-C908372835CD", + "name": "battery-charging-medium", + "codepoint": "F12A5", + "aliases": [], + "tags": [ + "Battery" + ], + "author": "Michael Irigoyen", + "version": "4.7.95" + }, + { + "id": "A057A8D0-A442-4948-B2BF-63CECE073AF5", + "name": "battery-charging-outline", + "codepoint": "F089F", + "aliases": [], + "tags": [ + "Automotive", + "Battery" + ], + "author": "Google", + "version": "2.2.43" + }, + { + "id": "60EEA5B6-8070-482D-ABE3-54A9D2A80875", + "name": "battery-charging-wireless", + "codepoint": "F0807", + "aliases": [ + "battery-charging-wireless-full", + "battery-charging-wireless-100" + ], + "tags": [ + "Battery", + "Home Automation" + ], + "author": "Michael Richins", + "version": "2.1.19" + }, + { + "id": "5D2990D5-D3D4-4E8F-AED8-B90CE6164068", + "name": "battery-charging-wireless-10", + "codepoint": "F0808", + "aliases": [], + "tags": [ + "Battery", + "Home Automation" + ], + "author": "Michael Richins", + "version": "2.1.19" + }, + { + "id": "5C194C6F-8CFE-4F1A-AFD3-11D7E8CB89B4", + "name": "battery-charging-wireless-20", + "codepoint": "F0809", + "aliases": [], + "tags": [ + "Battery", + "Home Automation" + ], + "author": "Michael Richins", + "version": "2.1.19" + }, + { + "id": "567818F9-23C0-41C4-A3BD-2BA37F8BFF29", + "name": "battery-charging-wireless-30", + "codepoint": "F080A", + "aliases": [], + "tags": [ + "Battery", + "Home Automation" + ], + "author": "Michael Richins", + "version": "2.1.19" + }, + { + "id": "1ABBC4EA-32D6-4FBA-AA00-E19707123AE5", + "name": "battery-charging-wireless-40", + "codepoint": "F080B", + "aliases": [], + "tags": [ + "Battery", + "Home Automation" + ], + "author": "Michael Richins", + "version": "2.1.19" + }, + { + "id": "9BC0DBFF-A3F6-4061-B6E1-685880D6B653", + "name": "battery-charging-wireless-50", + "codepoint": "F080C", + "aliases": [], + "tags": [ + "Battery", + "Home Automation" + ], + "author": "Michael Richins", + "version": "2.1.19" + }, + { + "id": "F09D15A6-1E87-488C-9F75-24EC677E72FF", + "name": "battery-charging-wireless-60", + "codepoint": "F080D", + "aliases": [], + "tags": [ + "Battery", + "Home Automation" + ], + "author": "Michael Richins", + "version": "2.1.19" + }, + { + "id": "45966E8F-2801-4ED6-970F-12D9FD6C6290", + "name": "battery-charging-wireless-70", + "codepoint": "F080E", + "aliases": [], + "tags": [ + "Battery", + "Home Automation" + ], + "author": "Michael Richins", + "version": "2.1.19" + }, + { + "id": "EB5E0801-60FA-4DD3-8709-2A6F0AC9C3ED", + "name": "battery-charging-wireless-80", + "codepoint": "F080F", + "aliases": [], + "tags": [ + "Battery", + "Home Automation" + ], + "author": "Michael Richins", + "version": "2.1.19" + }, + { + "id": "E8C0AC60-D7AB-4FA3-9596-CE002E798180", + "name": "battery-charging-wireless-90", + "codepoint": "F0810", + "aliases": [], + "tags": [ + "Battery", + "Home Automation" + ], + "author": "Michael Richins", + "version": "2.1.19" + }, + { + "id": "F835E187-444F-43B8-A057-9915F1388A87", + "name": "battery-charging-wireless-alert", + "codepoint": "F0811", + "aliases": [ + "battery-charging-wireless-warning" + ], + "tags": [ + "Battery", + "Home Automation", + "Alert \/ Error" + ], + "author": "Michael Richins", + "version": "2.1.19" + }, + { + "id": "4AFDE54E-1A6D-4F7F-BD0D-AB67FB0F12CC", + "name": "battery-charging-wireless-outline", + "codepoint": "F0812", + "aliases": [ + "battery-charging-wireless-empty", + "battery-charging-wireless-0" + ], + "tags": [ + "Battery", + "Home Automation" + ], + "author": "Michael Richins", + "version": "2.1.19" + }, + { + "id": "0D73145E-B849-4DA8-AC86-8DA3840ACC38", + "name": "battery-check", + "codepoint": "F17E2", + "aliases": [], + "tags": [], + "author": "Fran\u00e7ois Risoud", + "version": "6.1.95" + }, + { + "id": "75AE3FD5-ADC3-41FD-BC86-882A771C396A", + "name": "battery-check-outline", + "codepoint": "F17E3", + "aliases": [], + "tags": [], + "author": "Fran\u00e7ois Risoud", + "version": "6.1.95" + }, + { + "id": "11C7A5CA-DA77-453A-BAA8-6345949394C7", + "name": "battery-clock", + "codepoint": "F19E5", + "aliases": [ + "battery-full-clock", + "battery-100-clock" + ], + "tags": [ + "Battery" + ], + "author": "Colton Wiscombe", + "version": "6.6.95" + }, + { + "id": "5756A4F3-FBED-4F81-8B97-AF391EC4D893", + "name": "battery-clock-outline", + "codepoint": "F19E6", + "aliases": [ + "batter-0-clock", + "battery-empty-clock" + ], + "tags": [ + "Battery" + ], + "author": "Colton Wiscombe", + "version": "6.6.95" + }, + { + "id": "DEE88AFA-DFF3-4100-8475-EB5EB72CCFCB", + "name": "battery-heart", + "codepoint": "F120F", + "aliases": [], + "tags": [ + "Battery" + ], + "author": "Michael Richins", + "version": "4.6.95" + }, + { + "id": "0D342AE3-0BE6-40C3-BAF9-D519508C4546", + "name": "battery-heart-outline", + "codepoint": "F1210", + "aliases": [], + "tags": [ + "Battery" + ], + "author": "Michael Richins", + "version": "4.6.95" + }, + { + "id": "2DE04585-054B-4E09-AC31-33E28DD80942", + "name": "battery-heart-variant", + "codepoint": "F1211", + "aliases": [], + "tags": [ + "Battery" + ], + "author": "Michael Richins", + "version": "4.6.95" + }, + { + "id": "253E4BDF-CE79-459D-B06D-915B34A12227", + "name": "battery-high", + "codepoint": "F12A3", + "aliases": [], + "tags": [ + "Battery" + ], + "author": "Austin Andrews", + "version": "4.7.95" + }, + { + "id": "F24949D4-ED65-4517-8AA1-71160F05D0F8", + "name": "battery-lock", + "codepoint": "F179C", + "aliases": [], + "tags": [ + "Battery" + ], + "author": "Fran\u00e7ois Risoud", + "version": "6.1.95" + }, + { + "id": "20BE6E36-64DD-49BD-BA06-F90480EF33A5", + "name": "battery-lock-open", + "codepoint": "F179D", + "aliases": [], + "tags": [ + "Battery" + ], + "author": "Fran\u00e7ois Risoud", + "version": "6.1.95" + }, + { + "id": "4BDC283A-A6B7-4B2B-A18A-2B25410AF35C", + "name": "battery-low", + "codepoint": "F12A1", + "aliases": [], + "tags": [ + "Battery" + ], + "author": "Austin Andrews", + "version": "4.7.95" + }, + { + "id": "59FF99D5-138F-4D6B-90B2-4782A4B3F8EB", + "name": "battery-medium", + "codepoint": "F12A2", + "aliases": [], + "tags": [ + "Battery" + ], + "author": "Austin Andrews", + "version": "4.7.95" + }, + { + "id": "C34C0934-799C-40A5-8AD4-CE7A417C170B", + "name": "battery-minus", + "codepoint": "F17E4", + "aliases": [], + "tags": [], + "author": "Fran\u00e7ois Risoud", + "version": "6.1.95" + }, + { + "id": "BDFA54F2-D16E-441C-A039-3E6DB60EE182", + "name": "battery-minus-outline", + "codepoint": "F17E5", + "aliases": [], + "tags": [], + "author": "Fran\u00e7ois Risoud", + "version": "6.1.95" + }, + { + "id": "15E0E37E-564A-40D5-9D4A-948C932C8E52", + "name": "battery-minus-variant", + "codepoint": "F008C", + "aliases": [], + "tags": [ + "Battery", + "Home Automation" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "447DBB2A-31ED-4856-A7A2-A61BF0780C7B", + "name": "battery-negative", + "codepoint": "F008D", + "aliases": [], + "tags": [ + "Battery", + "Home Automation" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "C0939A88-BF53-4323-A12F-E6A92F7BE327", + "name": "battery-off", + "codepoint": "F125D", + "aliases": [], + "tags": [ + "Battery" + ], + "author": "Michael Richins", + "version": "4.7.95" + }, + { + "id": "66A0E28A-53F2-4E22-B14A-BADBE10E0CA9", + "name": "battery-off-outline", + "codepoint": "F125E", + "aliases": [], + "tags": [ + "Battery" + ], + "author": "Michael Richins", + "version": "4.7.95" + }, + { + "id": "925B02B4-CA05-4545-A4E3-421F8412DA37", + "name": "battery-outline", + "codepoint": "F008E", + "aliases": [ + "battery-0", + "battery-empty" + ], + "tags": [ + "Battery", + "Home Automation", + "Automotive" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "07911E7E-BA7E-49FD-90B1-7B8D273D9278", + "name": "battery-plus", + "codepoint": "F17E6", + "aliases": [], + "tags": [], + "author": "Fran\u00e7ois Risoud", + "version": "6.1.95" + }, + { + "id": "E9A097FD-0484-4E92-BC8F-2726EF5CAB5B", + "name": "battery-plus-outline", + "codepoint": "F17E7", + "aliases": [], + "tags": [], + "author": "Fran\u00e7ois Risoud", + "version": "6.1.95" + }, + { + "id": "A4BD7F0D-E95C-413C-B853-435A53854844", + "name": "battery-plus-variant", + "codepoint": "F008F", + "aliases": [ + "battery-saver", + "battery-add" + ], + "tags": [ + "Battery", + "Home Automation" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "195F51E4-5B02-4BE3-B407-4B7FC1445F18", + "name": "battery-positive", + "codepoint": "F0090", + "aliases": [], + "tags": [ + "Battery", + "Home Automation" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "C0E3D38A-A3B2-4010-8B9B-9CB97F67FE50", + "name": "battery-remove", + "codepoint": "F17E8", + "aliases": [], + "tags": [], + "author": "Fran\u00e7ois Risoud", + "version": "6.1.95" + }, + { + "id": "FC6E9489-07CC-4D0D-B93C-44E0E257A365", + "name": "battery-remove-outline", + "codepoint": "F17E9", + "aliases": [], + "tags": [], + "author": "Fran\u00e7ois Risoud", + "version": "6.1.95" + }, + { + "id": "A78E1E92-F129-4050-AA6F-B308D171A2DC", + "name": "battery-sync", + "codepoint": "F1834", + "aliases": [ + "battery-saver", + "battery-recycle", + "battery-eco" + ], + "tags": [ + "Battery" + ], + "author": "Michael Irigoyen", + "version": "6.2.95" + }, + { + "id": "5250464D-70A3-4BC2-8969-878E57526CDF", + "name": "battery-sync-outline", + "codepoint": "F1835", + "aliases": [ + "battery-saver-outline", + "battery-eco-outline", + "battery-recycle-outline" + ], + "tags": [ + "Battery" + ], + "author": "Michael Irigoyen", + "version": "6.2.95" + }, + { + "id": "80257130-A38B-4BC1-B194-2EB16048D763", + "name": "battery-unknown", + "codepoint": "F0091", + "aliases": [], + "tags": [ + "Battery", + "Home Automation" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "B30963B2-893D-43F8-9EFD-918DCB654B75", + "name": "battery-unknown-bluetooth", + "codepoint": "F094A", + "aliases": [], + "tags": [ + "Battery" + ], + "author": "GreenTurtwig", + "version": "2.4.85" + }, + { + "id": "FB1FEB37-FA9B-40BF-A7EC-B4A1690E6B77", + "name": "beach", + "codepoint": "F0092", + "aliases": [ + "parasol" + ], + "tags": [ + "Places" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "AC08F348-ACA6-440E-A28D-FCC9BFC85E27", + "name": "beaker", + "codepoint": "F0CEA", + "aliases": [], + "tags": [ + "Science" + ], + "author": "Michael Irigoyen", + "version": "3.3.92" + }, + { + "id": "22743DE0-B662-44CD-8707-91ABF624D0E3", + "name": "beaker-alert", + "codepoint": "F1229", + "aliases": [], + "tags": [ + "Alert \/ Error", + "Science" + ], + "author": "Austin Andrews", + "version": "4.6.95" + }, + { + "id": "327C0F93-7EBD-4B24-A31C-285F6FC14DF3", + "name": "beaker-alert-outline", + "codepoint": "F122A", + "aliases": [], + "tags": [ + "Alert \/ Error", + "Science" + ], + "author": "Austin Andrews", + "version": "4.6.95" + }, + { + "id": "252089E7-6AA1-400C-99DF-B8F2090BE78A", + "name": "beaker-check", + "codepoint": "F122B", + "aliases": [], + "tags": [ + "Science" + ], + "author": "Austin Andrews", + "version": "4.6.95" + }, + { + "id": "23EFC5EC-7DAE-46FC-8E1C-488CF2EFFEB3", + "name": "beaker-check-outline", + "codepoint": "F122C", + "aliases": [], + "tags": [ + "Science" + ], + "author": "Austin Andrews", + "version": "4.6.95" + }, + { + "id": "FC008372-099E-45EB-BD51-13D1CA45A9BF", + "name": "beaker-minus", + "codepoint": "F122D", + "aliases": [], + "tags": [ + "Science" + ], + "author": "Austin Andrews", + "version": "4.6.95" + }, + { + "id": "15C31E14-F9D4-49E7-A9FA-266E3C2C7F1B", + "name": "beaker-minus-outline", + "codepoint": "F122E", + "aliases": [], + "tags": [ + "Science" + ], + "author": "Austin Andrews", + "version": "4.6.95" + }, + { + "id": "95E06F22-3EA5-448F-B260-E555C1DCD18E", + "name": "beaker-outline", + "codepoint": "F0690", + "aliases": [], + "tags": [ + "Science" + ], + "author": "Simran", + "version": "1.7.12" + }, + { + "id": "CDF9CCFD-BDE5-4BBF-94DA-BF61466906A6", + "name": "beaker-plus", + "codepoint": "F122F", + "aliases": [], + "tags": [ + "Science" + ], + "author": "Austin Andrews", + "version": "4.6.95" + }, + { + "id": "210E9002-74BB-44CB-9D93-7CC8EE95D519", + "name": "beaker-plus-outline", + "codepoint": "F1230", + "aliases": [], + "tags": [ + "Science" + ], + "author": "Austin Andrews", + "version": "4.6.95" + }, + { + "id": "21A03544-7009-4069-8BF0-17168DF93ED9", + "name": "beaker-question", + "codepoint": "F1231", + "aliases": [], + "tags": [ + "Science" + ], + "author": "Austin Andrews", + "version": "4.6.95" + }, + { + "id": "3C151400-745C-44BE-A94E-A2F5365C7DD6", + "name": "beaker-question-outline", + "codepoint": "F1232", + "aliases": [], + "tags": [ + "Science" + ], + "author": "Austin Andrews", + "version": "4.6.95" + }, + { + "id": "0F41805A-67FE-4ADB-A398-B22032BF0C89", + "name": "beaker-remove", + "codepoint": "F1233", + "aliases": [], + "tags": [ + "Science" + ], + "author": "Austin Andrews", + "version": "4.6.95" + }, + { + "id": "DF5AF4E0-65C2-492A-AEDD-0297AE36BA2B", + "name": "beaker-remove-outline", + "codepoint": "F1234", + "aliases": [], + "tags": [ + "Science" + ], + "author": "Austin Andrews", + "version": "4.6.95" + }, + { + "id": "EA62EF73-ACC7-4E54-87EF-D5E1683BE58F", + "name": "bed", + "codepoint": "F02E3", + "aliases": [ + "hotel" + ], + "tags": [ + "Home Automation", + "Holiday" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "76E0CC3D-3FF4-421A-A7F0-0F38C68C92A2", + "name": "bed-double", + "codepoint": "F0FD4", + "aliases": [], + "tags": [ + "Home Automation", + "Holiday" + ], + "author": "Michael Richins", + "version": "4.2.95" + }, + { + "id": "6061EF08-3805-4F30-88A1-0DC3419E6989", + "name": "bed-double-outline", + "codepoint": "F0FD3", + "aliases": [], + "tags": [ + "Home Automation", + "Holiday" + ], + "author": "Google", + "version": "4.2.95" + }, + { + "id": "15DC169E-459C-4EDB-BF8F-3E1D4F34B2BF", + "name": "bed-empty", + "codepoint": "F08A0", + "aliases": [], + "tags": [ + "Home Automation", + "Holiday" + ], + "author": "GreenTurtwig", + "version": "2.2.43" + }, + { + "id": "D6763D57-A47E-4BFA-A493-5F25C164FB2F", + "name": "bed-king", + "codepoint": "F0FD2", + "aliases": [], + "tags": [ + "Home Automation", + "Holiday" + ], + "author": "Google", + "version": "4.2.95" + }, + { + "id": "E84472BF-7730-4700-B468-E5096FD65531", + "name": "bed-king-outline", + "codepoint": "F0FD1", + "aliases": [], + "tags": [ + "Home Automation", + "Holiday" + ], + "author": "Michael Richins", + "version": "4.2.95" + }, + { + "id": "860292B0-C722-4829-9E30-AACF00D09C8C", + "name": "bed-outline", + "codepoint": "F0099", + "aliases": [ + "hotel-outline" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "0DB69F3A-8C9B-48D0-8D37-5A1CF6B03B68", + "name": "bed-queen", + "codepoint": "F0FD0", + "aliases": [], + "tags": [ + "Home Automation", + "Holiday" + ], + "author": "Michael Richins", + "version": "4.2.95" + }, + { + "id": "DC8A5BF4-BEA0-4D7D-B364-4765854CD4CE", + "name": "bed-queen-outline", + "codepoint": "F0FDB", + "aliases": [], + "tags": [ + "Home Automation", + "Holiday" + ], + "author": "Michael Richins", + "version": "4.2.95" + }, + { + "id": "A9C924A7-EAA8-42FC-963A-C74E36448A1B", + "name": "bed-single", + "codepoint": "F106D", + "aliases": [], + "tags": [ + "Home Automation", + "Holiday" + ], + "author": "Simran", + "version": "4.2.95" + }, + { + "id": "C9FEB434-571C-41C6-A0E5-1FA68368ACC3", + "name": "bed-single-outline", + "codepoint": "F106E", + "aliases": [], + "tags": [ + "Home Automation", + "Holiday" + ], + "author": "Simran", + "version": "4.2.95" + }, + { + "id": "8B580447-CD93-41E8-BDB0-F37DAE420D3A", + "name": "bee", + "codepoint": "F0FA1", + "aliases": [ + "fly", + "insect" + ], + "tags": [ + "Nature", + "Agriculture", + "Animal" + ], + "author": "Google", + "version": "4.0.96" + }, + { + "id": "ED379BAE-ED56-474D-87C3-8B43D5207766", + "name": "bee-flower", + "codepoint": "F0FA2", + "aliases": [ + "fly-flower", + "nature" + ], + "tags": [ + "Nature", + "Agriculture" + ], + "author": "Google", + "version": "4.0.96" + }, + { + "id": "47006F8F-3A47-4D8A-9224-CF1F823E1B35", + "name": "beehive-off-outline", + "codepoint": "F13ED", + "aliases": [], + "tags": [ + "Nature", + "Agriculture" + ], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "667E2F2C-B896-48EF-B5F9-EF9436A8BE4B", + "name": "beehive-outline", + "codepoint": "F10CE", + "aliases": [ + "honey-outline" + ], + "tags": [ + "Nature", + "Agriculture" + ], + "author": "Michael Irigoyen", + "version": "4.3.95" + }, + { + "id": "520FBDF0-4EB1-4413-89F9-AB4E3518FA38", + "name": "beekeeper", + "codepoint": "F14E2", + "aliases": [ + "apiarists", + "apiculturists", + "honey-farmer" + ], + "tags": [ + "Nature", + "Agriculture" + ], + "author": "guenth39", + "version": "5.4.55" + }, + { + "id": "9D9A73D2-0780-4141-95A3-CDFE21E6D4D6", + "name": "beer", + "codepoint": "F0098", + "aliases": [ + "pint", + "pub", + "bar", + "drink", + "cup-full" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "524E1789-7B3A-4BAD-9D04-2E8FD838DCFB", + "name": "beer-outline", + "codepoint": "F130C", + "aliases": [ + "drink-outline", + "cup-full-outline", + "pint-outline", + "pub-outline", + "bar-outline" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Simran", + "version": "4.8.95" + }, + { + "id": "45fea174-07db-11e4-bf19-842b2b6cfe1b", + "name": "bell", + "codepoint": "F009A", + "aliases": [ + "notifications" + ], + "tags": [ + "Notification", + "Home Automation", + "Music" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "376D7457-2DC3-463A-B4D9-4F170E0B19FB", + "name": "bell-alert", + "codepoint": "F0D59", + "aliases": [ + "bell-warning" + ], + "tags": [ + "Alert \/ Error", + "Notification" + ], + "author": "Simran", + "version": "3.4.93" + }, + { + "id": "2E15CEB7-FC9C-4822-94CF-D84F99824F3C", + "name": "bell-alert-outline", + "codepoint": "F0E81", + "aliases": [], + "tags": [ + "Alert \/ Error", + "Notification" + ], + "author": "Simran", + "version": "3.7.94" + }, + { + "id": "9DA90BB6-B525-47A8-879F-66EC572FE31B", + "name": "bell-badge", + "codepoint": "F116B", + "aliases": [ + "bell-notification" + ], + "tags": [ + "Notification" + ], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "42F0733E-F36F-491B-ADC9-AC8ABAF2C0B7", + "name": "bell-badge-outline", + "codepoint": "F0178", + "aliases": [ + "bell-notification-outline" + ], + "tags": [ + "Notification" + ], + "author": "Michael Irigoyen", + "version": "1.5.54" + }, + { + "id": "61CFFDEC-BE16-404E-8ECA-F911F8105C7C", + "name": "bell-cancel", + "codepoint": "F13E7", + "aliases": [], + "tags": [ + "Notification" + ], + "author": "Simran", + "version": "5.1.45" + }, + { + "id": "5CA70271-00B4-4412-B082-FED05EFF165A", + "name": "bell-cancel-outline", + "codepoint": "F13E8", + "aliases": [], + "tags": [ + "Notification" + ], + "author": "Simran", + "version": "5.1.45" + }, + { + "id": "A00A7DBE-44BB-4843-B740-FAAB76357B03", + "name": "bell-check", + "codepoint": "F11E5", + "aliases": [], + "tags": [ + "Notification" + ], + "author": "GreenTurtwig", + "version": "4.5.95" + }, + { + "id": "510AFFA1-DEEE-4A0B-B596-611969C5934D", + "name": "bell-check-outline", + "codepoint": "F11E6", + "aliases": [], + "tags": [ + "Notification" + ], + "author": "GreenTurtwig", + "version": "4.5.95" + }, + { + "id": "D811F01E-BDFB-496F-866C-70533A343B57", + "name": "bell-circle", + "codepoint": "F0D5A", + "aliases": [], + "tags": [ + "Notification" + ], + "author": "Google", + "version": "3.4.93" + }, + { + "id": "204DDC9C-1546-44DF-829D-2EA5AA299804", + "name": "bell-circle-outline", + "codepoint": "F0D5B", + "aliases": [], + "tags": [ + "Notification" + ], + "author": "Google", + "version": "3.4.93" + }, + { + "id": "C25507E4-8865-47BF-A6AB-D97978AB4397", + "name": "bell-minus", + "codepoint": "F13E9", + "aliases": [], + "tags": [ + "Notification" + ], + "author": "Simran", + "version": "5.1.45" + }, + { + "id": "7344702F-0680-4095-BF7E-D9AFDE650703", + "name": "bell-minus-outline", + "codepoint": "F13EA", + "aliases": [], + "tags": [ + "Notification" + ], + "author": "Simran", + "version": "5.1.45" + }, + { + "id": "69686D8F-75FE-4091-9061-88DB64D95C01", + "name": "bell-off", + "codepoint": "F009B", + "aliases": [ + "notifications-off" + ], + "tags": [ + "Notification" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "6C0FD819-5174-4CCA-8A63-2CEE9F6EE71E", + "name": "bell-off-outline", + "codepoint": "F0A91", + "aliases": [], + "tags": [ + "Notification" + ], + "author": "Google", + "version": "2.7.94" + }, + { + "id": "70A190E9-6F1D-40DB-81D4-C9516949DF0B", + "name": "bell-outline", + "codepoint": "F009C", + "aliases": [ + "notifications-none" + ], + "tags": [ + "Notification", + "Music" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "FC07FF46-2FD1-4E4E-8D35-BADDEEB5F531", + "name": "bell-plus", + "codepoint": "F009D", + "aliases": [ + "add-alert", + "bell-add" + ], + "tags": [ + "Notification" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "45FB036D-61D0-4390-9F15-480121F2CE3B", + "name": "bell-plus-outline", + "codepoint": "F0A92", + "aliases": [ + "bell-add-outline", + "add-alert-outline" + ], + "tags": [ + "Notification" + ], + "author": "Simran", + "version": "2.7.94" + }, + { + "id": "16A7DF47-4674-4439-9E33-ADE491DFC806", + "name": "bell-remove", + "codepoint": "F13EB", + "aliases": [], + "tags": [ + "Notification" + ], + "author": "Simran", + "version": "5.1.45" + }, + { + "id": "BFCC1A57-A94F-4104-BCBF-980E9D8B2B6C", + "name": "bell-remove-outline", + "codepoint": "F13EC", + "aliases": [], + "tags": [ + "Notification" + ], + "author": "Simran", + "version": "5.1.45" + }, + { + "id": "CD75C484-B1AD-492B-8CAA-9F002398C3CA", + "name": "bell-ring", + "codepoint": "F009E", + "aliases": [ + "notifications-active" + ], + "tags": [ + "Notification" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "EE7DADC1-CF66-4922-B0C9-9B8F753514F9", + "name": "bell-ring-outline", + "codepoint": "F009F", + "aliases": [], + "tags": [ + "Notification" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "43BD9E91-2044-4B80-AF87-2FC810C42A1B", + "name": "bell-sleep", + "codepoint": "F00A0", + "aliases": [ + "notifications-paused" + ], + "tags": [ + "Notification" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "91193FC6-AF35-46FD-A05E-6AA99D6EA99F", + "name": "bell-sleep-outline", + "codepoint": "F0A93", + "aliases": [], + "tags": [ + "Notification" + ], + "author": "Google", + "version": "2.7.94" + }, + { + "id": "4F83A19F-BAB5-4894-AC5A-B288AFD592DC", + "name": "beta", + "codepoint": "F00A1", + "aliases": [], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "5FA9C13A-087C-452E-966F-4C2FCE336C68", + "name": "betamax", + "codepoint": "F09CB", + "aliases": [], + "tags": [], + "author": "GreenTurtwig", + "version": "2.5.94" + }, + { + "id": "7E88D677-5560-4DF1-A3D0-FC2814BF6612", + "name": "biathlon", + "codepoint": "F0E14", + "aliases": [], + "tags": [ + "Sport" + ], + "author": "Google", + "version": "3.6.95" + }, + { + "id": "90DDBB60-0BBB-4DFA-9626-32D4D1FB34C5", + "name": "bicycle", + "codepoint": "F109C", + "aliases": [ + "bike", + "cycling" + ], + "tags": [ + "Transportation + Other" + ], + "author": "Fran\u00e7ois Risoud", + "version": "4.2.95" + }, + { + "id": "CF4876E1-DEBA-4C41-B5B7-4C90C3EF68F4", + "name": "bicycle-basket", + "codepoint": "F1235", + "aliases": [ + "bike-basket" + ], + "tags": [ + "Transportation + Other" + ], + "author": "Fran\u00e7ois Risoud", + "version": "4.6.95" + }, + { + "id": "63EFAAFD-2EB5-4600-930D-33CEDDC182A5", + "name": "bicycle-cargo", + "codepoint": "F189C", + "aliases": [ + "bike-cargo" + ], + "tags": [ + "Transportation + Other" + ], + "author": "Teodor Sandu", + "version": "6.3.95" + }, + { + "id": "3923C397-5A00-472A-8FDC-FBBAAF3FA323", + "name": "bicycle-electric", + "codepoint": "F15B4", + "aliases": [ + "bike-electric" + ], + "tags": [ + "Transportation + Other" + ], + "author": "Michael Irigoyen", + "version": "5.6.55" + }, + { + "id": "A7A362D7-385E-4026-A43F-BBF13E8D4B37", + "name": "bicycle-penny-farthing", + "codepoint": "F15E9", + "aliases": [ + "bicycle-high-wheel", + "bicycle-antique" + ], + "tags": [ + "Transportation + Other" + ], + "author": "Colton Wiscombe", + "version": "5.6.55" + }, + { + "id": "627C7FF1-BCAD-4741-966E-7CED73B35DC2", + "name": "bike", + "codepoint": "F00A3", + "aliases": [ + "bicycle", + "cycling", + "directions-bike" + ], + "tags": [ + "Transportation + Other", + "Sport" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "2C312B6E-73D4-4A98-A701-D49E31F95E7B", + "name": "bike-fast", + "codepoint": "F111F", + "aliases": [], + "tags": [ + "Transportation + Other" + ], + "author": "GreenTurtwig", + "version": "4.3.95" + }, + { + "id": "645C4EDB-9339-4784-8AE9-BD60F8460CAE", + "name": "billboard", + "codepoint": "F1010", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "4.1.95" + }, + { + "id": "6FFE2C93-4350-4706-9694-1674F96855EA", + "name": "billiards", + "codepoint": "F0B61", + "aliases": [ + "pool", + "eight-ball" + ], + "tags": [ + "Sport" + ], + "author": "Michael Richins", + "version": "3.0.39" + }, + { + "id": "2ED0EE4C-D928-41C6-8D5D-3AA3A2DF7AF6", + "name": "billiards-rack", + "codepoint": "F0B62", + "aliases": [ + "pool-table", + "pool-rack", + "snooker-rack", + "pool-triangle", + "billiards-triangle", + "snooker-triangle" + ], + "tags": [ + "Sport" + ], + "author": "Michael Richins", + "version": "3.0.39" + }, + { + "id": "75806AA4-294B-4A0A-8BDB-FC4CABCA1768", + "name": "binoculars", + "codepoint": "F00A5", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "F5D76655-0F6E-4FF2-AC74-CC3A235B7FC6", + "name": "bio", + "codepoint": "F00A6", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "96BDE572-9D10-47D0-919F-68EB6CD3DFA9", + "name": "biohazard", + "codepoint": "F00A7", + "aliases": [], + "tags": [ + "Science" + ], + "author": "Yasmina Lembachar", + "version": "1.5.54" + }, + { + "id": "18622D72-42B2-4919-BDB5-DCC77310045B", + "name": "bird", + "codepoint": "F15C6", + "aliases": [], + "tags": [ + "Animal" + ], + "author": "Michael Irigoyen", + "version": "5.6.55" + }, + { + "id": "B48BB714-F66F-4D86-9864-051DB90AE197", + "name": "bitbucket", + "codepoint": "F00A8", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "9C8A35A5-86B5-4B10-BEE9-93CDFAF15B9C", + "name": "bitcoin", + "codepoint": "F0813", + "aliases": [], + "tags": [ + "Brand \/ Logo", + "Banking", + "Currency" + ], + "author": "Contributors", + "version": "2.1.19" + }, + { + "id": "1F233821-5ED4-4CB3-8933-9A16C05D7AC9", + "name": "black-mesa", + "codepoint": "F00A9", + "aliases": [], + "tags": [ + "Brand \/ Logo", + "Gaming \/ RPG" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "AC980D29-7F19-4356-970E-A147CFEB64E3", + "name": "blender", + "codepoint": "F0CEB", + "aliases": [ + "food-processor" + ], + "tags": [ + "Food \/ Drink", + "Home Automation" + ], + "author": "Google", + "version": "3.3.92" + }, + { + "id": "C8C79C9B-59FC-417E-9516-E5351594A994", + "name": "blender-outline", + "codepoint": "F181A", + "aliases": [ + "food-processor-outline" + ], + "tags": [ + "Home Automation", + "Food \/ Drink" + ], + "author": "Google", + "version": "6.1.95" + }, + { + "id": "F365BC90-C8EC-4A5C-99FB-C2ED27B5593A", + "name": "blender-software", + "codepoint": "F00AB", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "926ACBEB-C5F6-4EF4-829E-E0B05501DDD6", + "name": "blinds", + "codepoint": "F00AC", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "5DCCF3FA-F418-4052-9B93-6FA85C2659F5", + "name": "blinds-open", + "codepoint": "F1011", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "idevo89", + "version": "4.1.95" + }, + { + "id": "5832B598-DAAA-4497-B995-CF940A1C7F20", + "name": "block-helper", + "codepoint": "F00AD", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "FA540210-0F58-4D2A-86BA-E202B520C8DA", + "name": "blood-bag", + "codepoint": "F0CEC", + "aliases": [], + "tags": [ + "Medical \/ Hospital" + ], + "author": "Michael Irigoyen", + "version": "3.3.92" + }, + { + "id": "7CBB03E7-EAC6-44C2-8C28-A78728F8BB7B", + "name": "bluetooth", + "codepoint": "F00AF", + "aliases": [], + "tags": [], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "6639774A-9027-4D20-AE57-24C78EF41141", + "name": "bluetooth-audio", + "codepoint": "F00B0", + "aliases": [ + "bluetooth-searching" + ], + "tags": [ + "Audio" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "1E123F41-EA93-4085-8446-88F50C501A6F", + "name": "bluetooth-connect", + "codepoint": "F00B1", + "aliases": [ + "bluetooth-connected" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "CEB015C9-455E-4551-A898-7A992658CF72", + "name": "bluetooth-off", + "codepoint": "F00B2", + "aliases": [ + "bluetooth-disabled" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "E5DEA4AB-58E1-45CF-81EF-1A98594C5884", + "name": "bluetooth-settings", + "codepoint": "F00B3", + "aliases": [ + "settings-bluetooth" + ], + "tags": [ + "Settings" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "A0D9FDB0-B6D8-43F9-A418-01B78336C84C", + "name": "bluetooth-transfer", + "codepoint": "F00B4", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "FAFCB184-2AAD-4E83-924F-1C37F1EDF956", + "name": "blur", + "codepoint": "F00B5", + "aliases": [ + "blur-on" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "B23B281D-C753-468E-A0D1-79C2963346C8", + "name": "blur-linear", + "codepoint": "F00B6", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "4F541CC2-7659-4230-A307-6E5D515C529B", + "name": "blur-off", + "codepoint": "F00B7", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "29F42A3B-BCD5-45BA-9B87-35F97FE9438D", + "name": "blur-radial", + "codepoint": "F00B8", + "aliases": [ + "blur-circular" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "4371183D-0D2B-4512-8069-93834BC85DE7", + "name": "bolt", + "codepoint": "F0DB3", + "aliases": [], + "tags": [ + "Hardware \/ Tools" + ], + "author": "Michael Irigoyen", + "version": "3.5.94" + }, + { + "id": "7DC40C3F-3733-48AF-94C7-5454FB849A49", + "name": "bomb", + "codepoint": "F0691", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Austin Andrews", + "version": "1.7.12" + }, + { + "id": "DEC98F6C-E85D-400C-87CD-6AE692583838", + "name": "bomb-off", + "codepoint": "F06C5", + "aliases": [], + "tags": [], + "author": "Roberto Graham", + "version": "1.8.36" + }, + { + "id": "7FCD9594-B235-45D5-8504-A41F251FD50E", + "name": "bone", + "codepoint": "F00B9", + "aliases": [], + "tags": [ + "Animal", + "Holiday" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "2ECDAB32-FFDA-4E29-9465-D932794C53EF", + "name": "bone-off", + "codepoint": "F19E0", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "6.6.95" + }, + { + "id": "FFF82791-D12F-4643-8128-71CF5FE38C9B", + "name": "book", + "codepoint": "F00BA", + "aliases": [ + "git-repository" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "D4247A9D-BD96-40AC-8C4E-A9A255DF5160", + "name": "book-account", + "codepoint": "F13AD", + "aliases": [], + "tags": [ + "Account \/ User" + ], + "author": "Michael Richins", + "version": "5.0.45" + }, + { + "id": "C9126B03-23E9-457D-9249-ADB88EA6F0E4", + "name": "book-account-outline", + "codepoint": "F13AE", + "aliases": [], + "tags": [ + "Account \/ User" + ], + "author": "Michael Richins", + "version": "5.0.45" + }, + { + "id": "08CE9E71-4426-4186-8573-7B2EDFE28F7D", + "name": "book-alert", + "codepoint": "F167C", + "aliases": [], + "tags": [ + "Alert \/ Error" + ], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "6DDFDD69-EBA5-4BFB-A44F-6B84A7B3A4BC", + "name": "book-alert-outline", + "codepoint": "F167D", + "aliases": [], + "tags": [ + "Alert \/ Error" + ], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "250BF541-072A-4773-8BC2-B1943DF1EDBB", + "name": "book-alphabet", + "codepoint": "F061D", + "aliases": [ + "dictionary" + ], + "tags": [], + "author": "Christopher Schreiner", + "version": "1.6.50" + }, + { + "id": "7B6400CF-D8CF-418B-A400-CDCA1D58E813", + "name": "book-arrow-down", + "codepoint": "F167E", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "7B9920BE-2895-4D38-A981-5E416D76403A", + "name": "book-arrow-down-outline", + "codepoint": "F167F", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "5D776E4B-7F6C-4385-A892-964B3F800F30", + "name": "book-arrow-left", + "codepoint": "F1680", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "1730A6B3-D405-4F4B-A12D-0957B5B268D7", + "name": "book-arrow-left-outline", + "codepoint": "F1681", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "2780AAEC-BE71-4C4A-8C02-7BCDBE521D74", + "name": "book-arrow-right", + "codepoint": "F1682", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "CCBCE4D7-2799-433B-AF47-A5105E45779A", + "name": "book-arrow-right-outline", + "codepoint": "F1683", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "E724EA9A-002E-4A3E-9275-690258105F1D", + "name": "book-arrow-up", + "codepoint": "F1684", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "D3DE3980-8DF9-4FED-B08D-F04B5610B84D", + "name": "book-arrow-up-outline", + "codepoint": "F1685", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "8D3C8531-8EAD-43FC-9139-B1A9D2BEB63D", + "name": "book-cancel", + "codepoint": "F1686", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "FA64FF4E-C720-4635-90EF-D4A913168329", + "name": "book-cancel-outline", + "codepoint": "F1687", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "ADF6BB0F-12F3-498F-B31A-07F6BFFFDF9D", + "name": "book-check", + "codepoint": "F14F3", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "5.4.55" + }, + { + "id": "32A94643-61F6-4F21-BB4D-68932CB98FB4", + "name": "book-check-outline", + "codepoint": "F14F4", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "5.4.55" + }, + { + "id": "97CCD006-4DE0-4AEE-BB95-D9EBCCDE8012", + "name": "book-clock", + "codepoint": "F1688", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "EFEC2FA7-18B1-4753-88C4-E2531FA96DD5", + "name": "book-clock-outline", + "codepoint": "F1689", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "36C20B8A-AA61-49D5-9500-16917BBDF388", + "name": "book-cog", + "codepoint": "F168A", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "B63BFA22-6A8E-48FD-8BDB-E82BB550411D", + "name": "book-cog-outline", + "codepoint": "F168B", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "CC30F9D0-3076-4189-A00D-F570D5B0C5D1", + "name": "book-cross", + "codepoint": "F00A2", + "aliases": [ + "bible" + ], + "tags": [ + "Religion" + ], + "author": "Christopher Schreiner", + "version": "1.5.54" + }, + { + "id": "CF11FAB5-CEE6-4F8D-9E64-67285419FF62", + "name": "book-edit", + "codepoint": "F168C", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "615E9F0E-F80A-4806-8023-F3B5E47A0F07", + "name": "book-edit-outline", + "codepoint": "F168D", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "B115D616-1428-4D6B-84D7-643900FBEF77", + "name": "book-education", + "codepoint": "F16C9", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "2C5308E6-760F-4CD8-A2CF-DD3B5434B0A0", + "name": "book-education-outline", + "codepoint": "F16CA", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "4A6A20D1-3F8E-440A-BFB1-38CFB3FB3EC6", + "name": "book-information-variant", + "codepoint": "F106F", + "aliases": [ + "encyclopedia" + ], + "tags": [], + "author": "Terren", + "version": "4.2.95" + }, + { + "id": "121AF367-3AE5-48D1-9868-8DC60342D4A0", + "name": "book-lock", + "codepoint": "F079A", + "aliases": [ + "book-secure" + ], + "tags": [ + "Lock" + ], + "author": "Michael Richins", + "version": "2.0.46" + }, + { + "id": "90B49606-B4FF-4D4B-AE05-4769659094CE", + "name": "book-lock-open", + "codepoint": "F079B", + "aliases": [ + "book-unsecure" + ], + "tags": [ + "Lock" + ], + "author": "Michael Richins", + "version": "2.0.46" + }, + { + "id": "F4804DDA-AD18-4DAF-A916-F0F6DC23F0A5", + "name": "book-lock-open-outline", + "codepoint": "F168E", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "2E088838-572B-45AC-B250-1C86900B787E", + "name": "book-lock-outline", + "codepoint": "F168F", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "D5DCE615-BCFA-4922-8F95-5CEA756FD378", + "name": "book-marker", + "codepoint": "F1690", + "aliases": [ + "book-location" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "69EBC2C1-A3D3-42E6-9868-3E97DD6DD301", + "name": "book-marker-outline", + "codepoint": "F1691", + "aliases": [ + "book-location-outline" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "7367B5F0-8155-4F3D-9C7E-BFDF677442D8", + "name": "book-minus", + "codepoint": "F05D9", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "6B536CF6-98D8-44A5-9094-43C1BE41EC91", + "name": "book-minus-multiple", + "codepoint": "F0A94", + "aliases": [ + "books-minus" + ], + "tags": [], + "author": "Perth Totty", + "version": "2.7.94" + }, + { + "id": "2AF5ACED-6980-4A66-B010-629C3E371315", + "name": "book-minus-multiple-outline", + "codepoint": "F090B", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "2.3.50" + }, + { + "id": "402AE77A-79CC-42EF-9FB7-7D11D2C949DA", + "name": "book-minus-outline", + "codepoint": "F1692", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "637C4988-5432-4F5E-ADD5-EBDC397D0622", + "name": "book-multiple", + "codepoint": "F00BB", + "aliases": [ + "books" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "B58005AE-8DFA-4C34-AC4D-C14DEF3D35C2", + "name": "book-multiple-outline", + "codepoint": "F0436", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "1.5.54" + }, + { + "id": "10BCB9E5-2E1F-4CD0-871F-B36FA0595004", + "name": "book-music", + "codepoint": "F0067", + "aliases": [ + "audio-book" + ], + "tags": [ + "Audio" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "22B56C5C-000D-49DB-9D8A-DDD312662DFB", + "name": "book-music-outline", + "codepoint": "F1693", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "52463F43-10D2-41DC-B4EB-45DDE9A4E655", + "name": "book-off", + "codepoint": "F1694", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "C9B4D51E-AA3F-49D4-9603-CC5CA33EB28A", + "name": "book-off-outline", + "codepoint": "F1695", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "7EFAD89C-D84E-41F0-A8A4-F72AC8DB470C", + "name": "book-open", + "codepoint": "F00BD", + "aliases": [ + "chrome-reader-mode" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "08C8BAF9-6B91-458D-BE03-F6A7AABEA2AB", + "name": "book-open-blank-variant", + "codepoint": "F00BE", + "aliases": [ + "import-contacts" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "BA5E15E3-923B-464B-ACEA-F2958F6782F7", + "name": "book-open-outline", + "codepoint": "F0B63", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.0.39" + }, + { + "id": "113421A1-241F-4479-B22B-5F56EFD63D4C", + "name": "book-open-page-variant", + "codepoint": "F05DA", + "aliases": [ + "auto-stories" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "3653D788-AC33-42D4-ADE4-F91A1C373973", + "name": "book-open-page-variant-outline", + "codepoint": "F15D6", + "aliases": [], + "tags": [], + "author": "Google", + "version": "5.6.55" + }, + { + "id": "E5928511-4156-4086-B58D-A2B235A3F824", + "name": "book-open-variant", + "codepoint": "F14F7", + "aliases": [], + "tags": [], + "author": "Google", + "version": "5.4.55" + }, + { + "id": "D1558D49-BCE0-4539-9560-DB05153356AF", + "name": "book-outline", + "codepoint": "F0B64", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.0.39" + }, + { + "id": "89E22D2B-FF72-4242-BEE1-7865F974CF51", + "name": "book-play", + "codepoint": "F0E82", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "3.7.94" + }, + { + "id": "8A87B5DD-D8DF-43A8-BFDD-D127E6F48792", + "name": "book-play-outline", + "codepoint": "F0E83", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "3.7.94" + }, + { + "id": "3C49BDB2-C3A3-4E0C-9314-19FE66414A5B", + "name": "book-plus", + "codepoint": "F05DB", + "aliases": [ + "book-add" + ], + "tags": [], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "9A754066-7A7A-4362-9530-C8500B178DED", + "name": "book-plus-multiple", + "codepoint": "F0A95", + "aliases": [ + "books-plus", + "book-multiple-add", + "books-add" + ], + "tags": [], + "author": "Perth Totty", + "version": "2.7.94" + }, + { + "id": "129A1ABB-F616-4750-8814-018A12FE9D88", + "name": "book-plus-multiple-outline", + "codepoint": "F0ADE", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "2.7.94" + }, + { + "id": "58B6134A-73CF-4E0E-AB85-DCBFB6B6766B", + "name": "book-plus-outline", + "codepoint": "F1696", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "CFAA64B9-8047-4713-AD53-574A398F187F", + "name": "book-refresh", + "codepoint": "F1697", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "7F62E9BE-F358-4CF8-B3DB-938805F83089", + "name": "book-refresh-outline", + "codepoint": "F1698", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "DAB52460-1820-4BD0-9695-67EBF9E84167", + "name": "book-remove", + "codepoint": "F0A97", + "aliases": [], + "tags": [], + "author": "Perth Totty", + "version": "2.7.94" + }, + { + "id": "414C568C-94B4-4EC3-9D81-22F747B9D0FC", + "name": "book-remove-multiple", + "codepoint": "F0A96", + "aliases": [ + "books-remove" + ], + "tags": [], + "author": "Perth Totty", + "version": "2.7.94" + }, + { + "id": "32DEB304-15CC-4B30-832E-A1377A57EC47", + "name": "book-remove-multiple-outline", + "codepoint": "F04CA", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "1.5.54" + }, + { + "id": "CDCF29D7-CED3-45DB-BBC8-ACEA8262738C", + "name": "book-remove-outline", + "codepoint": "F1699", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "AE0D918C-8BC9-4D85-B445-62039AD16FB2", + "name": "book-search", + "codepoint": "F0E84", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "3.7.94" + }, + { + "id": "62AB37D9-3483-4F21-BD4C-44214B668599", + "name": "book-search-outline", + "codepoint": "F0E85", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "3.7.94" + }, + { + "id": "E48C6D20-C8BC-43A0-9F90-A9FBADAB3454", + "name": "book-settings", + "codepoint": "F169A", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "E090B509-20FE-405D-9811-221E533F79F3", + "name": "book-settings-outline", + "codepoint": "F169B", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "ACB38262-FB32-456E-AE84-6BCE160F56C4", + "name": "book-sync", + "codepoint": "F169C", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "8C2A47E9-6B8B-4504-A1C7-37EDFD9DC979", + "name": "book-sync-outline", + "codepoint": "F16C8", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "1B9F45CE-CA39-4ACF-8961-4B4B56D6F94A", + "name": "book-variant", + "codepoint": "F00BF", + "aliases": [ + "class" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "6B7FCAFD-C14A-49FC-A959-A2B6C7C2C5BC", + "name": "book-variant-multiple", + "codepoint": "F00BC", + "aliases": [ + "books-variant" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "690787DD-F7B0-4D32-A668-32657D3A3AE8", + "name": "bookmark", + "codepoint": "F00C0", + "aliases": [ + "turned-in" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "84C06231-55E7-4450-B88D-964B33FCACDA", + "name": "bookmark-box-multiple", + "codepoint": "F196C", + "aliases": [ + "collections-bookmark", + "library-bookmark" + ], + "tags": [], + "author": "Google", + "version": "6.5.95" + }, + { + "id": "1F563201-43D7-4CDA-8DB5-5F82A438965D", + "name": "bookmark-box-multiple-outline", + "codepoint": "F196D", + "aliases": [ + "collections-bookmark-outline", + "library-bookmark-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.5.95" + }, + { + "id": "65F155F1-7A9F-49AF-B570-FD6D24553CE5", + "name": "bookmark-check", + "codepoint": "F00C1", + "aliases": [ + "bookmark-tick" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "EFBBDF1F-1497-4BA3-AE93-614B2BB496F7", + "name": "bookmark-check-outline", + "codepoint": "F137B", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "4.9.95" + }, + { + "id": "AB2B19C4-5114-4D8A-A2EB-4E112B43F383", + "name": "bookmark-minus", + "codepoint": "F09CC", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "2.5.94" + }, + { + "id": "491E1C5C-650E-41BB-9D44-8F8F2474B657", + "name": "bookmark-minus-outline", + "codepoint": "F09CD", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "2.5.94" + }, + { + "id": "28FFD085-27EC-47A7-88A7-989BECA3DDE0", + "name": "bookmark-multiple", + "codepoint": "F0E15", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.6.95" + }, + { + "id": "4C37E778-2438-4F54-8D08-5B25A7659FB7", + "name": "bookmark-multiple-outline", + "codepoint": "F0E16", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.6.95" + }, + { + "id": "DF4ECEB8-EF5C-4ACC-BC7D-B4FEEE75D17D", + "name": "bookmark-music", + "codepoint": "F00C2", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "140B0E5A-4F75-4C53-A9D5-867E4DC020E7", + "name": "bookmark-music-outline", + "codepoint": "F1379", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "4.9.95" + }, + { + "id": "CE74B9A9-5962-4127-ACBE-A1AD4F130A2F", + "name": "bookmark-off", + "codepoint": "F09CE", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "2.5.94" + }, + { + "id": "998B6488-F375-4297-9941-6D8ADC4E7F3C", + "name": "bookmark-off-outline", + "codepoint": "F09CF", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "2.5.94" + }, + { + "id": "0EB6BB85-4BE2-4608-BABF-2EF135D420A7", + "name": "bookmark-outline", + "codepoint": "F00C3", + "aliases": [ + "bookmark-border", + "turned-in-not" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "596822BD-8373-402C-9D27-C341405F55F9", + "name": "bookmark-plus", + "codepoint": "F00C5", + "aliases": [ + "bookmark-add" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "DB2B7624-66CB-4E7E-A65F-4CEE8870C6CC", + "name": "bookmark-plus-outline", + "codepoint": "F00C4", + "aliases": [ + "bookmark-add-outline" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "89594C9C-18ED-45EA-A3AC-A91B570D1541", + "name": "bookmark-remove", + "codepoint": "F00C6", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "0634B479-2104-4AF4-B442-2E5C407EBEE1", + "name": "bookmark-remove-outline", + "codepoint": "F137A", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "4.9.95" + }, + { + "id": "562F5DDE-E65C-4ACC-98B7-54C0D5406AED", + "name": "bookshelf", + "codepoint": "F125F", + "aliases": [], + "tags": [], + "author": "Thomas de Saint-Exup\u00e9ry", + "version": "4.7.95" + }, + { + "id": "D24517D5-27A6-4BE4-B9C8-C575A1431310", + "name": "boom-gate", + "codepoint": "F0E86", + "aliases": [ + "boom-arm", + "boom-barrier", + "arm-barrier", + "barrier", + "automatic-gate" + ], + "tags": [ + "Transportation + Road" + ], + "author": "Michael Richins", + "version": "3.7.94" + }, + { + "id": "2C3B8F49-7A38-49EE-8288-FDA6AC188727", + "name": "boom-gate-alert", + "codepoint": "F0E87", + "aliases": [ + "boom-arm-alert", + "boom-barrier-alert", + "arm-barrier-alert", + "barrier-alert", + "automatic-gate-alert" + ], + "tags": [ + "Alert \/ Error", + "Transportation + Road" + ], + "author": "Michael Richins", + "version": "3.7.94" + }, + { + "id": "B138EF8B-B8ED-4792-9967-D4FB4C8E8A98", + "name": "boom-gate-alert-outline", + "codepoint": "F0E88", + "aliases": [ + "boom-arm-alert-outline", + "boom-barrier-alert-outline", + "arm-barrier-alert-outline", + "barrier-alert-outline", + "automatic-gate-alert-outline" + ], + "tags": [ + "Alert \/ Error", + "Transportation + Road" + ], + "author": "Michael Richins", + "version": "3.7.94" + }, + { + "id": "D9BD19B7-12DD-4557-9DDA-998688CA3CB5", + "name": "boom-gate-arrow-down", + "codepoint": "F0E89", + "aliases": [ + "boom-arm-down", + "boom-barrier-down", + "arm-barrier-down", + "barrier-down", + "automatic-gate-down" + ], + "tags": [ + "Transportation + Road" + ], + "author": "Michael Richins", + "version": "3.7.94" + }, + { + "id": "F0ED697E-DAA8-4530-8403-C614C8EBCE3B", + "name": "boom-gate-arrow-down-outline", + "codepoint": "F0E8A", + "aliases": [ + "boom-arm-down-outline", + "boom-barrier-down-outline", + "arm-barrier-down-outline", + "barrier-down-outline", + "automatic-gate-down-outline" + ], + "tags": [ + "Transportation + Road" + ], + "author": "Michael Richins", + "version": "3.7.94" + }, + { + "id": "F9ADF5B2-435F-4820-8790-EAA72D6D5C75", + "name": "boom-gate-arrow-up", + "codepoint": "F0E8C", + "aliases": [ + "boom-arm-up", + "boom-barrier-up", + "arm-barrier-up", + "barrier-up", + "automatic-gate-up" + ], + "tags": [ + "Transportation + Road" + ], + "author": "Michael Richins", + "version": "3.7.94" + }, + { + "id": "24E7CECC-7FAC-4FE4-8EAE-B727489040E8", + "name": "boom-gate-arrow-up-outline", + "codepoint": "F0E8D", + "aliases": [ + "boom-arm-up-outline", + "boom-barrier-up-outline", + "arm-barrier-up-outline", + "barrier-up-outline", + "automatic-gate-up-outline" + ], + "tags": [ + "Transportation + Road" + ], + "author": "Michael Richins", + "version": "3.7.94" + }, + { + "id": "EF1F53B3-DA99-4410-9A20-E12C42FC2461", + "name": "boom-gate-outline", + "codepoint": "F0E8B", + "aliases": [ + "boom-arm-outline", + "boom-barrier-outline", + "arm-barrier-outline", + "barrier-outline", + "automatic-gate-outline" + ], + "tags": [ + "Transportation + Road" + ], + "author": "Michael Richins", + "version": "3.7.94" + }, + { + "id": "615182F4-7F56-403E-8FDA-7DE1A2041F93", + "name": "boom-gate-up", + "codepoint": "F17F9", + "aliases": [ + "boom-arm-up", + "boom-barrier-up", + "arm-barrier-up", + "barrier-up", + "automatic-gate-up" + ], + "tags": [ + "Transportation + Road", + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "C42EF32C-0E5A-498E-A633-A2E9C739F514", + "name": "boom-gate-up-outline", + "codepoint": "F17FA", + "aliases": [ + "boom-arm-up-outline", + "boom-barrier-up-outline", + "arm-barrier-up-outline", + "barrier-up-outline", + "automatic-gate-up-outline" + ], + "tags": [ + "Transportation + Road", + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "DAA06443-AE25-4881-BC62-8033C4420B8E", + "name": "boombox", + "codepoint": "F05DC", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "090EBF34-3104-4D3C-B3C8-819C332A43E1", + "name": "boomerang", + "codepoint": "F10CF", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Michael Irigoyen", + "version": "4.3.95" + }, + { + "id": "9DAC7258-AB2D-49E4-98A9-E84A5E3E474B", + "name": "bootstrap", + "codepoint": "F06C6", + "aliases": [], + "tags": [ + "Brand \/ Logo", + "Developer \/ Languages" + ], + "author": "Contributors", + "version": "1.8.36" + }, + { + "id": "A3D0E8B6-96B3-4281-B31C-0DDFD729903B", + "name": "border-all", + "codepoint": "F00C7", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "AD3DDFBC-21FE-4D6E-AE09-E9EB7D289459", + "name": "border-all-variant", + "codepoint": "F08A1", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Austin Andrews", + "version": "2.2.43" + }, + { + "id": "9441B8BD-25C8-4F46-AFD4-6B2DA0C4A599", + "name": "border-bottom", + "codepoint": "F00C8", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "29792687-63C3-41A6-8182-CF829969BD48", + "name": "border-bottom-variant", + "codepoint": "F08A2", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Austin Andrews", + "version": "2.2.43" + }, + { + "id": "CCD99C36-5D88-4696-8193-56F11C4B20A7", + "name": "border-color", + "codepoint": "F00C9", + "aliases": [ + "border-colour" + ], + "tags": [ + "Color", + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "0F804E73-90EF-4175-984D-603698F0AF09", + "name": "border-horizontal", + "codepoint": "F00CA", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "F7471447-8501-40A6-9FFB-AB353B55AA89", + "name": "border-inside", + "codepoint": "F00CB", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "6B8A1379-9497-4B1B-A8CF-51CB1AD67757", + "name": "border-left", + "codepoint": "F00CC", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "063FAD96-7055-4D1E-8E50-B9288BB9D0B0", + "name": "border-left-variant", + "codepoint": "F08A3", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Austin Andrews", + "version": "2.2.43" + }, + { + "id": "F6333BD9-AC00-428D-B8A8-FA3B9187487F", + "name": "border-none", + "codepoint": "F00CD", + "aliases": [ + "border-clear" + ], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "C8EC415C-81DE-4399-AEAB-FE102959F619", + "name": "border-none-variant", + "codepoint": "F08A4", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Austin Andrews", + "version": "2.2.43" + }, + { + "id": "F8EA9B00-82F1-4DE8-B8B5-0A71B934C44D", + "name": "border-outside", + "codepoint": "F00CE", + "aliases": [ + "border-outer" + ], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "BC67506B-CAE4-4EDA-B0C8-614436AFDCBF", + "name": "border-right", + "codepoint": "F00CF", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "6284DA6C-DB95-4747-BB40-DE69D5970C5B", + "name": "border-right-variant", + "codepoint": "F08A5", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Austin Andrews", + "version": "2.2.43" + }, + { + "id": "5A750E96-F9A0-4C38-B601-8BA770E89E01", + "name": "border-style", + "codepoint": "F00D0", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "AE703F65-F8D5-43B9-9B6B-B5966260E799", + "name": "border-top", + "codepoint": "F00D1", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "E9426CB0-FC83-40AA-B429-F55AD3F72E47", + "name": "border-top-variant", + "codepoint": "F08A6", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Austin Andrews", + "version": "2.2.43" + }, + { + "id": "540E7940-BA85-4EED-BEAB-C50CEF348D50", + "name": "border-vertical", + "codepoint": "F00D2", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "D938FAC2-CC48-431D-8019-FA41677470DD", + "name": "bottle-soda", + "codepoint": "F1070", + "aliases": [ + "bottle-coke", + "bottle-pop" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Michael Richins", + "version": "4.2.95" + }, + { + "id": "E62A084A-2136-4FD3-8803-A72DE26D60CB", + "name": "bottle-soda-classic", + "codepoint": "F1071", + "aliases": [ + "bottle-coke-classic", + "bottle-pop-classic" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Michael Richins", + "version": "4.2.95" + }, + { + "id": "7682F8D6-3FFD-4591-BFC5-44BF9166FB49", + "name": "bottle-soda-classic-outline", + "codepoint": "F1363", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "4.9.95" + }, + { + "id": "54C4C95B-E05C-4992-8365-96586E864FF9", + "name": "bottle-soda-outline", + "codepoint": "F1072", + "aliases": [ + "bottle-coke-outline", + "bottle-pop-outline" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Michael Richins", + "version": "4.2.95" + }, + { + "id": "4FEF379F-2EBC-49EA-87B8-068B695A67B6", + "name": "bottle-tonic", + "codepoint": "F112E", + "aliases": [ + "flask" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "44193E2D-1EAB-4BA1-9D32-C7E149F53E89", + "name": "bottle-tonic-outline", + "codepoint": "F112F", + "aliases": [ + "flask-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "9524D285-4F39-4FEA-9EC1-9F4B6ACB6615", + "name": "bottle-tonic-plus", + "codepoint": "F1130", + "aliases": [ + "health-potion" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "8508B85B-4238-4FC5-90F8-3C7E5612174B", + "name": "bottle-tonic-plus-outline", + "codepoint": "F1131", + "aliases": [ + "health-potion-outline" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "CE430764-D7C8-4DC8-97F4-DF1473B2C52C", + "name": "bottle-tonic-skull", + "codepoint": "F1132", + "aliases": [ + "poison", + "moonshine" + ], + "tags": [ + "Gaming \/ RPG", + "Holiday" + ], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "24EF4783-9CDC-402E-9F8D-28CCDB50F216", + "name": "bottle-tonic-skull-outline", + "codepoint": "F1133", + "aliases": [ + "poison-outline", + "moonshine-outline" + ], + "tags": [ + "Gaming \/ RPG", + "Holiday" + ], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "E27EBD86-D80B-473B-BEAB-A22005475F38", + "name": "bottle-wine", + "codepoint": "F0854", + "aliases": [], + "tags": [ + "Food \/ Drink" + ], + "author": "James Coyle", + "version": "2.1.99" + }, + { + "id": "B04C5F90-A3FB-4A60-B773-25AE19D293C7", + "name": "bottle-wine-outline", + "codepoint": "F1310", + "aliases": [], + "tags": [ + "Food \/ Drink" + ], + "author": "Simran", + "version": "4.8.95" + }, + { + "id": "3B0FFEAC-477B-436C-A964-F537EC6ADF94", + "name": "bow-arrow", + "codepoint": "F1841", + "aliases": [], + "tags": [ + "Gaming \/ RPG", + "Sport" + ], + "author": "Colton Wiscombe", + "version": "6.2.95" + }, + { + "id": "741B300C-06EF-459D-BB3E-95DB8E21194E", + "name": "bow-tie", + "codepoint": "F0678", + "aliases": [], + "tags": [ + "Clothing" + ], + "author": "Thomas Hunsaker", + "version": "1.7.12" + }, + { + "id": "84EB4644-EC38-431B-B55B-12363EB63765", + "name": "bowl", + "codepoint": "F028E", + "aliases": [], + "tags": [ + "Food \/ Drink" + ], + "author": "Michael Irigoyen", + "version": "1.5.54" + }, + { + "id": "95E70948-C85D-41AC-887C-62752FBA7B6B", + "name": "bowl-mix", + "codepoint": "F0617", + "aliases": [ + "mixing-bowl" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Austin Andrews", + "version": "1.6.50" + }, + { + "id": "3C547C40-FF5E-4BB6-B45E-2B26AD990B20", + "name": "bowl-mix-outline", + "codepoint": "F02E4", + "aliases": [ + "mixing-bowl-outline" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "D0021FC3-865F-45B4-8542-4937DC2952E2", + "name": "bowl-outline", + "codepoint": "F02A9", + "aliases": [], + "tags": [ + "Food \/ Drink" + ], + "author": "Michael Irigoyen", + "version": "1.5.54" + }, + { + "id": "0CAB5DF9-E4A7-418D-B317-E792FF2DF8D1", + "name": "bowling", + "codepoint": "F00D3", + "aliases": [], + "tags": [ + "Sport" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "1E6B8A9E-921F-4695-B1CA-0A87AC157E88", + "name": "box", + "codepoint": "F00D4", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "A4C51C21-DEB0-4247-AEA3-B5F454641BDC", + "name": "box-cutter", + "codepoint": "F00D5", + "aliases": [ + "stanley-knife" + ], + "tags": [ + "Hardware \/ Tools" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "0E77ABEB-007D-4458-BEB9-F2C4607ECFC7", + "name": "box-cutter-off", + "codepoint": "F0B4A", + "aliases": [], + "tags": [], + "author": "nilsfast", + "version": "2.8.94" + }, + { + "id": "9DBE04CB-C425-4556-9046-15CBD88C866B", + "name": "box-shadow", + "codepoint": "F0637", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "1.6.50" + }, + { + "id": "C36FCD4A-D073-4BCA-96D1-90CD81E4C080", + "name": "boxing-glove", + "codepoint": "F0B65", + "aliases": [], + "tags": [ + "Sport" + ], + "author": "Michael Irigoyen", + "version": "3.0.39" + }, + { + "id": "3B62C43D-F1BC-45AB-AB68-B1B854009FD8", + "name": "braille", + "codepoint": "F09D0", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "2.5.94" + }, + { + "id": "8EC09BCA-7C35-4FAB-9000-4A7795CC0930", + "name": "brain", + "codepoint": "F09D1", + "aliases": [], + "tags": [ + "Medical \/ Hospital" + ], + "author": "Michael Richins", + "version": "2.5.94" + }, + { + "id": "ED0E86DB-C4A5-477B-82BF-FC5849EE0B9C", + "name": "bread-slice", + "codepoint": "F0CEE", + "aliases": [], + "tags": [ + "Food \/ Drink" + ], + "author": "Nick", + "version": "3.3.92" + }, + { + "id": "FAC52832-EA67-4ABF-9841-7D3DD07C6EFF", + "name": "bread-slice-outline", + "codepoint": "F0CEF", + "aliases": [], + "tags": [ + "Food \/ Drink" + ], + "author": "Nick", + "version": "3.3.92" + }, + { + "id": "9FD9D8F0-D777-4B33-9CF7-E32FD8C25655", + "name": "bridge", + "codepoint": "F0618", + "aliases": [], + "tags": [ + "Places" + ], + "author": "Austin Andrews", + "version": "1.6.50" + }, + { + "id": "15A9F4A5-3EB6-443C-8283-547A077CB0C4", + "name": "briefcase", + "codepoint": "F00D6", + "aliases": [ + "work" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "B0F37881-7339-4CBC-9DB5-833EDCB6B049", + "name": "briefcase-account", + "codepoint": "F0CF0", + "aliases": [ + "briefcase-person", + "briefcase-user" + ], + "tags": [ + "Account \/ User" + ], + "author": "Michael Irigoyen", + "version": "3.3.92" + }, + { + "id": "F92EB0E4-257F-4200-A18E-0F0C02C8DB51", + "name": "briefcase-account-outline", + "codepoint": "F0CF1", + "aliases": [ + "briefcase-person-outline", + "briefcase-user-outline" + ], + "tags": [ + "Account \/ User" + ], + "author": "Michael Irigoyen", + "version": "3.3.92" + }, + { + "id": "4182182E-F79B-4153-B652-2A4B4AC231E1", + "name": "briefcase-check", + "codepoint": "F00D7", + "aliases": [ + "briefcase-tick" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "3889AEB1-7257-4D20-ACD4-78CB27879639", + "name": "briefcase-check-outline", + "codepoint": "F131E", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "1BC68384-3EB0-4296-A3B2-9F348DD7AF1E", + "name": "briefcase-clock", + "codepoint": "F10D0", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Michael Richins", + "version": "4.3.95" + }, + { + "id": "EBE7A5FD-4D46-4A78-BA72-816546ABB880", + "name": "briefcase-clock-outline", + "codepoint": "F10D1", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Michael Richins", + "version": "4.3.95" + }, + { + "id": "D4705E48-0920-451E-BFF3-2DA1BBA5C21D", + "name": "briefcase-download", + "codepoint": "F00D8", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "DD87CBA1-4687-45A7-B470-EC75EC4C0D32", + "name": "briefcase-download-outline", + "codepoint": "F0C3D", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "485F9428-A4BF-422D-A624-61AB07D37890", + "name": "briefcase-edit", + "codepoint": "F0A98", + "aliases": [], + "tags": [ + "Edit \/ Modify" + ], + "author": "theminanaji", + "version": "2.7.94" + }, + { + "id": "EE4B8481-FF0C-44BC-9D23-64DFDF499F73", + "name": "briefcase-edit-outline", + "codepoint": "F0C3E", + "aliases": [], + "tags": [ + "Edit \/ Modify" + ], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "15362BD1-6DB7-4334-B6CF-35A61D7EE2A0", + "name": "briefcase-eye", + "codepoint": "F17D9", + "aliases": [ + "briefcase-view" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "6C1979BB-3BFD-4466-9934-945FAB608E90", + "name": "briefcase-eye-outline", + "codepoint": "F17DA", + "aliases": [ + "briefcase-view-outline" + ], + "tags": [], + "author": "Andrej Sharapov", + "version": "6.1.95" + }, + { + "id": "5999899F-7FE5-44EF-87F4-DD1E2F9556B3", + "name": "briefcase-minus", + "codepoint": "F0A2A", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "2.6.95" + }, + { + "id": "C185E5E9-F652-41C2-9FBA-6673FE7CEB10", + "name": "briefcase-minus-outline", + "codepoint": "F0C3F", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "2059EB01-3552-45CF-A2A1-64DA37F124D0", + "name": "briefcase-off", + "codepoint": "F1658", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "EE25B28C-2F16-4BE0-95BB-8328DF0F0CA2", + "name": "briefcase-off-outline", + "codepoint": "F1659", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "1E7F3689-287C-40DC-B0DD-CF65987E9B53", + "name": "briefcase-outline", + "codepoint": "F0814", + "aliases": [ + "work-outline" + ], + "tags": [], + "author": "Google", + "version": "2.1.19" + }, + { + "id": "C08C7899-5B7E-4E6F-9861-C319CFABA7DC", + "name": "briefcase-plus", + "codepoint": "F0A2B", + "aliases": [ + "briefcase-add" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "2.6.95" + }, + { + "id": "CA6D7ED5-38E6-4B63-915A-431CDDA27062", + "name": "briefcase-plus-outline", + "codepoint": "F0C40", + "aliases": [ + "briefcase-add-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "9B02F5A1-D171-49A4-91DB-5F47E03D7B65", + "name": "briefcase-remove", + "codepoint": "F0A2C", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "2.6.95" + }, + { + "id": "1754B039-7D56-4722-BEE1-8A8BA735FCD5", + "name": "briefcase-remove-outline", + "codepoint": "F0C41", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "E6071C37-85E7-45F7-868D-A12234D0B979", + "name": "briefcase-search", + "codepoint": "F0A2D", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "2.6.95" + }, + { + "id": "62511811-5FA9-4E69-8513-62828BE493DF", + "name": "briefcase-search-outline", + "codepoint": "F0C42", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "3D48B9FF-A060-47DA-809E-32D5ED68CA64", + "name": "briefcase-upload", + "codepoint": "F00D9", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "AE06D41B-19EB-4E10-92DE-2A285163F034", + "name": "briefcase-upload-outline", + "codepoint": "F0C43", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "1BB4FAD5-B3AE-47FD-95C4-B1713FE05FF2", + "name": "briefcase-variant", + "codepoint": "F1494", + "aliases": [], + "tags": [], + "author": "Google", + "version": "5.3.45" + }, + { + "id": "2C5F52C7-AC1B-417F-8035-DB25264DA0A4", + "name": "briefcase-variant-off", + "codepoint": "F165A", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "E89FB55E-396B-4E43-BC41-512B597CF474", + "name": "briefcase-variant-off-outline", + "codepoint": "F165B", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "5280D1B7-9418-4673-BB9E-6AB3BD640C92", + "name": "briefcase-variant-outline", + "codepoint": "F1495", + "aliases": [], + "tags": [], + "author": "Google", + "version": "5.3.45" + }, + { + "id": "B3FF12D1-1C76-4E1D-BAD0-468E424BADA7", + "name": "brightness-1", + "codepoint": "F00DA", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "FAEBEE4C-295C-475F-AE7D-11CFA4688017", + "name": "brightness-2", + "codepoint": "F00DB", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "825E1BB2-1E01-4E6E-9CF0-04412FDECDA6", + "name": "brightness-3", + "codepoint": "F00DC", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "10EC7F50-BDC1-45C4-A6D2-2CB5FB4DE902", + "name": "brightness-4", + "codepoint": "F00DD", + "aliases": [ + "theme-light-dark" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "17314413-99ED-480C-B739-8572B6AE5477", + "name": "brightness-5", + "codepoint": "F00DE", + "aliases": [ + "brightness-low" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "34818392-81EE-4210-8F86-9C448596C912", + "name": "brightness-6", + "codepoint": "F00DF", + "aliases": [ + "brightness-medium", + "theme-light-dark" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "014CCAA3-4B30-4C3D-921C-078A078A5198", + "name": "brightness-7", + "codepoint": "F00E0", + "aliases": [ + "brightness-high" + ], + "tags": [ + "Home Automation" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "6E47CC3B-6D95-4311-A8DD-7B50AC24781C", + "name": "brightness-auto", + "codepoint": "F00E1", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "CBC38577-44FC-45B5-9454-3D04AA9CEAE3", + "name": "brightness-percent", + "codepoint": "F0CF2", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.3.92" + }, + { + "id": "F5E24182-366C-4D23-BA0E-8D2E25B88230", + "name": "broadcast", + "codepoint": "F1720", + "aliases": [ + "signal" + ], + "tags": [ + "Weather" + ], + "author": "Google", + "version": "5.9.55" + }, + { + "id": "E1851914-B294-4FC0-A94B-C5C8D0F52DCB", + "name": "broadcast-off", + "codepoint": "F1721", + "aliases": [ + "signal-off" + ], + "tags": [ + "Weather" + ], + "author": "Google", + "version": "5.9.55" + }, + { + "id": "8159ED8F-4D1C-4845-8297-0FE41260D199", + "name": "broom", + "codepoint": "F00E2", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "B5C72984-BCCF-4729-A7D3-2A07D5794014", + "name": "brush", + "codepoint": "F00E3", + "aliases": [ + "paintbrush" + ], + "tags": [ + "Drawing \/ Art" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "9A11CA67-107C-4D0A-A244-34E60B1915A0", + "name": "brush-off", + "codepoint": "F1771", + "aliases": [], + "tags": [], + "author": "Teodor Sandu", + "version": "6.1.95" + }, + { + "id": "8B433DEE-0DAC-4C0E-80A0-068A00269BEE", + "name": "brush-variant", + "codepoint": "F1813", + "aliases": [ + "paintbrush" + ], + "tags": [ + "Drawing \/ Art" + ], + "author": "Google", + "version": "6.1.95" + }, + { + "id": "1024F530-CFE4-4869-BAA4-062593D42DC9", + "name": "bucket", + "codepoint": "F1415", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "5.1.45" + }, + { + "id": "1A620C83-4D7F-4175-998B-E3460C77510D", + "name": "bucket-outline", + "codepoint": "F1416", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "5.1.45" + }, + { + "id": "B68F24D9-0E45-4729-9DB9-46E0D73589F2", + "name": "buffet", + "codepoint": "F0578", + "aliases": [ + "sideboard" + ], + "tags": [ + "Home Automation" + ], + "author": "nilsfast", + "version": "1.5.54" + }, + { + "id": "09A131FB-EE06-49B8-80C3-49B294BCA612", + "name": "bug", + "codepoint": "F00E4", + "aliases": [ + "bug-report" + ], + "tags": [ + "Nature", + "Animal" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "3EDC1018-2B2B-4B3A-AE65-3C74678C807B", + "name": "bug-check", + "codepoint": "F0A2E", + "aliases": [ + "bug-tick" + ], + "tags": [ + "Animal" + ], + "author": "Michael Richins", + "version": "2.6.95" + }, + { + "id": "1DF96664-B3AE-4028-BB22-C9DE9273A641", + "name": "bug-check-outline", + "codepoint": "F0A2F", + "aliases": [ + "bug-tick-outline" + ], + "tags": [ + "Animal" + ], + "author": "Michael Richins", + "version": "2.6.95" + }, + { + "id": "CDBE2126-E455-498B-B5CC-945A42F78B0D", + "name": "bug-outline", + "codepoint": "F0A30", + "aliases": [], + "tags": [ + "Nature", + "Animal" + ], + "author": "Google", + "version": "2.6.95" + }, + { + "id": "CBC37A12-44AA-4CA8-976A-F26ED26849D4", + "name": "bugle", + "codepoint": "F0DB4", + "aliases": [ + "car-horn" + ], + "tags": [ + "Automotive", + "Music" + ], + "author": "Michael Irigoyen", + "version": "3.5.94" + }, + { + "id": "76D6F847-8DC7-41CB-B88C-9407CC2B18AA", + "name": "bulldozer", + "codepoint": "F0B22", + "aliases": [], + "tags": [ + "Hardware \/ Tools" + ], + "author": "Louistwee", + "version": "2.8.94" + }, + { + "id": "AED3CA58-6CAA-45AF-9791-F61AC32DAFBA", + "name": "bullet", + "codepoint": "F0CF3", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.3.92" + }, + { + "id": "094C9BF2-9EEE-434C-9CA9-8280FBDFBEF7", + "name": "bulletin-board", + "codepoint": "F00E5", + "aliases": [ + "notice-board" + ], + "tags": [], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "A5D2E199-03A1-4C23-9C63-954D63DEBEB4", + "name": "bullhorn", + "codepoint": "F00E6", + "aliases": [ + "announcement", + "megaphone", + "loudspeaker" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "B48B1E77-750E-4A16-9154-12D25E572A9D", + "name": "bullhorn-outline", + "codepoint": "F0B23", + "aliases": [ + "announcement-outline", + "megaphone-outline", + "loudspeaker-outline" + ], + "tags": [], + "author": "Google", + "version": "2.8.94" + }, + { + "id": "ED822193-44D0-481D-B373-F99518240597", + "name": "bullhorn-variant", + "codepoint": "F196E", + "aliases": [ + "announcement", + "megaphone", + "loudspeaker" + ], + "tags": [], + "author": "nlsve", + "version": "6.5.95" + }, + { + "id": "D38A39A0-E788-49D7-802B-BE2BF5BB2274", + "name": "bullhorn-variant-outline", + "codepoint": "F196F", + "aliases": [ + "announcement-outline", + "megaphone-outline", + "loudspeaker-outline" + ], + "tags": [], + "author": "nlsve", + "version": "6.5.95" + }, + { + "id": "ED26BD4D-ACDB-45DC-A0DA-18ECA3B2008E", + "name": "bullseye", + "codepoint": "F05DD", + "aliases": [ + "target" + ], + "tags": [ + "Sport" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "FAC8D1F3-C466-41F3-B3BF-A08519BBC909", + "name": "bullseye-arrow", + "codepoint": "F08C9", + "aliases": [ + "target-arrow" + ], + "tags": [ + "Sport" + ], + "author": "Simran", + "version": "2.3.50" + }, + { + "id": "103BB26D-356A-4F6D-9F98-787CEC908FAD", + "name": "bulma", + "codepoint": "F12E7", + "aliases": [], + "tags": [ + "Developer \/ Languages", + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "4.8.95" + }, + { + "id": "8428337D-0DED-4E4D-8F89-326FCAD97884", + "name": "bunk-bed", + "codepoint": "F1302", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Simran", + "version": "4.8.95" + }, + { + "id": "D3DFF539-E101-40B2-BA6D-B62327AFE6AC", + "name": "bunk-bed-outline", + "codepoint": "F0097", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "F6516F38-B29E-4CC9-A7E2-706817121D45", + "name": "bus", + "codepoint": "F00E7", + "aliases": [ + "directions-bus" + ], + "tags": [ + "Navigation", + "Transportation + Road" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "85DD64A3-9215-41F0-9C94-92C180D7BA05", + "name": "bus-alert", + "codepoint": "F0A99", + "aliases": [ + "bus-warning" + ], + "tags": [ + "Alert \/ Error", + "Transportation + Road" + ], + "author": "Google", + "version": "2.7.94" + }, + { + "id": "44D15383-D6D2-46CC-A977-7921DA98C7E8", + "name": "bus-articulated-end", + "codepoint": "F079C", + "aliases": [], + "tags": [ + "Transportation + Road" + ], + "author": "GreenTurtwig", + "version": "2.0.46" + }, + { + "id": "5C34E429-3B80-46CD-8DC8-44D5D9769682", + "name": "bus-articulated-front", + "codepoint": "F079D", + "aliases": [], + "tags": [ + "Transportation + Road" + ], + "author": "GreenTurtwig", + "version": "2.0.46" + }, + { + "id": "B37694EA-F48B-4F48-ACF1-0E48FB334473", + "name": "bus-clock", + "codepoint": "F08CA", + "aliases": [ + "departure-board" + ], + "tags": [ + "Date \/ Time", + "Transportation + Road" + ], + "author": "Google", + "version": "2.3.50" + }, + { + "id": "1F4327A8-1E93-4490-B992-C9D04DFFB144", + "name": "bus-double-decker", + "codepoint": "F079E", + "aliases": [], + "tags": [ + "Transportation + Road" + ], + "author": "GreenTurtwig", + "version": "2.0.46" + }, + { + "id": "67F98777-D4FA-454C-96D6-835BD7A1D2D5", + "name": "bus-electric", + "codepoint": "F191D", + "aliases": [], + "tags": [ + "Transportation + Road" + ], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "42DCF950-C2F2-4989-8E0B-ACF16326A6A7", + "name": "bus-marker", + "codepoint": "F1212", + "aliases": [ + "bus-location", + "bus-stop" + ], + "tags": [], + "author": "Michael Richins", + "version": "4.6.95" + }, + { + "id": "E007EC1E-915B-4A12-89A0-8F7249AEF9FC", + "name": "bus-multiple", + "codepoint": "F0F3F", + "aliases": [ + "fleet" + ], + "tags": [ + "Transportation + Road" + ], + "author": "Michael Richins", + "version": "3.9.97" + }, + { + "id": "774EC563-DF29-498C-8270-ABB051396687", + "name": "bus-school", + "codepoint": "F079F", + "aliases": [ + "education" + ], + "tags": [ + "Transportation + Road" + ], + "author": "GreenTurtwig", + "version": "2.0.46" + }, + { + "id": "D944705B-8F7B-441F-8753-6E51E4378D7D", + "name": "bus-side", + "codepoint": "F07A0", + "aliases": [], + "tags": [ + "Transportation + Road" + ], + "author": "GreenTurtwig", + "version": "2.0.46" + }, + { + "id": "79F04208-0844-4987-9CFA-8870EBB6CD1D", + "name": "bus-stop", + "codepoint": "F1012", + "aliases": [], + "tags": [ + "Transportation + Road", + "Navigation" + ], + "author": "Michael Richins", + "version": "4.1.95" + }, + { + "id": "E299AA19-1C5F-4D7F-B101-0FBFC05A7130", + "name": "bus-stop-covered", + "codepoint": "F1013", + "aliases": [], + "tags": [ + "Transportation + Road", + "Navigation" + ], + "author": "Michael Richins", + "version": "4.1.95" + }, + { + "id": "E1CA2856-1C0E-4487-BAF3-C64A4EA94C45", + "name": "bus-stop-uncovered", + "codepoint": "F1014", + "aliases": [], + "tags": [ + "Transportation + Road", + "Navigation" + ], + "author": "Michael Richins", + "version": "4.1.95" + }, + { + "id": "CC37A3EE-B084-4CD4-AF41-1E5C6D83D839", + "name": "butterfly", + "codepoint": "F1589", + "aliases": [], + "tags": [ + "Nature", + "Animal" + ], + "author": "Nicolas Gres", + "version": "5.5.55" + }, + { + "id": "6BD6BDCD-0C73-40DF-9A9B-127C1DDFF467", + "name": "butterfly-outline", + "codepoint": "F158A", + "aliases": [], + "tags": [ + "Nature", + "Animal" + ], + "author": "Nicolas Gres", + "version": "5.5.55" + }, + { + "id": "5243C745-48FC-4DE9-83F8-138464C7D0D8", + "name": "cabin-a-frame", + "codepoint": "F188C", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Jeff Anders", + "version": "6.2.95" + }, + { + "id": "1D18C000-0A31-4A28-BA96-B47103D727DD", + "name": "cable-data", + "codepoint": "F1394", + "aliases": [], + "tags": [], + "author": "GreenTurtwig", + "version": "5.0.45" + }, + { + "id": "7DFE345F-A336-43BC-89BE-18FE3C902BFC", + "name": "cached", + "codepoint": "F00E8", + "aliases": [ + "counterclockwise-arrows", + "circular-arrows", + "circle-arrows", + "sync" + ], + "tags": [ + "Arrow" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "C7CDAEB3-FE9D-4A53-937B-F778CEA157E0", + "name": "cactus", + "codepoint": "F0DB5", + "aliases": [], + "tags": [ + "Nature" + ], + "author": "Andrew Nenakhov", + "version": "3.5.94" + }, + { + "id": "E5BFDCE4-1033-4062-9677-94B95E028B6E", + "name": "cake", + "codepoint": "F00E9", + "aliases": [ + "birthday-cake" + ], + "tags": [ + "Holiday", + "Food \/ Drink" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "934C9B6C-0DA5-4D71-9283-C960ED537D02", + "name": "cake-layered", + "codepoint": "F00EA", + "aliases": [ + "birthday-cake" + ], + "tags": [ + "Holiday", + "Food \/ Drink" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "2F9E87A6-B7DB-48B1-9528-C8A941FBC3AF", + "name": "cake-variant", + "codepoint": "F00EB", + "aliases": [ + "birthday-cake" + ], + "tags": [ + "Holiday", + "Food \/ Drink" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "0819B4B2-9D58-438F-943E-E628A3D5BF52", + "name": "cake-variant-outline", + "codepoint": "F17F0", + "aliases": [ + "birthday-cake-outline" + ], + "tags": [ + "Holiday", + "Food \/ Drink" + ], + "author": "Google", + "version": "6.1.95" + }, + { + "id": "3E9895C8-BCCB-464C-ACF1-CCA86113DA37", + "name": "calculator", + "codepoint": "F00EC", + "aliases": [], + "tags": [ + "Math" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "FB05A4AF-E47A-4F82-BFFE-7C1F587839B6", + "name": "calculator-variant", + "codepoint": "F0A9A", + "aliases": [], + "tags": [ + "Math" + ], + "author": "Google", + "version": "2.7.94" + }, + { + "id": "87123F5D-C9AC-43B3-9E97-10EE3F9C1158", + "name": "calculator-variant-outline", + "codepoint": "F15A6", + "aliases": [], + "tags": [ + "Math" + ], + "author": "Google", + "version": "5.5.55" + }, + { + "id": "23C8742A-612C-4C55-B184-2A0ABB387746", + "name": "calendar", + "codepoint": "F00ED", + "aliases": [ + "event", + "insert-invitation" + ], + "tags": [ + "Date \/ Time" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "CD7D41D2-4BD2-4482-85C2-314A283EB57F", + "name": "calendar-account", + "codepoint": "F0ED7", + "aliases": [], + "tags": [ + "Date \/ Time", + "Account \/ User" + ], + "author": "Michael Richins", + "version": "3.8.95" + }, + { + "id": "B852A287-2C5E-4468-9A83-6B5E0ABD1219", + "name": "calendar-account-outline", + "codepoint": "F0ED8", + "aliases": [], + "tags": [ + "Date \/ Time", + "Account \/ User" + ], + "author": "Michael Richins", + "version": "3.8.95" + }, + { + "id": "38F5B0F1-FAC2-4389-9CE0-BDDEBEC868F4", + "name": "calendar-alert", + "codepoint": "F0A31", + "aliases": [ + "event-alert", + "calendar-warning" + ], + "tags": [ + "Date \/ Time", + "Alert \/ Error" + ], + "author": "Simran", + "version": "2.6.95" + }, + { + "id": "9FB11BA5-47F5-40B8-9BD2-259FEA4E0A6E", + "name": "calendar-arrow-left", + "codepoint": "F1134", + "aliases": [ + "reschedule" + ], + "tags": [ + "Date \/ Time" + ], + "author": "Terren", + "version": "4.4.95" + }, + { + "id": "571CF297-7E85-4808-A76A-72952F1A4976", + "name": "calendar-arrow-right", + "codepoint": "F1135", + "aliases": [ + "reschedule" + ], + "tags": [ + "Date \/ Time" + ], + "author": "Terren", + "version": "4.4.95" + }, + { + "id": "57984F1A-6CA5-4928-B221-466C0CC11562", + "name": "calendar-blank", + "codepoint": "F00EE", + "aliases": [ + "calendar-today" + ], + "tags": [ + "Date \/ Time" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "BD09D9F0-FF38-4D14-8798-2CB5091CABE1", + "name": "calendar-blank-multiple", + "codepoint": "F1073", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "James Coyle", + "version": "4.2.95" + }, + { + "id": "9A461143-6DF3-49CB-A238-24CFE7181183", + "name": "calendar-blank-outline", + "codepoint": "F0B66", + "aliases": [ + "event-blank-outline" + ], + "tags": [ + "Date \/ Time" + ], + "author": "Google", + "version": "3.0.39" + }, + { + "id": "62008F88-6B17-4277-9155-B596476629A1", + "name": "calendar-check", + "codepoint": "F00EF", + "aliases": [ + "event-available", + "calendar-task", + "calendar-tick", + "event-tick", + "event-check" + ], + "tags": [ + "Date \/ Time" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "62AD0407-3DB5-48B0-8A26-3C5A07C78582", + "name": "calendar-check-outline", + "codepoint": "F0C44", + "aliases": [ + "event-available-outline", + "event-check-outline", + "event-tick-outline", + "calendar-task-outline", + "calendar-tick-outline" + ], + "tags": [ + "Date \/ Time" + ], + "author": "Google", + "version": "3.2.89" + }, + { + "id": "921F6084-24E6-4D62-8BF9-9258D8FADE8E", + "name": "calendar-clock", + "codepoint": "F00F0", + "aliases": [ + "event-clock", + "event-time", + "calendar-time" + ], + "tags": [ + "Date \/ Time" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "9101C5D4-90CA-4C18-B66E-611B3B0A3877", + "name": "calendar-clock-outline", + "codepoint": "F16E1", + "aliases": [], + "tags": [], + "author": "GreenTurtwig", + "version": "5.9.55" + }, + { + "id": "D40760C0-3030-4ADC-AF91-6646565212FC", + "name": "calendar-collapse-horizontal", + "codepoint": "F189D", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Austin Andrews", + "version": "6.3.95" + }, + { + "id": "A5F0BBFB-DA5E-4068-B2D5-3C0F3EB26B14", + "name": "calendar-cursor", + "codepoint": "F157B", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Google", + "version": "5.5.55" + }, + { + "id": "2976EA1B-60A3-46FB-97E2-95BB74B0DD22", + "name": "calendar-edit", + "codepoint": "F08A7", + "aliases": [ + "event-edit" + ], + "tags": [ + "Date \/ Time", + "Edit \/ Modify" + ], + "author": "Michael Richins", + "version": "2.2.43" + }, + { + "id": "5837A731-F9AE-433E-AB31-12EE3D2D13D1", + "name": "calendar-end", + "codepoint": "F166C", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Austin Andrews", + "version": "5.7.55" + }, + { + "id": "61805380-C5C2-4A69-A0BC-356A642F7188", + "name": "calendar-expand-horizontal", + "codepoint": "F189E", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Austin Andrews", + "version": "6.3.95" + }, + { + "id": "14692438-9215-4003-AF95-04AA7C27DA48", + "name": "calendar-export", + "codepoint": "F0B24", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Michael Richins", + "version": "2.8.94" + }, + { + "id": "EF6AC5FE-7E6E-47AC-B5D8-E802CBB94E3B", + "name": "calendar-heart", + "codepoint": "F09D2", + "aliases": [ + "event-heart" + ], + "tags": [ + "Date \/ Time" + ], + "author": "Austin Andrews", + "version": "2.5.94" + }, + { + "id": "04EEB2AA-AB71-4124-8AC4-FA65985AF37E", + "name": "calendar-import", + "codepoint": "F0B25", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Michael Richins", + "version": "2.8.94" + }, + { + "id": "8189159C-0869-4B40-809C-ECE7C33A2EC0", + "name": "calendar-lock", + "codepoint": "F1641", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "38B4A077-A3EA-4AF2-8553-9888BA25589F", + "name": "calendar-lock-outline", + "codepoint": "F1642", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "12439778-1F4B-4498-8716-5BE128D194E1", + "name": "calendar-minus", + "codepoint": "F0D5C", + "aliases": [ + "event-minus" + ], + "tags": [ + "Date \/ Time" + ], + "author": "ButchMonkey", + "version": "3.4.93" + }, + { + "id": "73BD287F-15E4-46D3-997F-0F2A9E641EE9", + "name": "calendar-month", + "codepoint": "F0E17", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Terren", + "version": "3.6.95" + }, + { + "id": "80D8D5AB-B9A9-4A26-8E9A-A2D4DBDD77AC", + "name": "calendar-month-outline", + "codepoint": "F0E18", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Terren", + "version": "3.6.95" + }, + { + "id": "F4851A5B-6F19-4C18-9A13-4BF2617FF0E0", + "name": "calendar-multiple", + "codepoint": "F00F1", + "aliases": [ + "event-multiple", + "calendars", + "events" + ], + "tags": [ + "Date \/ Time" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "7329D294-805D-4843-AB03-B87C661C296A", + "name": "calendar-multiple-check", + "codepoint": "F00F2", + "aliases": [ + "event-multiple-check", + "calendar-multiple-tick", + "calendars-check", + "calendars-tick", + "event-multiple-tick", + "events-check", + "events-tick" + ], + "tags": [ + "Date \/ Time" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "EFABC8FA-93A2-43FB-A9C3-B03F1324B2E2", + "name": "calendar-multiselect", + "codepoint": "F0A32", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Austin Andrews", + "version": "2.6.95" + }, + { + "id": "3703C79F-7F34-41D6-A12F-6247144FEB02", + "name": "calendar-outline", + "codepoint": "F0B67", + "aliases": [ + "event-outline" + ], + "tags": [ + "Date \/ Time" + ], + "author": "Google", + "version": "3.0.39" + }, + { + "id": "34AFE807-D724-4A5A-A3FE-910928179BE8", + "name": "calendar-plus", + "codepoint": "F00F3", + "aliases": [ + "event-plus", + "calendar-add", + "event-add" + ], + "tags": [ + "Date \/ Time" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "1A7293FC-E6E7-4C86-8919-32D0C5F60B08", + "name": "calendar-question", + "codepoint": "F0692", + "aliases": [ + "calendar-rsvp", + "event-question" + ], + "tags": [ + "Date \/ Time" + ], + "author": "Simran", + "version": "1.7.12" + }, + { + "id": "740D7A91-7492-4922-96C7-A719E2BCD62A", + "name": "calendar-range", + "codepoint": "F0679", + "aliases": [ + "date-range", + "calendar-week", + "event-range" + ], + "tags": [ + "Date \/ Time" + ], + "author": "Google", + "version": "1.7.12" + }, + { + "id": "CD7FA7FC-1BB0-4DB6-82C6-DF13E5A55EB2", + "name": "calendar-range-outline", + "codepoint": "F0B68", + "aliases": [ + "event-range-outline" + ], + "tags": [ + "Date \/ Time" + ], + "author": "Google", + "version": "3.0.39" + }, + { + "id": "4147C0BC-E3AE-4324-AA38-D2EC7A7AAD5E", + "name": "calendar-refresh", + "codepoint": "F01E1", + "aliases": [ + "calendar-repeat" + ], + "tags": [ + "Date \/ Time" + ], + "author": "Michael Irigoyen", + "version": "1.5.54" + }, + { + "id": "BC0BD74D-06D4-458A-B0CE-90B96A2ADCBF", + "name": "calendar-refresh-outline", + "codepoint": "F0203", + "aliases": [ + "calendar-repeat-outline" + ], + "tags": [ + "Date \/ Time" + ], + "author": "Michael Irigoyen", + "version": "1.5.54" + }, + { + "id": "2FAF3098-4BD1-4C70-94A8-F75E1EA54F49", + "name": "calendar-remove", + "codepoint": "F00F4", + "aliases": [ + "event-busy", + "event-remove" + ], + "tags": [ + "Date \/ Time" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "10475FB2-142C-48FF-AB95-B93CF2680208", + "name": "calendar-remove-outline", + "codepoint": "F0C45", + "aliases": [ + "event-busy-outline", + "event-remove-outline" + ], + "tags": [ + "Date \/ Time" + ], + "author": "Google", + "version": "3.2.89" + }, + { + "id": "1C61A1FD-56B6-41F1-B677-84D32425225A", + "name": "calendar-search", + "codepoint": "F094C", + "aliases": [ + "event-search" + ], + "tags": [ + "Date \/ Time" + ], + "author": "GreenTurtwig", + "version": "2.4.85" + }, + { + "id": "96505BCC-D522-45A6-A642-85F1B4248FAA", + "name": "calendar-star", + "codepoint": "F09D3", + "aliases": [ + "event-star", + "calendar-favorite" + ], + "tags": [ + "Date \/ Time" + ], + "author": "Michael Richins", + "version": "2.5.94" + }, + { + "id": "D88F139B-9D00-462D-8AA5-C23A5A02FCC6", + "name": "calendar-start", + "codepoint": "F166D", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Austin Andrews", + "version": "5.7.55" + }, + { + "id": "7343C074-F974-4083-89C5-3C2BABF4E3C9", + "name": "calendar-sync", + "codepoint": "F0E8E", + "aliases": [ + "calendar-repeat" + ], + "tags": [ + "Date \/ Time" + ], + "author": "Michael Richins", + "version": "3.7.94" + }, + { + "id": "24C0F48E-A354-4835-A2D4-B1E348ACF5D5", + "name": "calendar-sync-outline", + "codepoint": "F0E8F", + "aliases": [ + "calendar-repeat-outline" + ], + "tags": [ + "Date \/ Time" + ], + "author": "Michael Richins", + "version": "3.7.94" + }, + { + "id": "1A873476-B82D-4E23-BF19-897F0A0C0B93", + "name": "calendar-text", + "codepoint": "F00F5", + "aliases": [ + "event-note", + "event-text" + ], + "tags": [ + "Date \/ Time" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "F49AE0DB-5AAF-4574-BF4C-121E99A95BEF", + "name": "calendar-text-outline", + "codepoint": "F0C46", + "aliases": [ + "event-text-outline", + "event-note-outline" + ], + "tags": [ + "Date \/ Time" + ], + "author": "Google", + "version": "3.2.89" + }, + { + "id": "A566BA98-D35A-443F-AD31-0D31EF0B85EC", + "name": "calendar-today", + "codepoint": "F00F6", + "aliases": [ + "calendar-day" + ], + "tags": [ + "Date \/ Time" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "F2D23B1E-EA12-4EF5-9365-E698D1CD1319", + "name": "calendar-week", + "codepoint": "F0A33", + "aliases": [ + "event-week" + ], + "tags": [ + "Date \/ Time" + ], + "author": "Simran", + "version": "2.6.95" + }, + { + "id": "7C244D7F-9332-4C73-AF3D-1DE3F6E365ED", + "name": "calendar-week-begin", + "codepoint": "F0A34", + "aliases": [ + "event-week-begin" + ], + "tags": [ + "Date \/ Time" + ], + "author": "Simran", + "version": "2.6.95" + }, + { + "id": "E873A542-F4E7-44F4-B7CD-19474188D5BC", + "name": "calendar-weekend", + "codepoint": "F0ED9", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Crissov", + "version": "3.8.95" + }, + { + "id": "3E8B49C8-08CA-4D96-BC1B-EB21909E0311", + "name": "calendar-weekend-outline", + "codepoint": "F0EDA", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Crissov", + "version": "3.8.95" + }, + { + "id": "B5ACE913-DBF1-4E73-BFE5-BB86F0EBF76E", + "name": "call-made", + "codepoint": "F00F7", + "aliases": [], + "tags": [ + "Cellphone \/ Phone", + "Arrow" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "8BEE5A5E-EC0A-4FC5-96BE-7F8C2A2EE52F", + "name": "call-merge", + "codepoint": "F00F8", + "aliases": [ + "merge-type" + ], + "tags": [ + "Cellphone \/ Phone", + "Arrow" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "CA2546B9-70B0-4E1A-B646-17163B0C76E4", + "name": "call-missed", + "codepoint": "F00F9", + "aliases": [], + "tags": [ + "Cellphone \/ Phone", + "Arrow" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "008CD0E5-C47B-44FB-AF43-A1221C527056", + "name": "call-received", + "codepoint": "F00FA", + "aliases": [], + "tags": [ + "Cellphone \/ Phone", + "Arrow" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "790BCBB6-8B08-4AEC-A322-99F584BB394B", + "name": "call-split", + "codepoint": "F00FB", + "aliases": [], + "tags": [ + "Cellphone \/ Phone", + "Arrow" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "89EE8EAB-CA5B-40C5-B114-1EC5248634BF", + "name": "camcorder", + "codepoint": "F00FC", + "aliases": [], + "tags": [ + "Video \/ Movie" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "BE1C767B-C032-487C-AB85-E2E960C9A89D", + "name": "camcorder-off", + "codepoint": "F00FF", + "aliases": [], + "tags": [ + "Video \/ Movie" + ], + "author": "Michael Irigoyen", + "version": "1.5.54" + }, + { + "id": "236D9E8E-E38C-4EA9-9539-0E8B1447003A", + "name": "camera", + "codepoint": "F0100", + "aliases": [ + "photography", + "camera-alt", + "local-see", + "photo-camera" + ], + "tags": [ + "Photography", + "Home Automation" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "E6F67D5D-0EED-450C-B39F-75D37E9B63CA", + "name": "camera-account", + "codepoint": "F08CB", + "aliases": [ + "camera-user" + ], + "tags": [ + "Account \/ User", + "Photography" + ], + "author": "Google", + "version": "2.3.50" + }, + { + "id": "4FCD7DBE-6B4C-41DB-BDD8-40ED820EC7F1", + "name": "camera-burst", + "codepoint": "F0693", + "aliases": [ + "burst-mode" + ], + "tags": [ + "Photography" + ], + "author": "Google", + "version": "1.7.12" + }, + { + "id": "28AACAD9-8E72-41FA-B736-55A4AFDAD6FF", + "name": "camera-control", + "codepoint": "F0B69", + "aliases": [], + "tags": [ + "Photography" + ], + "author": "Google", + "version": "3.0.39" + }, + { + "id": "8A2FFEED-01B4-44C0-A82A-2E03D8C2A447", + "name": "camera-document", + "codepoint": "F1871", + "aliases": [ + "overhead-projector" + ], + "tags": [ + "Photography" + ], + "author": "snis", + "version": "6.2.95" + }, + { + "id": "E18549B4-97EC-49C7-A870-5CA1FBDD86EA", + "name": "camera-document-off", + "codepoint": "F1872", + "aliases": [ + "overhead-projector-off" + ], + "tags": [ + "Photography" + ], + "author": "snis", + "version": "6.2.95" + }, + { + "id": "45456446-14D9-49F2-8842-93BAF8233F47", + "name": "camera-enhance", + "codepoint": "F0101", + "aliases": [], + "tags": [ + "Photography" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "5D466962-4E59-4103-8556-25032439677A", + "name": "camera-enhance-outline", + "codepoint": "F0B6A", + "aliases": [], + "tags": [ + "Photography" + ], + "author": "Google", + "version": "3.0.39" + }, + { + "id": "D4175840-8B51-4C1E-AFF2-A8142F5CCF2E", + "name": "camera-flip", + "codepoint": "F15D9", + "aliases": [ + "camera-sync", + "camera-refresh" + ], + "tags": [ + "Photography" + ], + "author": "Michael Irigoyen", + "version": "5.6.55" + }, + { + "id": "A40CFB47-3650-42BF-874C-C5BF09641708", + "name": "camera-flip-outline", + "codepoint": "F15DA", + "aliases": [ + "camera-sync-outline", + "camera-refresh-outline" + ], + "tags": [ + "Photography" + ], + "author": "Michael Irigoyen", + "version": "5.6.55" + }, + { + "id": "574F4B2D-70FE-41E3-AFB4-EC1E2AB897AB", + "name": "camera-front", + "codepoint": "F0102", + "aliases": [], + "tags": [ + "Photography" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "2C6477B5-AA9E-4EDD-A73A-79F2ED5E5F2A", + "name": "camera-front-variant", + "codepoint": "F0103", + "aliases": [], + "tags": [ + "Photography" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "B4EDBFFC-CF00-45F3-93A7-6ADD45108FEE", + "name": "camera-gopro", + "codepoint": "F07A1", + "aliases": [], + "tags": [ + "Photography", + "Device \/ Tech" + ], + "author": "Michael Richins", + "version": "2.0.46" + }, + { + "id": "3399CF92-5E35-4C1A-A796-FB641666AB63", + "name": "camera-image", + "codepoint": "F08CC", + "aliases": [], + "tags": [ + "Photography" + ], + "author": "Google", + "version": "2.3.50" + }, + { + "id": "E011977B-432E-470C-A4F6-9C7A4F8BB519", + "name": "camera-iris", + "codepoint": "F0104", + "aliases": [], + "tags": [ + "Photography" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "304F1239-9ADE-4371-AFA5-AD2BC3343D24", + "name": "camera-marker", + "codepoint": "F19A7", + "aliases": [ + "camera-location" + ], + "tags": [ + "Photography" + ], + "author": "Simran", + "version": "6.5.95" + }, + { + "id": "FC72F661-E548-4755-9919-B9960175B831", + "name": "camera-marker-outline", + "codepoint": "F19A8", + "aliases": [ + "camera-location-outline" + ], + "tags": [ + "Photography" + ], + "author": "Simran", + "version": "6.5.95" + }, + { + "id": "D178034B-0B93-40F5-BBF1-D28B25A86647", + "name": "camera-metering-center", + "codepoint": "F07A2", + "aliases": [ + "camera-metering-centre" + ], + "tags": [ + "Photography" + ], + "author": "Andy Martinez", + "version": "2.0.46" + }, + { + "id": "700D143A-8347-4A79-9EF8-844E1B436524", + "name": "camera-metering-matrix", + "codepoint": "F07A3", + "aliases": [], + "tags": [ + "Photography" + ], + "author": "Andy Martinez", + "version": "2.0.46" + }, + { + "id": "EA33D5EE-5E13-4D82-A552-C3B16772926F", + "name": "camera-metering-partial", + "codepoint": "F07A4", + "aliases": [], + "tags": [ + "Photography" + ], + "author": "Andy Martinez", + "version": "2.0.46" + }, + { + "id": "C1313085-6C7F-4D60-A278-A39361B57DA9", + "name": "camera-metering-spot", + "codepoint": "F07A5", + "aliases": [], + "tags": [ + "Photography" + ], + "author": "Andy Martinez", + "version": "2.0.46" + }, + { + "id": "461A25B1-59F6-49F1-A917-BED92315AA63", + "name": "camera-off", + "codepoint": "F05DF", + "aliases": [], + "tags": [ + "Photography" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "F90640B1-1F16-41D0-98CF-B4C342BB5E61", + "name": "camera-off-outline", + "codepoint": "F19BF", + "aliases": [], + "tags": [ + "Photography" + ], + "author": "Colton Wiscombe", + "version": "6.5.95" + }, + { + "id": "5ABA45CF-038B-4665-BC3B-7D34CEF3882E", + "name": "camera-outline", + "codepoint": "F0D5D", + "aliases": [], + "tags": [ + "Photography" + ], + "author": "Google", + "version": "3.4.93" + }, + { + "id": "B58A0D5C-B137-42DD-A43B-8DD296D7684A", + "name": "camera-party-mode", + "codepoint": "F0105", + "aliases": [], + "tags": [ + "Photography" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "262BE971-8B8E-4DAC-8897-A841E5EBEB27", + "name": "camera-plus", + "codepoint": "F0EDB", + "aliases": [], + "tags": [ + "Photography" + ], + "author": "Google", + "version": "3.8.95" + }, + { + "id": "AD12EDBC-2323-410D-B0F2-F84ED6AEC170", + "name": "camera-plus-outline", + "codepoint": "F0EDC", + "aliases": [], + "tags": [ + "Photography" + ], + "author": "Google", + "version": "3.8.95" + }, + { + "id": "B4CA0FB9-D119-426C-9043-16D90F5086B8", + "name": "camera-rear", + "codepoint": "F0106", + "aliases": [], + "tags": [ + "Photography" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "B7DB5F20-5D64-4096-959F-60BB040B320F", + "name": "camera-rear-variant", + "codepoint": "F0107", + "aliases": [], + "tags": [ + "Photography" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "CA03F06D-AD3C-4D69-B6A4-721668AB111C", + "name": "camera-retake", + "codepoint": "F0E19", + "aliases": [], + "tags": [ + "Photography" + ], + "author": "Michael Richins", + "version": "3.6.95" + }, + { + "id": "0C602606-75CC-4D76-B79B-6550127ED464", + "name": "camera-retake-outline", + "codepoint": "F0E1A", + "aliases": [], + "tags": [ + "Photography" + ], + "author": "Michael Richins", + "version": "3.6.95" + }, + { + "id": "68BB6884-5CEA-4B2A-8F22-46B6A98CDA75", + "name": "camera-switch", + "codepoint": "F0108", + "aliases": [ + "switch-camera" + ], + "tags": [ + "Photography" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "CABA2832-65F9-4196-9681-51C5E2C1CFB2", + "name": "camera-switch-outline", + "codepoint": "F084A", + "aliases": [], + "tags": [ + "Photography" + ], + "author": "Google", + "version": "2.1.99" + }, + { + "id": "6A8FC2AF-724C-46A2-9F04-C34E7D658679", + "name": "camera-timer", + "codepoint": "F0109", + "aliases": [], + "tags": [ + "Date \/ Time", + "Photography" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "5125EF68-0BAB-4C17-BA18-022EAAAE36D5", + "name": "camera-wireless", + "codepoint": "F0DB6", + "aliases": [], + "tags": [ + "Photography" + ], + "author": "Google", + "version": "3.5.94" + }, + { + "id": "A8BB090E-25FC-4517-A1C9-B2AA1ABD8AFA", + "name": "camera-wireless-outline", + "codepoint": "F0DB7", + "aliases": [], + "tags": [ + "Photography" + ], + "author": "Google", + "version": "3.5.94" + }, + { + "id": "E5958680-B397-40E1-BDB0-49B05339C973", + "name": "campfire", + "codepoint": "F0EDD", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.8.95" + }, + { + "id": "02F70DD2-E16E-43FD-9C2A-267C965E3919", + "name": "cancel", + "codepoint": "F073A", + "aliases": [ + "prohibited", + "ban", + "do-not-disturb-alt", + "denied", + "block", + "forbid", + "no", + "clear" + ], + "tags": [], + "author": "Google", + "version": "1.9.32" + }, + { + "id": "1D56356A-1601-41FC-9D98-67736772260B", + "name": "candelabra", + "codepoint": "F17D2", + "aliases": [ + "candle", + "candelabrum" + ], + "tags": [ + "Home Automation", + "Holiday" + ], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "CF2B4CE1-69FF-472B-BE94-620D71F5A42F", + "name": "candelabra-fire", + "codepoint": "F17D3", + "aliases": [ + "candelabrum-fire", + "candelabrum-flame", + "candelabra-flame", + "candle-fire", + "candle-flame" + ], + "tags": [ + "Home Automation", + "Holiday" + ], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "4FB0AA38-406A-4877-8B0C-15C7ED95F22C", + "name": "candle", + "codepoint": "F05E2", + "aliases": [ + "candle-flame", + "candle-fire" + ], + "tags": [ + "Holiday" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "AC3D0F93-E7EB-42DE-BBFE-FEBAE7966B35", + "name": "candy", + "codepoint": "F1970", + "aliases": [ + "treat", + "chocolate" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Michael Irigoyen", + "version": "6.5.95" + }, + { + "id": "9C3124FB-E9F8-468A-9D51-2CAD3342BEE7", + "name": "candy-off", + "codepoint": "F1971", + "aliases": [ + "chocolate-off", + "treat-off" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Michael Irigoyen", + "version": "6.5.95" + }, + { + "id": "7BA63C38-546A-47FE-8FA7-D3E744B2C96E", + "name": "candy-off-outline", + "codepoint": "F1972", + "aliases": [ + "chocolate-off-outline", + "treat-off-outline", + "navi-off" + ], + "tags": [ + "Food \/ Drink", + "Gaming \/ RPG" + ], + "author": "Michael Irigoyen", + "version": "6.5.95" + }, + { + "id": "B2A0C20C-2A90-4A9F-8C95-179D2ED89002", + "name": "candy-outline", + "codepoint": "F1973", + "aliases": [ + "chocolate-outline", + "treat-outline", + "navi", + "hey-listen", + "fairy" + ], + "tags": [ + "Food \/ Drink", + "Gaming \/ RPG" + ], + "author": "Michael Irigoyen", + "version": "6.5.95" + }, + { + "id": "8CAC723B-0FF5-493B-A3A2-5772FDE46A0F", + "name": "candycane", + "codepoint": "F010A", + "aliases": [], + "tags": [ + "Holiday", + "Food \/ Drink" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "4C2DC909-0C3F-431F-A37B-5B66C9F33E37", + "name": "cannabis", + "codepoint": "F07A6", + "aliases": [ + "weed", + "pot", + "marijuana" + ], + "tags": [ + "Nature", + "Medical \/ Hospital" + ], + "author": "Austin Andrews", + "version": "2.0.46" + }, + { + "id": "1DA6A01B-2804-4C68-A60E-20DBBB6938E5", + "name": "cannabis-off", + "codepoint": "F166E", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "74D4E706-53B2-4349-95B2-026B3057D9B2", + "name": "caps-lock", + "codepoint": "F0A9B", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Michael Irigoyen", + "version": "2.7.94" + }, + { + "id": "FCF4FF57-4547-4C11-A20A-3D26252780EC", + "name": "car", + "codepoint": "F010B", + "aliases": [ + "directions-car", + "drive-eta", + "time-to-leave" + ], + "tags": [ + "Transportation + Road", + "Navigation", + "Automotive" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "02A38C46-7F26-4A95-9025-33181E528B1C", + "name": "car-2-plus", + "codepoint": "F1015", + "aliases": [ + "hov-lane", + "high-occupancy-vehicle-lane", + "carpool-lane" + ], + "tags": [ + "Transportation + Road", + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "4.1.95" + }, + { + "id": "9E971816-54E0-4C43-A6BB-AD821E17DC30", + "name": "car-3-plus", + "codepoint": "F1016", + "aliases": [ + "hov-lane", + "high-occupancy-vehicle-lane", + "carpool-lane" + ], + "tags": [ + "Transportation + Road", + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "4.1.95" + }, + { + "id": "F647E77D-3416-4DFD-8E9C-0BB1A1FDA6A8", + "name": "car-arrow-left", + "codepoint": "F13B2", + "aliases": [], + "tags": [ + "Automotive", + "Transportation + Road" + ], + "author": "Michael Irigoyen", + "version": "5.0.45" + }, + { + "id": "04AA17AE-F0E4-4B44-9440-812E1F875884", + "name": "car-arrow-right", + "codepoint": "F13B3", + "aliases": [], + "tags": [ + "Automotive", + "Transportation + Road" + ], + "author": "Michael Irigoyen", + "version": "5.0.45" + }, + { + "id": "E41B22B2-CAC1-4D56-877B-2DC4E5E4BEC2", + "name": "car-back", + "codepoint": "F0E1B", + "aliases": [], + "tags": [ + "Automotive", + "Transportation + Road" + ], + "author": "Michael Richins", + "version": "3.6.95" + }, + { + "id": "4AF128D8-1E70-4396-BB5A-F96A7D0F9BCB", + "name": "car-battery", + "codepoint": "F010C", + "aliases": [], + "tags": [ + "Battery", + "Automotive" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "170D1972-AFA7-417C-BCC4-B07689D8B6F4", + "name": "car-brake-abs", + "codepoint": "F0C47", + "aliases": [ + "anti-lock-brake-system", + "anti-lock-braking-system" + ], + "tags": [ + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "843DC5E8-723D-44A1-A959-A49C662712D1", + "name": "car-brake-alert", + "codepoint": "F0C48", + "aliases": [ + "car-parking-brake", + "car-handbrake", + "car-hand-brake", + "car-emergency-brake", + "car-brake-warning" + ], + "tags": [ + "Automotive", + "Alert \/ Error" + ], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "4FBEBCCE-0C62-45B7-AD52-06CD18B8927C", + "name": "car-brake-fluid-level", + "codepoint": "F1909", + "aliases": [], + "tags": [ + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "4F3D37E3-F34C-4720-BC92-1173A85F88FC", + "name": "car-brake-hold", + "codepoint": "F0D5E", + "aliases": [], + "tags": [ + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "3.4.93" + }, + { + "id": "A7AFFF81-AC39-478A-AF75-E33E20A44D09", + "name": "car-brake-low-pressure", + "codepoint": "F190A", + "aliases": [], + "tags": [ + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "CBCA05E4-718D-4727-8A1B-EDA815D00AE1", + "name": "car-brake-parking", + "codepoint": "F0D5F", + "aliases": [], + "tags": [ + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "3.4.93" + }, + { + "id": "8627DD5D-1BE6-4FBB-81A6-7D40ED3C1E69", + "name": "car-brake-retarder", + "codepoint": "F1017", + "aliases": [], + "tags": [ + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "4.1.95" + }, + { + "id": "663F3528-508B-49EE-8437-9B2E757E7AAD", + "name": "car-brake-temperature", + "codepoint": "F190B", + "aliases": [], + "tags": [ + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "7858E89E-A9E6-490D-ABCF-42591D9BBA5C", + "name": "car-brake-worn-linings", + "codepoint": "F190C", + "aliases": [], + "tags": [ + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "6A83FE13-CCAF-473E-B660-F2AD8EE561AD", + "name": "car-child-seat", + "codepoint": "F0FA3", + "aliases": [], + "tags": [ + "Automotive", + "People \/ Family" + ], + "author": "Michael Irigoyen", + "version": "4.0.96" + }, + { + "id": "3AB7B60B-344F-4F2B-AFAD-7DB7BA167E68", + "name": "car-clock", + "codepoint": "F1974", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.5.95" + }, + { + "id": "862F1CFE-643B-44BB-9B46-33BF1C75CEE2", + "name": "car-clutch", + "codepoint": "F1018", + "aliases": [], + "tags": [ + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "4.1.95" + }, + { + "id": "B854CD8C-6731-4C70-917F-9033015E94F4", + "name": "car-cog", + "codepoint": "F13CC", + "aliases": [ + "car-settings" + ], + "tags": [ + "Automotive", + "Settings", + "Transportation + Road" + ], + "author": "Simran", + "version": "5.1.45" + }, + { + "id": "8C8468C7-8A41-42A1-8C33-4AAE55FF9E2A", + "name": "car-connected", + "codepoint": "F010D", + "aliases": [], + "tags": [ + "Transportation + Road", + "Automotive" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "D7E88B5B-B6F3-4C55-AE93-39A78593B351", + "name": "car-convertible", + "codepoint": "F07A7", + "aliases": [], + "tags": [ + "Transportation + Road", + "Automotive" + ], + "author": "GreenTurtwig", + "version": "2.0.46" + }, + { + "id": "1DA47513-FB2A-4A20-926F-3D2E90D40F26", + "name": "car-coolant-level", + "codepoint": "F1019", + "aliases": [], + "tags": [ + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "4.1.95" + }, + { + "id": "7FCD959A-B0AA-43AD-B448-5B51A1A2C023", + "name": "car-cruise-control", + "codepoint": "F0D60", + "aliases": [], + "tags": [ + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "3.4.93" + }, + { + "id": "1B289520-CE81-4385-88B3-923CB0FD6233", + "name": "car-defrost-front", + "codepoint": "F0D61", + "aliases": [], + "tags": [ + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "3.4.93" + }, + { + "id": "8B6938C0-6C97-41A4-A22F-83D6A9F1AC3F", + "name": "car-defrost-rear", + "codepoint": "F0D62", + "aliases": [], + "tags": [ + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "3.4.93" + }, + { + "id": "AA43B04E-7C56-4DFB-83FC-081E3A4A3F48", + "name": "car-door", + "codepoint": "F0B6B", + "aliases": [], + "tags": [ + "Automotive" + ], + "author": "Austin Andrews", + "version": "3.0.39" + }, + { + "id": "76A1EC75-D6D2-465E-89F7-EBE2AF145C4C", + "name": "car-door-lock", + "codepoint": "F109D", + "aliases": [], + "tags": [ + "Automotive", + "Lock" + ], + "author": "Michael Richins", + "version": "4.2.95" + }, + { + "id": "48583637-1477-451A-8E75-765EC4EB0585", + "name": "car-electric", + "codepoint": "F0B6C", + "aliases": [], + "tags": [ + "Transportation + Road", + "Automotive" + ], + "author": "Google", + "version": "3.0.39" + }, + { + "id": "D97919E2-BB44-4ABE-86AB-68CD49AC4BE7", + "name": "car-electric-outline", + "codepoint": "F15B5", + "aliases": [], + "tags": [ + "Transportation + Road" + ], + "author": "Google", + "version": "5.6.55" + }, + { + "id": "355D6842-8858-4C79-B684-0E0F5E03801D", + "name": "car-emergency", + "codepoint": "F160F", + "aliases": [ + "car-police" + ], + "tags": [ + "Transportation + Road" + ], + "author": "GreenTurtwig", + "version": "5.6.55" + }, + { + "id": "5BF118F1-1115-4928-8755-34AF926CF13D", + "name": "car-esp", + "codepoint": "F0C49", + "aliases": [ + "electronic-stability-program" + ], + "tags": [ + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "90BBBADD-0FCD-4147-9D6E-5DAFCACF2B0B", + "name": "car-estate", + "codepoint": "F07A8", + "aliases": [ + "car-suv", + "car-sports-utility-vehicle" + ], + "tags": [ + "Transportation + Road", + "Automotive" + ], + "author": "GreenTurtwig", + "version": "2.0.46" + }, + { + "id": "21A2527E-9AC0-4FFA-84CB-246608BEB91D", + "name": "car-hatchback", + "codepoint": "F07A9", + "aliases": [], + "tags": [ + "Transportation + Road", + "Automotive" + ], + "author": "GreenTurtwig", + "version": "2.0.46" + }, + { + "id": "6C179C94-30C5-4DD8-B80E-9FFF69ABE0E1", + "name": "car-info", + "codepoint": "F11BE", + "aliases": [], + "tags": [ + "Automotive" + ], + "author": "Michael Richins", + "version": "4.5.95" + }, + { + "id": "3B659932-957C-4DD8-81CF-7ECABC572BFC", + "name": "car-key", + "codepoint": "F0B6D", + "aliases": [ + "car-rental", + "rent-a-car" + ], + "tags": [ + "Transportation + Road", + "Automotive" + ], + "author": "GreenTurtwig", + "version": "3.0.39" + }, + { + "id": "10F38BAD-F9E1-4715-9BE9-3784C788D59A", + "name": "car-lifted-pickup", + "codepoint": "F152D", + "aliases": [], + "tags": [ + "Automotive" + ], + "author": "Austin Andrews", + "version": "5.4.55" + }, + { + "id": "311C671E-9503-485D-8C7D-359E2A3A6D36", + "name": "car-light-alert", + "codepoint": "F190D", + "aliases": [], + "tags": [ + "Alert \/ Error", + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "DA708BEF-4826-49CF-8872-C42996C9616F", + "name": "car-light-dimmed", + "codepoint": "F0C4A", + "aliases": [ + "head-light-dimmed", + "low-beam" + ], + "tags": [ + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "3DAC6713-744B-485F-A985-7E2A16F14D6A", + "name": "car-light-fog", + "codepoint": "F0C4B", + "aliases": [ + "head-light-fog" + ], + "tags": [ + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "7EF72FB8-3767-495E-9F80-888F6924B856", + "name": "car-light-high", + "codepoint": "F0C4C", + "aliases": [ + "head-light-high", + "high-beam" + ], + "tags": [ + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "43758944-946B-4883-A77C-F6F28F175920", + "name": "car-limousine", + "codepoint": "F08CD", + "aliases": [], + "tags": [ + "Transportation + Road", + "Automotive" + ], + "author": "GreenTurtwig", + "version": "2.3.50" + }, + { + "id": "B31CB4B0-9987-4F99-8409-FA4601E34064", + "name": "car-multiple", + "codepoint": "F0B6E", + "aliases": [], + "tags": [ + "Transportation + Road", + "Automotive" + ], + "author": "Michael Richins", + "version": "3.0.39" + }, + { + "id": "5426595C-DCD3-4CFE-990E-775C80BDCDC6", + "name": "car-off", + "codepoint": "F0E1C", + "aliases": [], + "tags": [ + "Automotive" + ], + "author": "Michael Richins", + "version": "3.6.95" + }, + { + "id": "8EDBF463-60A3-4F49-9198-B52F8E6FB68B", + "name": "car-outline", + "codepoint": "F14ED", + "aliases": [], + "tags": [ + "Automotive" + ], + "author": "Google", + "version": "5.4.55" + }, + { + "id": "03116932-7E19-45C7-9E34-02308FCDD7F4", + "name": "car-parking-lights", + "codepoint": "F0D63", + "aliases": [], + "tags": [ + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "3.4.93" + }, + { + "id": "76BB371D-335C-4F53-A439-2A681778C6BC", + "name": "car-pickup", + "codepoint": "F07AA", + "aliases": [], + "tags": [ + "Transportation + Road", + "Automotive" + ], + "author": "GreenTurtwig", + "version": "2.0.46" + }, + { + "id": "F0D6A2CA-711D-440E-B4A2-586C071E1192", + "name": "car-seat", + "codepoint": "F0FA4", + "aliases": [], + "tags": [ + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "4.0.96" + }, + { + "id": "3B08983F-F281-48F5-8A34-383591971006", + "name": "car-seat-cooler", + "codepoint": "F0FA5", + "aliases": [], + "tags": [ + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "4.0.96" + }, + { + "id": "300D30D3-28E2-4D45-A31D-9FF1E92AC5BE", + "name": "car-seat-heater", + "codepoint": "F0FA6", + "aliases": [], + "tags": [ + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "4.0.96" + }, + { + "id": "611D7DCF-0792-430C-AB3E-27DB222A197D", + "name": "car-select", + "codepoint": "F1879", + "aliases": [ + "car-location" + ], + "tags": [ + "Automotive" + ], + "author": "Jeff Anders", + "version": "6.2.95" + }, + { + "id": "4ED4D6FD-9E30-4D99-9FD0-11B316BACB96", + "name": "car-settings", + "codepoint": "F13CD", + "aliases": [], + "tags": [ + "Automotive", + "Settings" + ], + "author": "Simran", + "version": "5.1.45" + }, + { + "id": "DF11B72C-D029-49BB-9657-6A267CC1DEA4", + "name": "car-shift-pattern", + "codepoint": "F0F40", + "aliases": [ + "car-transmission", + "car-manual-transmission" + ], + "tags": [ + "Automotive" + ], + "author": "Colton Wiscombe", + "version": "3.9.97" + }, + { + "id": "CB49A868-3317-4445-BFED-13CB6533000E", + "name": "car-side", + "codepoint": "F07AB", + "aliases": [ + "car-saloon" + ], + "tags": [ + "Transportation + Road", + "Automotive" + ], + "author": "GreenTurtwig", + "version": "2.0.46" + }, + { + "id": "69EE759D-1F0E-414B-A014-5EB611D6286E", + "name": "car-speed-limiter", + "codepoint": "F190E", + "aliases": [], + "tags": [ + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "97F5ED58-F2AB-40AC-A882-4A90DB5D2018", + "name": "car-sports", + "codepoint": "F07AC", + "aliases": [], + "tags": [ + "Transportation + Road", + "Sport", + "Automotive" + ], + "author": "GreenTurtwig", + "version": "2.0.46" + }, + { + "id": "93700192-0A90-4FC4-944C-894F29BB478F", + "name": "car-tire-alert", + "codepoint": "F0C4D", + "aliases": [ + "car-tyre-alert", + "car-tyre-warning", + "car-tire-warning" + ], + "tags": [ + "Automotive", + "Alert \/ Error" + ], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "D9DC5111-14E6-4585-A79B-489FC04C1CE3", + "name": "car-traction-control", + "codepoint": "F0D64", + "aliases": [], + "tags": [ + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "3.4.93" + }, + { + "id": "1D1E80DE-A3A0-4487-9A94-7C9C3F5E0A59", + "name": "car-turbocharger", + "codepoint": "F101A", + "aliases": [], + "tags": [ + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "4.1.95" + }, + { + "id": "95E617D7-9A48-458E-96C5-A8CBBEF3A852", + "name": "car-wash", + "codepoint": "F010E", + "aliases": [ + "local-car-wash" + ], + "tags": [ + "Transportation + Road", + "Places", + "Automotive" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "6E8AA995-39A0-44C4-A0FF-3BC1CA7787DE", + "name": "car-windshield", + "codepoint": "F101B", + "aliases": [ + "car-front-glass" + ], + "tags": [ + "Automotive" + ], + "author": "Michael Richins", + "version": "4.1.95" + }, + { + "id": "55F7CDA2-F41C-42C4-8154-1F8B1C603F25", + "name": "car-windshield-outline", + "codepoint": "F101C", + "aliases": [ + "car-front-glass-outline" + ], + "tags": [ + "Automotive" + ], + "author": "Michael Richins", + "version": "4.1.95" + }, + { + "id": "E0C3B158-D502-4354-94AC-994A48BD90FE", + "name": "car-wireless", + "codepoint": "F1878", + "aliases": [ + "car-autonomous", + "car-self-driving", + "car-smart" + ], + "tags": [ + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "6.2.95" + }, + { + "id": "34DABCA7-B5EF-42DD-9731-ABAA7F3DD322", + "name": "car-wrench", + "codepoint": "F1814", + "aliases": [ + "car-repair", + "mechanic" + ], + "tags": [ + "Automotive" + ], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "077EABE1-1DBC-4AC9-AA0E-B45386391968", + "name": "carabiner", + "codepoint": "F14C0", + "aliases": [ + "karabiner", + "rock-climbing" + ], + "tags": [ + "Sport" + ], + "author": "Google", + "version": "5.3.45" + }, + { + "id": "2E5B9249-0FFB-48D0-8A61-2019FD9ED32F", + "name": "caravan", + "codepoint": "F07AD", + "aliases": [], + "tags": [ + "Transportation + Road", + "Home Automation", + "Automotive" + ], + "author": "GreenTurtwig", + "version": "2.0.46" + }, + { + "id": "AB226798-9B8A-4929-8880-6665C1114776", + "name": "card", + "codepoint": "F0B6F", + "aliases": [ + "button" + ], + "tags": [ + "Form" + ], + "author": "Rynco Li", + "version": "3.0.39" + }, + { + "id": "4ACD18FB-87D4-46F1-9231-8BD0A91867A9", + "name": "card-account-details", + "codepoint": "F05D2", + "aliases": [ + "identification-card", + "user-card-details", + "id-card", + "person-card-details", + "drivers-license", + "business-card" + ], + "tags": [ + "Account \/ User" + ], + "author": "Christopher Schreiner", + "version": "1.5.54" + }, + { + "id": "6BD2BC65-C99A-42FB-A37E-85F5E8C91D32", + "name": "card-account-details-outline", + "codepoint": "F0DAB", + "aliases": [ + "identification-card-outline", + "user-card-details-outline", + "id-card-outline", + "person-card-details-outline", + "drivers-license-outline", + "business-card-outline" + ], + "tags": [ + "Account \/ User" + ], + "author": "Michael Richins", + "version": "3.5.94" + }, + { + "id": "951C68F1-876F-440E-A4D9-B724BB6D6181", + "name": "card-account-details-star", + "codepoint": "F02A3", + "aliases": [ + "card-account-details-favorite" + ], + "tags": [ + "Account \/ User" + ], + "author": "Michael Richins", + "version": "1.5.54" + }, + { + "id": "97C9CAC2-9F94-40EA-9A08-1A9BDD208743", + "name": "card-account-details-star-outline", + "codepoint": "F06DB", + "aliases": [ + "card-account-details-favorite-outline" + ], + "tags": [ + "Account \/ User" + ], + "author": "Michael Richins", + "version": "1.8.36" + }, + { + "id": "81840940-8672-42C0-B657-15E94B3638D6", + "name": "card-account-mail", + "codepoint": "F018E", + "aliases": [ + "contact-mail" + ], + "tags": [ + "Account \/ User" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "F43579AB-0098-44B4-910C-3B24193C3B79", + "name": "card-account-mail-outline", + "codepoint": "F0E98", + "aliases": [ + "contact-mail-outline" + ], + "tags": [ + "Account \/ User" + ], + "author": "Google", + "version": "3.7.94" + }, + { + "id": "D992EB08-7BDB-4D44-B3C1-A123F80C17FA", + "name": "card-account-phone", + "codepoint": "F0E99", + "aliases": [ + "contact-phone" + ], + "tags": [ + "Account \/ User" + ], + "author": "Google", + "version": "3.7.94" + }, + { + "id": "ABC0498A-9F66-489B-A78E-91B3415EE3E4", + "name": "card-account-phone-outline", + "codepoint": "F0E9A", + "aliases": [ + "contact-phone-outline" + ], + "tags": [ + "Account \/ User" + ], + "author": "Google", + "version": "3.7.94" + }, + { + "id": "BFFB5C41-DA26-4980-8B25-1DCB21B4673E", + "name": "card-bulleted", + "codepoint": "F0B70", + "aliases": [], + "tags": [], + "author": "Rynco Li", + "version": "3.0.39" + }, + { + "id": "487C3E75-13DF-4C18-98E4-55CB048367EA", + "name": "card-bulleted-off", + "codepoint": "F0B71", + "aliases": [], + "tags": [], + "author": "Rynco Li", + "version": "3.0.39" + }, + { + "id": "A6845501-AB5C-4511-863D-25E6E0F4F74C", + "name": "card-bulleted-off-outline", + "codepoint": "F0B72", + "aliases": [], + "tags": [], + "author": "Rynco Li", + "version": "3.0.39" + }, + { + "id": "5A5D5F82-1BBA-4661-A4B7-6AC29484EBB3", + "name": "card-bulleted-outline", + "codepoint": "F0B73", + "aliases": [], + "tags": [], + "author": "Rynco Li", + "version": "3.0.39" + }, + { + "id": "A8645D1A-6D02-401F-82F6-2564C6EC20D8", + "name": "card-bulleted-settings", + "codepoint": "F0B74", + "aliases": [], + "tags": [ + "Settings" + ], + "author": "Rynco Li", + "version": "3.0.39" + }, + { + "id": "5C008C35-201B-4DDB-A37B-6E513C9304F2", + "name": "card-bulleted-settings-outline", + "codepoint": "F0B75", + "aliases": [], + "tags": [ + "Settings" + ], + "author": "Rynco Li", + "version": "3.0.39" + }, + { + "id": "7538FC94-FD58-41FD-9585-1F6B6A0AA784", + "name": "card-minus", + "codepoint": "F1600", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.6.55" + }, + { + "id": "DBAC0B3F-A11E-4BFF-B5A5-802C28802CFC", + "name": "card-minus-outline", + "codepoint": "F1601", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.6.55" + }, + { + "id": "CCB6A7E7-E036-462A-80BB-8EBFBADD61CB", + "name": "card-multiple", + "codepoint": "F17F1", + "aliases": [], + "tags": [], + "author": "Jeff Anders", + "version": "6.1.95" + }, + { + "id": "5A952723-5033-43DA-B1A8-A9DD1A5B3DB6", + "name": "card-multiple-outline", + "codepoint": "F17F2", + "aliases": [], + "tags": [], + "author": "Jeff Anders", + "version": "6.1.95" + }, + { + "id": "B426A851-795C-4627-9F65-EF585020DE63", + "name": "card-off", + "codepoint": "F1602", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.6.55" + }, + { + "id": "DD1C1DF5-C30E-421A-9FA7-AC8F0D021B95", + "name": "card-off-outline", + "codepoint": "F1603", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.6.55" + }, + { + "id": "EB9242D1-9D25-4141-A1A0-06636EC84541", + "name": "card-outline", + "codepoint": "F0B76", + "aliases": [ + "button-outline" + ], + "tags": [ + "Form" + ], + "author": "Rynco Li", + "version": "3.0.39" + }, + { + "id": "3B4FC4CD-DB60-407A-B230-C6CA593977DD", + "name": "card-plus", + "codepoint": "F11FF", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.6.95" + }, + { + "id": "DD8BE7C3-7AE2-420C-8DA2-B3AA4EEC5614", + "name": "card-plus-outline", + "codepoint": "F1200", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.6.95" + }, + { + "id": "6902F560-9012-4F0B-8E93-6B0B7641C019", + "name": "card-remove", + "codepoint": "F1604", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.6.55" + }, + { + "id": "84C0BF2A-B9FB-4E01-9961-A4146CB9BCC3", + "name": "card-remove-outline", + "codepoint": "F1605", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.6.55" + }, + { + "id": "2A09F869-B221-4ABC-B803-16560B7BA900", + "name": "card-search", + "codepoint": "F1074", + "aliases": [ + "pageview" + ], + "tags": [], + "author": "Google", + "version": "4.2.95" + }, + { + "id": "3EE58157-57AF-420D-9F5B-C545BCE7D395", + "name": "card-search-outline", + "codepoint": "F1075", + "aliases": [ + "pageview-outline" + ], + "tags": [], + "author": "Google", + "version": "4.2.95" + }, + { + "id": "EF0C4465-ACEB-44FA-BA7F-A0422E4481F6", + "name": "card-text", + "codepoint": "F0B77", + "aliases": [], + "tags": [], + "author": "Rynco Li", + "version": "3.0.39" + }, + { + "id": "45A9D669-8244-476D-A148-21EAB63F819B", + "name": "card-text-outline", + "codepoint": "F0B78", + "aliases": [], + "tags": [], + "author": "Rynco Li", + "version": "3.0.39" + }, + { + "id": "7E04A92C-1DC5-4A5F-84B0-57A50545EBE4", + "name": "cards", + "codepoint": "F0638", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Simran", + "version": "1.6.50" + }, + { + "id": "FD5114FD-37CB-4346-BC73-58E1EED49CF3", + "name": "cards-club", + "codepoint": "F08CE", + "aliases": [ + "suit-clubs", + "poker-club" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Nick", + "version": "2.3.50" + }, + { + "id": "6F2A121B-8E9C-43C3-8566-5AA696997778", + "name": "cards-club-outline", + "codepoint": "F189F", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.3.95" + }, + { + "id": "0934FB0D-8585-4064-989F-054E52D16FDB", + "name": "cards-diamond", + "codepoint": "F08CF", + "aliases": [ + "suit-diamonds", + "hov-lane", + "high-occupancy-vehicle-lane", + "carpool-lane", + "poker-diamond" + ], + "tags": [ + "Gaming \/ RPG", + "Transportation + Road" + ], + "author": "Nick", + "version": "2.3.50" + }, + { + "id": "529FA74E-39AF-4AF4-BAD3-637FDFBD53AE", + "name": "cards-diamond-outline", + "codepoint": "F101D", + "aliases": [ + "hov-lane-outline", + "high-occupancy-vehicle-lane-outline", + "carpool-lane-outline", + "poker-diamond-outline" + ], + "tags": [ + "Transportation + Road" + ], + "author": "Michael Richins", + "version": "4.1.95" + }, + { + "id": "152E7662-6FDD-478C-A945-68F6B04CB073", + "name": "cards-heart", + "codepoint": "F08D0", + "aliases": [ + "suit-hearts", + "poker-heart" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Nick", + "version": "2.3.50" + }, + { + "id": "BA1E8534-7828-4FE0-A0D3-E016FA76CE8C", + "name": "cards-heart-outline", + "codepoint": "F18A0", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.3.95" + }, + { + "id": "BB07EFB4-5078-47BA-B441-93D4957AF7F9", + "name": "cards-outline", + "codepoint": "F0639", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Simran", + "version": "1.6.50" + }, + { + "id": "F3847846-75CC-462A-A4E7-74A2AF93AC5A", + "name": "cards-playing", + "codepoint": "F18A1", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Michael Irigoyen", + "version": "6.3.95" + }, + { + "id": "CCBA1AB3-8133-4FB0-BB19-DE8D42AD1ADD", + "name": "cards-playing-club", + "codepoint": "F18A2", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "GreenTurtwig", + "version": "6.3.95" + }, + { + "id": "52FA2B41-3111-4D72-800A-91E9665CDA06", + "name": "cards-playing-club-multiple", + "codepoint": "F18A3", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "GreenTurtwig", + "version": "6.3.95" + }, + { + "id": "2521E853-62E5-4CDD-9EE9-8F43FC2FB8EB", + "name": "cards-playing-club-multiple-outline", + "codepoint": "F18A4", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "GreenTurtwig", + "version": "6.3.95" + }, + { + "id": "BDB29BCE-FA8C-4CFB-8B23-A0DC648BC203", + "name": "cards-playing-club-outline", + "codepoint": "F18A5", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "GreenTurtwig", + "version": "6.3.95" + }, + { + "id": "AF3E53EC-69B3-470E-820E-F106CF69D453", + "name": "cards-playing-diamond", + "codepoint": "F18A6", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "GreenTurtwig", + "version": "6.3.95" + }, + { + "id": "FB787ECA-1A04-48A9-8438-F3EC3475D81C", + "name": "cards-playing-diamond-multiple", + "codepoint": "F18A7", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "GreenTurtwig", + "version": "6.3.95" + }, + { + "id": "84440A36-7850-44EB-A269-B58893D0FEDC", + "name": "cards-playing-diamond-multiple-outline", + "codepoint": "F18A8", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "GreenTurtwig", + "version": "6.3.95" + }, + { + "id": "546D65EC-4458-49DA-AC96-54D8DB955FCA", + "name": "cards-playing-diamond-outline", + "codepoint": "F18A9", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "GreenTurtwig", + "version": "6.3.95" + }, + { + "id": "638C8BA0-9D3F-46FF-98F2-2A732D4116F4", + "name": "cards-playing-heart", + "codepoint": "F18AA", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "GreenTurtwig", + "version": "6.3.95" + }, + { + "id": "53152CB4-487D-4D6C-8E52-E5A1B3F38289", + "name": "cards-playing-heart-multiple", + "codepoint": "F18AB", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "GreenTurtwig", + "version": "6.3.95" + }, + { + "id": "74B2938C-1AC3-4022-AAF2-3983F3EECE7D", + "name": "cards-playing-heart-multiple-outline", + "codepoint": "F18AC", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "GreenTurtwig", + "version": "6.3.95" + }, + { + "id": "7951C9AF-05E8-4A77-B682-AD1F5D1C04B8", + "name": "cards-playing-heart-outline", + "codepoint": "F18AD", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "GreenTurtwig", + "version": "6.3.95" + }, + { + "id": "C388C342-49AA-4577-A968-12BD804E5A8E", + "name": "cards-playing-outline", + "codepoint": "F063A", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Simran", + "version": "1.6.50" + }, + { + "id": "E3254FE1-D955-4E3D-AD8E-385E5F307BA1", + "name": "cards-playing-spade", + "codepoint": "F18AE", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "GreenTurtwig", + "version": "6.3.95" + }, + { + "id": "46EAB9B6-C359-4D80-AA5E-96A05E42F63B", + "name": "cards-playing-spade-multiple", + "codepoint": "F18AF", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "GreenTurtwig", + "version": "6.3.95" + }, + { + "id": "FECC9B9C-2115-4613-926B-C22A16ABCFE8", + "name": "cards-playing-spade-multiple-outline", + "codepoint": "F18B0", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "GreenTurtwig", + "version": "6.3.95" + }, + { + "id": "A10D94B9-210F-453F-B9C7-65175CDD81B1", + "name": "cards-playing-spade-outline", + "codepoint": "F18B1", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "GreenTurtwig", + "version": "6.3.95" + }, + { + "id": "B2DEB97A-B08E-4E10-8E24-A4AF2CF98C74", + "name": "cards-spade", + "codepoint": "F08D1", + "aliases": [ + "suit-spades", + "poker-spade" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Nick", + "version": "2.3.50" + }, + { + "id": "2A12FA98-57B3-43FC-A927-384419B791EF", + "name": "cards-spade-outline", + "codepoint": "F18B2", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Michael Irigoyen", + "version": "6.3.95" + }, + { + "id": "A000BD20-147F-43FB-AD99-08AE6BA2E80B", + "name": "cards-variant", + "codepoint": "F06C7", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Case Sandberg", + "version": "1.8.36" + }, + { + "id": "6BD10A61-9A45-4A5A-ABEF-404135975917", + "name": "carrot", + "codepoint": "F010F", + "aliases": [], + "tags": [ + "Agriculture", + "Food \/ Drink" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "97563623-CF1C-43AE-87D8-DF54802D442B", + "name": "cart", + "codepoint": "F0110", + "aliases": [ + "trolley", + "local-grocery-store", + "shopping-cart" + ], + "tags": [ + "Shopping" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "0DCB3032-271E-4522-ABEE-386F49E6B4ED", + "name": "cart-arrow-down", + "codepoint": "F0D66", + "aliases": [ + "shopping-cart-arrow-down", + "trolley-arrow-down" + ], + "tags": [ + "Shopping" + ], + "author": "Simran", + "version": "3.4.93" + }, + { + "id": "31173BE4-3D5E-45EB-BD45-3D19E86AF6B2", + "name": "cart-arrow-right", + "codepoint": "F0C4E", + "aliases": [ + "trolley-arrow-right", + "shopping-cart-arrow-right" + ], + "tags": [ + "Shopping" + ], + "author": "Michael Richins", + "version": "3.2.89" + }, + { + "id": "8ED82219-BC37-41C0-9012-E316AB7BD809", + "name": "cart-arrow-up", + "codepoint": "F0D67", + "aliases": [ + "shopping-cart-arrow-up", + "trolley-arrow-up" + ], + "tags": [ + "Shopping" + ], + "author": "Simran", + "version": "3.4.93" + }, + { + "id": "549C956B-9A3A-489B-BBC3-F9FF7AF0EB14", + "name": "cart-check", + "codepoint": "F15EA", + "aliases": [], + "tags": [ + "Shopping" + ], + "author": "Colton Wiscombe", + "version": "5.6.55" + }, + { + "id": "CB11E82A-C290-44A7-B9FC-88F47CEF5BC5", + "name": "cart-heart", + "codepoint": "F18E0", + "aliases": [ + "cart-favorite", + "shopping-favorite" + ], + "tags": [ + "Shopping" + ], + "author": "Michael Irigoyen", + "version": "6.3.95" + }, + { + "id": "D4AF47D5-214B-4856-8450-0ED7C524991D", + "name": "cart-minus", + "codepoint": "F0D68", + "aliases": [ + "shopping-cart-minus", + "trolley-minus" + ], + "tags": [ + "Shopping" + ], + "author": "Simran", + "version": "3.4.93" + }, + { + "id": "05455801-C523-420A-A961-868ABA3DF636", + "name": "cart-off", + "codepoint": "F066B", + "aliases": [ + "trolley-off", + "remove-shopping-cart", + "shopping-cart-off" + ], + "tags": [ + "Shopping" + ], + "author": "Google", + "version": "1.6.50" + }, + { + "id": "F290ABB0-4CD2-4C45-B543-E3AEBA1FE358", + "name": "cart-outline", + "codepoint": "F0111", + "aliases": [ + "trolley-outline", + "shopping-cart-outline" + ], + "tags": [ + "Shopping" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "2BF13245-A7BF-49EC-8EB0-CA10F7AF11B2", + "name": "cart-plus", + "codepoint": "F0112", + "aliases": [ + "trolley-plus", + "add-shopping-cart", + "shopping-cart-plus", + "cart-add", + "trolley-add", + "shopping-cart-add" + ], + "tags": [ + "Shopping" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "DCB745AA-0ECB-4584-88DA-52CC447555A0", + "name": "cart-remove", + "codepoint": "F0D69", + "aliases": [ + "trolley-remove", + "shopping-cart-remove" + ], + "tags": [ + "Shopping" + ], + "author": "Simran", + "version": "3.4.93" + }, + { + "id": "E7E79B59-68A1-4629-9353-A2E64A4A18B4", + "name": "cart-variant", + "codepoint": "F15EB", + "aliases": [], + "tags": [ + "Shopping" + ], + "author": "Colton Wiscombe", + "version": "5.6.55" + }, + { + "id": "250BE86F-4D41-4F22-AECD-DD8A2533DA62", + "name": "case-sensitive-alt", + "codepoint": "F0113", + "aliases": [], + "tags": [], + "author": "Doug C. Hardester", + "version": "1.5.54" + }, + { + "id": "59956D81-BF6B-4DCA-ABAD-A890412F22F1", + "name": "cash", + "codepoint": "F0114", + "aliases": [ + "money" + ], + "tags": [ + "Currency", + "Banking", + "Shopping" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "18E513D3-5D34-4A4B-B600-D7173CB30DDA", + "name": "cash-100", + "codepoint": "F0115", + "aliases": [ + "money-100" + ], + "tags": [ + "Currency", + "Banking" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "4AF1798E-6400-40B9-8DAB-4482C07C62E9", + "name": "cash-check", + "codepoint": "F14EE", + "aliases": [], + "tags": [], + "author": "Lucas Crivellari Macieira", + "version": "5.4.55" + }, + { + "id": "A10E9739-AA80-4671-B744-ECB9934BB7E4", + "name": "cash-fast", + "codepoint": "F185C", + "aliases": [ + "instant-deposit", + "instant-transfer", + "instant-cash" + ], + "tags": [ + "Currency", + "Banking" + ], + "author": "Jeff Anders", + "version": "6.2.95" + }, + { + "id": "03BA1D57-6374-41F7-A781-C0615B91178B", + "name": "cash-lock", + "codepoint": "F14EA", + "aliases": [], + "tags": [ + "Lock" + ], + "author": "Austin Andrews", + "version": "5.4.55" + }, + { + "id": "C9CB2DC9-3F57-4D99-81D8-154F348746E5", + "name": "cash-lock-open", + "codepoint": "F14EB", + "aliases": [], + "tags": [ + "Lock" + ], + "author": "Austin Andrews", + "version": "5.4.55" + }, + { + "id": "080E0DBC-A7E4-40C0-A126-9CE83BDE2FDF", + "name": "cash-marker", + "codepoint": "F0DB8", + "aliases": [ + "cod", + "cash-on-delivery", + "cash-location" + ], + "tags": [ + "Banking" + ], + "author": "Michael Irigoyen", + "version": "3.5.94" + }, + { + "id": "20240E77-778A-4B82-9975-585C647AE81C", + "name": "cash-minus", + "codepoint": "F1260", + "aliases": [], + "tags": [], + "author": "sergiocarlotto", + "version": "4.7.95" + }, + { + "id": "80D4170E-FDA3-40D0-9B05-1020D5FCA817", + "name": "cash-multiple", + "codepoint": "F0116", + "aliases": [ + "money" + ], + "tags": [ + "Currency", + "Banking" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "C2E340E3-EA0A-4726-B595-6149C8C662B8", + "name": "cash-plus", + "codepoint": "F1261", + "aliases": [], + "tags": [], + "author": "sergiocarlotto", + "version": "4.7.95" + }, + { + "id": "EADBBD96-B2BD-4C31-969E-BFBA6DF519B1", + "name": "cash-refund", + "codepoint": "F0A9C", + "aliases": [ + "cash-return", + "cash-chargeback" + ], + "tags": [ + "Banking" + ], + "author": "Michael Richins", + "version": "2.7.94" + }, + { + "id": "6B63F864-415A-4679-9126-363E5254B175", + "name": "cash-register", + "codepoint": "F0CF4", + "aliases": [ + "till" + ], + "tags": [ + "Shopping" + ], + "author": "TheManuz", + "version": "3.3.92" + }, + { + "id": "C4DA23E6-9BE6-490B-83FB-B39A3E22E9E1", + "name": "cash-remove", + "codepoint": "F1262", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "4.7.95" + }, + { + "id": "EF35081A-EABF-4C6B-B858-7F2177B60F95", + "name": "cassette", + "codepoint": "F09D4", + "aliases": [ + "tape" + ], + "tags": [ + "Music" + ], + "author": "GreenTurtwig", + "version": "2.5.94" + }, + { + "id": "996A1644-29FB-4221-9225-FD5CF8AAD5CE", + "name": "cast", + "codepoint": "F0118", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "E464AD1F-6036-43F9-9D9F-22390B2CBECB", + "name": "cast-audio", + "codepoint": "F101E", + "aliases": [ + "cast-speaker" + ], + "tags": [ + "Audio" + ], + "author": "Kinetic Screen", + "version": "4.1.95" + }, + { + "id": "38E64DD7-18F9-4D85-9D62-023BDA44F642", + "name": "cast-audio-variant", + "codepoint": "F1749", + "aliases": [ + "apple-airplay" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "80EC7FF6-03C0-4D61-8858-D2D94426D2DE", + "name": "cast-connected", + "codepoint": "F0119", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "31B2064A-79C9-44A7-8C5E-0490162A7864", + "name": "cast-education", + "codepoint": "F0E1D", + "aliases": [ + "cast-school", + "school-online", + "cast-tutorial" + ], + "tags": [], + "author": "Google", + "version": "3.6.95" + }, + { + "id": "F6AC6C9C-C82B-48C0-84AB-BEE76FC7BB5B", + "name": "cast-off", + "codepoint": "F078A", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Simran", + "version": "1.9.32" + }, + { + "id": "CD5DD59A-965F-455E-912B-9535BFD134E0", + "name": "cast-variant", + "codepoint": "F001F", + "aliases": [ + "apple", + "airplay" + ], + "tags": [ + "Home Automation" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "53FF9F06-A3F7-4B04-9D54-207FE8B56B8E", + "name": "castle", + "codepoint": "F011A", + "aliases": [], + "tags": [ + "Places" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "5D3A753E-1FA9-42F4-8A71-E686A36D1CB6", + "name": "cat", + "codepoint": "F011B", + "aliases": [ + "emoji-cat", + "emoticon-cat" + ], + "tags": [ + "Animal", + "Holiday" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "04FF8A0D-0B5F-426B-ABAF-001EAC16559F", + "name": "cctv", + "codepoint": "F07AE", + "aliases": [ + "closed-circuit-television", + "security-camera" + ], + "tags": [ + "Home Automation" + ], + "author": "Roberto Graham", + "version": "2.0.46" + }, + { + "id": "4B6324CC-D2F7-4CDA-B05F-AC05CA7E238D", + "name": "cctv-off", + "codepoint": "F185F", + "aliases": [ + "closed-circuit-television-off", + "security-camera-off" + ], + "tags": [ + "Home Automation" + ], + "author": "Colton Wiscombe", + "version": "6.2.95" + }, + { + "id": "580D06BE-1E88-47D7-9DEE-D1929637B0E3", + "name": "ceiling-fan", + "codepoint": "F1797", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "nilsfast", + "version": "6.1.95" + }, + { + "id": "326FF6B4-E497-4C9C-8EA5-D3FEACF0B2AE", + "name": "ceiling-fan-light", + "codepoint": "F1798", + "aliases": [ + "ceiling-fan-on" + ], + "tags": [ + "Home Automation" + ], + "author": "nilsfast", + "version": "6.1.95" + }, + { + "id": "C45A21A3-671C-4B1A-B405-D625ECA93C11", + "name": "ceiling-light", + "codepoint": "F0769", + "aliases": [ + "ceiling-lamp" + ], + "tags": [ + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "1.9.32" + }, + { + "id": "95F3D89F-8AE6-4B86-BFE7-7D6A27018E7D", + "name": "ceiling-light-multiple", + "codepoint": "F18DD", + "aliases": [ + "ceiling-lamp-multiple" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.3.95" + }, + { + "id": "11968A7F-D159-497F-9D97-A25CACD6AE8D", + "name": "ceiling-light-multiple-outline", + "codepoint": "F18DE", + "aliases": [ + "ceiling-lamp-multiple-outline" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.3.95" + }, + { + "id": "DD107169-7A9D-452F-8DE9-2736B6FB7851", + "name": "ceiling-light-outline", + "codepoint": "F17C7", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Teodor Sandu", + "version": "6.1.95" + }, + { + "id": "8898488F-1BE6-40A0-84B7-1C0832AA4754", + "name": "cellphone", + "codepoint": "F011C", + "aliases": [ + "mobile-phone", + "smartphone", + "stay-current-portrait", + "stay-primary-portrait" + ], + "tags": [ + "Cellphone \/ Phone", + "Device \/ Tech" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "04D5C9C6-6CE4-4D2E-A759-07933F9B7932", + "name": "cellphone-arrow-down", + "codepoint": "F09D5", + "aliases": [ + "cellphone-system-update", + "mobile-phone-arrow-down", + "smartphone-arrow-down" + ], + "tags": [ + "Cellphone \/ Phone", + "Device \/ Tech" + ], + "author": "Google", + "version": "2.5.94" + }, + { + "id": "AF03DF0A-3E57-412D-B72E-67938C4FD599", + "name": "cellphone-arrow-down-variant", + "codepoint": "F19C5", + "aliases": [ + "cellphone-download" + ], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Michael Irigoyen", + "version": "6.6.95" + }, + { + "id": "E22A55C0-983F-499E-8B43-4A66DB278B4E", + "name": "cellphone-basic", + "codepoint": "F011E", + "aliases": [ + "mobile-phone-basic" + ], + "tags": [ + "Cellphone \/ Phone", + "Device \/ Tech" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "FE245F0F-24CE-497E-BA73-19936BD14716", + "name": "cellphone-charging", + "codepoint": "F1397", + "aliases": [], + "tags": [], + "author": "Moma Design Studio", + "version": "5.0.45" + }, + { + "id": "0F2A2942-A58B-428B-B641-8AF2FF3A845B", + "name": "cellphone-check", + "codepoint": "F17FD", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "134C82D3-528D-46FA-9107-7F3D5AD8FBC3", + "name": "cellphone-cog", + "codepoint": "F0951", + "aliases": [ + "phonelink-setup", + "mobile-phone-settings-variant", + "smartphone-settings-variant" + ], + "tags": [ + "Settings", + "Cellphone \/ Phone", + "Device \/ Tech" + ], + "author": "Google", + "version": "2.4.85" + }, + { + "id": "4FBBF196-CF97-436B-A3E6-A08D695E6986", + "name": "cellphone-dock", + "codepoint": "F011F", + "aliases": [ + "mobile-phone-dock", + "smartphone-dock" + ], + "tags": [ + "Cellphone \/ Phone", + "Device \/ Tech" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "5B692392-DA8F-40F2-948F-D81832ABA465", + "name": "cellphone-information", + "codepoint": "F0F41", + "aliases": [ + "mobile-phone-information", + "smartphone-information" + ], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Google", + "version": "3.9.97" + }, + { + "id": "29BA2DA3-CED6-4D52-92EF-D9152F63B7AB", + "name": "cellphone-key", + "codepoint": "F094E", + "aliases": [ + "mobile-phone-key", + "smartphone-key" + ], + "tags": [ + "Cellphone \/ Phone", + "Device \/ Tech" + ], + "author": "GreenTurtwig", + "version": "2.4.85" + }, + { + "id": "E29A590D-51B8-471B-B23B-E0A41046EDA6", + "name": "cellphone-link", + "codepoint": "F0121", + "aliases": [ + "mobile-phone-link", + "smartphone-link", + "devices" + ], + "tags": [ + "Cellphone \/ Phone", + "Device \/ Tech" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "7E4265ED-151D-45CE-BDD2-08B6028B6006", + "name": "cellphone-link-off", + "codepoint": "F0122", + "aliases": [ + "mobile-phone-link-off", + "smartphone-link-off", + "phonelink-off" + ], + "tags": [ + "Cellphone \/ Phone", + "Device \/ Tech" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "2261E999-4B3A-4540-BB30-B4C130137916", + "name": "cellphone-lock", + "codepoint": "F094F", + "aliases": [ + "phonelink-lock", + "mobile-phone-lock", + "smartphone-lock" + ], + "tags": [ + "Cellphone \/ Phone", + "Lock", + "Device \/ Tech" + ], + "author": "Google", + "version": "2.4.85" + }, + { + "id": "487DEBB1-A270-44B5-A2B9-D7E11F32C0CC", + "name": "cellphone-marker", + "codepoint": "F183A", + "aliases": [ + "cellphone-location", + "cellphone-map", + "find-my-phone", + "cellphone-gps" + ], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Michael Irigoyen", + "version": "6.2.95" + }, + { + "id": "4C511E7E-D658-493D-B34B-B73A4DEE8FF9", + "name": "cellphone-message", + "codepoint": "F08D3", + "aliases": [ + "mobile-phone-message", + "smartphone-message" + ], + "tags": [ + "Cellphone \/ Phone", + "Device \/ Tech" + ], + "author": "Austin Andrews", + "version": "2.3.50" + }, + { + "id": "039B41EB-85E3-458B-9C51-AADE4C4071FE", + "name": "cellphone-message-off", + "codepoint": "F10D2", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Terren", + "version": "4.3.95" + }, + { + "id": "A4EFE1A4-034F-473F-9076-D8DFF6167067", + "name": "cellphone-nfc", + "codepoint": "F0E90", + "aliases": [], + "tags": [ + "Automotive", + "Cellphone \/ Phone", + "Device \/ Tech" + ], + "author": "Google", + "version": "3.7.94" + }, + { + "id": "E036E842-B41C-410B-BF8A-85B10A7E26D0", + "name": "cellphone-nfc-off", + "codepoint": "F12D8", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "2AD1736A-2142-4E3D-BA70-9CF8584C366D", + "name": "cellphone-off", + "codepoint": "F0950", + "aliases": [ + "mobile-phone-off", + "smartphone-off", + "mobile-off" + ], + "tags": [ + "Cellphone \/ Phone", + "Device \/ Tech" + ], + "author": "Google", + "version": "2.4.85" + }, + { + "id": "B89607FB-8199-48B0-AF59-E048CAEB210B", + "name": "cellphone-play", + "codepoint": "F101F", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Google", + "version": "4.1.95" + }, + { + "id": "EC642A5A-34A2-4E29-85F1-60ACAA546FB1", + "name": "cellphone-remove", + "codepoint": "F094D", + "aliases": [ + "phonelink-erase", + "mobile-phone-erase", + "smartphone-erase", + "cellphone-erase" + ], + "tags": [ + "Cellphone \/ Phone", + "Device \/ Tech" + ], + "author": "Michael Irigoyen", + "version": "2.4.85" + }, + { + "id": "84F994FA-DF0C-4A5A-88F6-8A2AD1DC1189", + "name": "cellphone-screenshot", + "codepoint": "F0A35", + "aliases": [], + "tags": [ + "Cellphone \/ Phone", + "Device \/ Tech" + ], + "author": "Google", + "version": "2.6.95" + }, + { + "id": "E7458A8C-66F2-41D7-81AE-4B2B961DFE1A", + "name": "cellphone-settings", + "codepoint": "F0123", + "aliases": [ + "mobile-phone-settings", + "smartphone-settings", + "settings-cell" + ], + "tags": [ + "Cellphone \/ Phone", + "Settings", + "Device \/ Tech" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "F5D685BD-7BA8-4F4C-8701-06F1B1E57064", + "name": "cellphone-sound", + "codepoint": "F0952", + "aliases": [ + "phonelink-ring", + "mobile-phone-sound", + "smartphone-sound" + ], + "tags": [ + "Cellphone \/ Phone", + "Device \/ Tech" + ], + "author": "Google", + "version": "2.4.85" + }, + { + "id": "D89FFCD9-0592-4760-98C9-5EDDA77826F5", + "name": "cellphone-text", + "codepoint": "F08D2", + "aliases": [ + "mobile-phone-text", + "smartphone-text" + ], + "tags": [ + "Cellphone \/ Phone", + "Device \/ Tech" + ], + "author": "Austin Andrews", + "version": "2.3.50" + }, + { + "id": "071CA76A-0ED5-42CD-9BE9-46AFA9D5459E", + "name": "cellphone-wireless", + "codepoint": "F0815", + "aliases": [ + "mobile-phone-wireless", + "smartphone-wireless" + ], + "tags": [ + "Cellphone \/ Phone", + "Device \/ Tech" + ], + "author": "Austin Andrews", + "version": "2.1.19" + }, + { + "id": "BAC7F15C-844C-4FEB-A4C0-2CDF80738979", + "name": "centos", + "codepoint": "F111A", + "aliases": [], + "tags": [], + "author": "Contributors", + "version": "4.3.95" + }, + { + "id": "2DBEB397-D80B-445D-A11E-7B8362CFBEF4", + "name": "certificate", + "codepoint": "F0124", + "aliases": [ + "diploma", + "seal" + ], + "tags": [], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "6F755EB5-B2E1-413A-A919-3F0DCE69E48A", + "name": "certificate-outline", + "codepoint": "F1188", + "aliases": [ + "diploma-outline", + "seal-outline" + ], + "tags": [], + "author": "Michael Richins", + "version": "4.4.95" + }, + { + "id": "822CF3D7-FEB4-4988-A037-0866756D4ADE", + "name": "chair-rolling", + "codepoint": "F0F48", + "aliases": [ + "office-chair" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "3.9.97" + }, + { + "id": "47FCC651-522C-4786-B518-91A03A721A90", + "name": "chair-school", + "codepoint": "F0125", + "aliases": [ + "desk", + "education", + "learn" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "C0F0A8D1-34A5-462C-B417-733507042380", + "name": "chandelier", + "codepoint": "F1793", + "aliases": [ + "ceiling-light", + "girandole", + "candelabra-lamp", + "suspended-light" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "B5589411-20E7-4552-BEC5-A394068B23A7", + "name": "charity", + "codepoint": "F0C4F", + "aliases": [ + "super-chat-for-good" + ], + "tags": [], + "author": "Google", + "version": "3.2.89" + }, + { + "id": "98939E5B-1528-4A2F-B35A-C37C60C75D93", + "name": "chart-arc", + "codepoint": "F0126", + "aliases": [ + "report-arc", + "widget-arc" + ], + "tags": [ + "Math" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "00654F5E-1B8B-4BD7-933B-0BD65B2C9BAC", + "name": "chart-areaspline", + "codepoint": "F0127", + "aliases": [ + "report-areaspline", + "widget-areaspline", + "graph-areaspline" + ], + "tags": [ + "Math" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "C55BFF6F-469B-4D28-835B-537BED8DE99D", + "name": "chart-areaspline-variant", + "codepoint": "F0E91", + "aliases": [ + "report-areaspline-variant", + "widget-areaspline-variant", + "graph-areaspline-variant" + ], + "tags": [ + "Math" + ], + "author": "Michael Richins", + "version": "3.7.94" + }, + { + "id": "85D4DC49-5359-4867-A5D1-52C44699387F", + "name": "chart-bar", + "codepoint": "F0128", + "aliases": [ + "report-bar", + "widget-bar", + "graph-bar" + ], + "tags": [ + "Math" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "FAA40519-5517-44DF-AF2E-30D07874BEB7", + "name": "chart-bar-stacked", + "codepoint": "F076A", + "aliases": [ + "report-bar-stacked", + "widget-bar-stacked", + "graph-bar-stacked" + ], + "tags": [ + "Math" + ], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "35760CC7-EBA2-4445-B88B-7E8224535BB7", + "name": "chart-bell-curve", + "codepoint": "F0C50", + "aliases": [ + "report-bell-curve", + "widget-bell-curve", + "graph-bell-curve" + ], + "tags": [ + "Math" + ], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "D4E38BC9-5A85-4890-B3DD-92F3D263E26E", + "name": "chart-bell-curve-cumulative", + "codepoint": "F0FA7", + "aliases": [ + "report-bell-curve-cumulative", + "widget-bell-curve-cumulative", + "graph-bell-curve-cumulative" + ], + "tags": [ + "Math" + ], + "author": "Michael Irigoyen", + "version": "4.0.96" + }, + { + "id": "381420B2-B2EE-4E9F-9DEA-EA0C1F92A226", + "name": "chart-box", + "codepoint": "F154D", + "aliases": [ + "poll-box", + "report-box", + "widget-box", + "graph-box" + ], + "tags": [ + "Math" + ], + "author": "Google", + "version": "5.4.55" + }, + { + "id": "4115E465-01E5-4F3F-929A-81C239289B21", + "name": "chart-box-outline", + "codepoint": "F154E", + "aliases": [ + "poll-box-outline", + "report-box-outline", + "widget-box-outline", + "graph-box-outline" + ], + "tags": [ + "Math" + ], + "author": "Google", + "version": "5.4.55" + }, + { + "id": "2F2AA4D1-DB33-4B54-8052-2A2EFCE59168", + "name": "chart-box-plus-outline", + "codepoint": "F154F", + "aliases": [ + "report-box-plus-outline", + "widget-box-plus-outline", + "graph-box-plus-outline" + ], + "tags": [ + "Math" + ], + "author": "Google", + "version": "5.4.55" + }, + { + "id": "9D79A433-CF5A-45A2-971F-4FBF72DB9821", + "name": "chart-bubble", + "codepoint": "F05E3", + "aliases": [ + "bubble-chart", + "report-bubble", + "widget-bubble" + ], + "tags": [ + "Math" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "C7BED6AB-8D91-42EC-A22F-D4B922B0EB14", + "name": "chart-donut", + "codepoint": "F07AF", + "aliases": [ + "chart-doughnut", + "data-usage", + "report-donut", + "widget-donut" + ], + "tags": [ + "Math" + ], + "author": "Google", + "version": "2.0.46" + }, + { + "id": "FE9CBE2A-4D6F-4A1F-B817-26607BB9561B", + "name": "chart-donut-variant", + "codepoint": "F07B0", + "aliases": [ + "chart-doughnut-variant", + "report-donut-variant", + "widget-donut-variant" + ], + "tags": [ + "Math" + ], + "author": "Austin Andrews", + "version": "2.0.46" + }, + { + "id": "A2839B3A-760A-4061-80CA-41B3FA5817E0", + "name": "chart-gantt", + "codepoint": "F066C", + "aliases": [ + "report-gantt", + "timeline", + "widget-gantt", + "roadmap" + ], + "tags": [ + "Math" + ], + "author": "Austin Andrews", + "version": "1.6.50" + }, + { + "id": "8DCC14D7-057F-4DA4-89B2-B26D6B6F0C00", + "name": "chart-histogram", + "codepoint": "F0129", + "aliases": [ + "report-histogram", + "widget-histogram", + "graph-histogram" + ], + "tags": [ + "Math" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "D996574D-5B42-47C5-91D6-F86555C2FBC5", + "name": "chart-line", + "codepoint": "F012A", + "aliases": [ + "report-line", + "widget-line", + "graph-line" + ], + "tags": [ + "Math" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "B53C0CF7-F923-409F-91C3-420513E44231", + "name": "chart-line-stacked", + "codepoint": "F076B", + "aliases": [ + "report-line-stacked", + "widget-line-stacked", + "graph-line-stacked" + ], + "tags": [ + "Math" + ], + "author": "Haley Halcyon", + "version": "1.9.32" + }, + { + "id": "2FAF8E0B-5AB4-4914-A0A1-CECFFAF85427", + "name": "chart-line-variant", + "codepoint": "F07B1", + "aliases": [ + "show-chart", + "report-line-variant", + "widget-line-variant", + "graph-line-variant" + ], + "tags": [ + "Math" + ], + "author": "Google", + "version": "2.0.46" + }, + { + "id": "746FB7AE-B8AC-4356-8B79-D95F54B410D7", + "name": "chart-multiline", + "codepoint": "F08D4", + "aliases": [ + "report-multiline", + "widget-multiline", + "graph-multiline" + ], + "tags": [ + "Math" + ], + "author": "Google", + "version": "2.3.50" + }, + { + "id": "42E3BF4B-FFE9-449F-AFEE-66F565602A9B", + "name": "chart-multiple", + "codepoint": "F1213", + "aliases": [ + "report-multiple", + "widget-multiple", + "graph-multiple" + ], + "tags": [ + "Math" + ], + "author": "Michael Richins", + "version": "4.6.95" + }, + { + "id": "9C6B53C5-698B-4428-9738-A6700BF8698C", + "name": "chart-pie", + "codepoint": "F012B", + "aliases": [ + "report-pie", + "widget-pie", + "graph-pie" + ], + "tags": [ + "Math" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "42A6B073-CC7E-4539-9313-E60FAE81BC70", + "name": "chart-ppf", + "codepoint": "F1380", + "aliases": [ + "chart-production-possibility-frontier", + "report-ppf", + "widget-ppf", + "graph-ppf" + ], + "tags": [ + "Math" + ], + "author": "Simran", + "version": "4.9.95" + }, + { + "id": "D0F312B5-8B3B-4E68-BF0B-691D4F129749", + "name": "chart-sankey", + "codepoint": "F11DF", + "aliases": [ + "chart-snakey", + "report-sankey", + "widget-sankey", + "graph-sankey" + ], + "tags": [ + "Math" + ], + "author": "Michael Richins", + "version": "4.5.95" + }, + { + "id": "5FA4943E-5956-4668-ADDD-984914DD745C", + "name": "chart-sankey-variant", + "codepoint": "F11E0", + "aliases": [ + "chart-snakey-variant", + "report-sankey-variant", + "widget-sankey-variant", + "graph-sankey-variant" + ], + "tags": [ + "Math" + ], + "author": "Michael Richins", + "version": "4.5.95" + }, + { + "id": "C268C5A5-0D35-4963-9151-61D2C442015B", + "name": "chart-scatter-plot", + "codepoint": "F0E92", + "aliases": [ + "report-scatter-plot", + "widget-scatter-plot", + "graph-scatter-plot" + ], + "tags": [ + "Math" + ], + "author": "Michael Irigoyen", + "version": "3.7.94" + }, + { + "id": "852E3EF2-942E-42C5-87BB-E1193EBD3E0C", + "name": "chart-scatter-plot-hexbin", + "codepoint": "F066D", + "aliases": [ + "chart-scatterplot-hexbin", + "report-scatter-plot-hexbin", + "widget-scatter-plot-hexbin", + "graph-scatter-plot-hexbin" + ], + "tags": [ + "Math" + ], + "author": "Austin Andrews", + "version": "1.6.50" + }, + { + "id": "922A0C03-C46D-45E7-8B44-9D53F1292360", + "name": "chart-timeline", + "codepoint": "F066E", + "aliases": [ + "report-timeline", + "widget-timeline", + "graph-timeline", + "roadmap" + ], + "tags": [ + "Math" + ], + "author": "Austin Andrews", + "version": "1.6.50" + }, + { + "id": "F41D980A-439A-4F1B-A3B7-850EB1A70416", + "name": "chart-timeline-variant", + "codepoint": "F0E93", + "aliases": [ + "report-timeline-variant", + "widget-timeline-variant", + "graph-timeline-variant", + "report-line", + "widget-line", + "graph-line" + ], + "tags": [ + "Math" + ], + "author": "Google", + "version": "3.7.94" + }, + { + "id": "F2256261-8218-48B2-BACA-9E23E42EEC15", + "name": "chart-timeline-variant-shimmer", + "codepoint": "F15B6", + "aliases": [ + "report-timeline-variant-shimmer", + "widget-timeline-variant-shimmer", + "graph-timeline-variant-shimmer", + "report-line-shimmer", + "widget-line-shimmer", + "graph-line-shimmer" + ], + "tags": [], + "author": "Google", + "version": "5.6.55" + }, + { + "id": "B7E7AEAC-4A67-4C0F-8A4C-C0955AE5F655", + "name": "chart-tree", + "codepoint": "F0E94", + "aliases": [ + "report-tree", + "widget-tree" + ], + "tags": [ + "Math" + ], + "author": "Google", + "version": "3.7.94" + }, + { + "id": "ABA3B2FE-7270-466B-86F6-00A87B947F6F", + "name": "chart-waterfall", + "codepoint": "F1918", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "7FF15164-E575-4024-ABAC-A183179F0217", + "name": "chat", + "codepoint": "F0B79", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "3.0.39" + }, + { + "id": "7E35E8CF-E958-43D7-9B28-072E3161618A", + "name": "chat-alert", + "codepoint": "F0B7A", + "aliases": [ + "chat-warning" + ], + "tags": [ + "Alert \/ Error" + ], + "author": "Austin Andrews", + "version": "3.0.39" + }, + { + "id": "C0C2065A-8B0C-4DE2-AD4E-D909080FFB42", + "name": "chat-alert-outline", + "codepoint": "F12C9", + "aliases": [], + "tags": [ + "Alert \/ Error" + ], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "45A636B1-89B7-45B8-B68A-65DB813B7927", + "name": "chat-minus", + "codepoint": "F1410", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "5.1.45" + }, + { + "id": "69E4B1D9-C479-47CB-8354-A61FCCC51A0B", + "name": "chat-minus-outline", + "codepoint": "F1413", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "5.1.45" + }, + { + "id": "E6394813-3C45-4D08-A207-9008A2E5CECB", + "name": "chat-outline", + "codepoint": "F0EDE", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "3.8.95" + }, + { + "id": "25FEEB21-3351-4743-994B-1DA08DEAB2B7", + "name": "chat-plus", + "codepoint": "F140F", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "5.1.45" + }, + { + "id": "F9BDF971-6385-4B8F-98AD-B3FE8D376855", + "name": "chat-plus-outline", + "codepoint": "F1412", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "5.1.45" + }, + { + "id": "95003FC4-C655-4687-AF82-660A49B95978", + "name": "chat-processing", + "codepoint": "F0B7B", + "aliases": [ + "chat-typing" + ], + "tags": [], + "author": "Austin Andrews", + "version": "3.0.39" + }, + { + "id": "F753E08E-F7C9-4BAF-8647-9328D56D1837", + "name": "chat-processing-outline", + "codepoint": "F12CA", + "aliases": [ + "chat-typing-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "8B7833C6-EB36-4F0C-A554-AF7189A7AB34", + "name": "chat-question", + "codepoint": "F1738", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "7EC5A46D-1E6A-475C-A76F-19F9F4B9CD90", + "name": "chat-question-outline", + "codepoint": "F1739", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "3C021F95-3463-45CD-9908-A0D84B2793FB", + "name": "chat-remove", + "codepoint": "F1411", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "5.1.45" + }, + { + "id": "4D147E9B-52BB-446B-8355-0CEA377C0631", + "name": "chat-remove-outline", + "codepoint": "F1414", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "5.1.45" + }, + { + "id": "4B555315-27A3-4DD2-8A85-0F05260CDA33", + "name": "chat-sleep", + "codepoint": "F12D1", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "ABE1573F-24A9-4AC1-9ADB-6A9A32FB10AA", + "name": "chat-sleep-outline", + "codepoint": "F12D2", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "F789CE44-7EA3-4E97-88FB-BEC22EB2030C", + "name": "check", + "codepoint": "F012C", + "aliases": [ + "tick", + "done" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "48BA3B7B-1EF7-4160-A0BB-54EBCF999A13", + "name": "check-all", + "codepoint": "F012D", + "aliases": [ + "tick-all", + "done-all", + "check-multiple", + "checks", + "ticks" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "2070D6C6-EC09-4507-BE0A-07BFFFAF6DFB", + "name": "check-bold", + "codepoint": "F0E1E", + "aliases": [ + "check-thick" + ], + "tags": [], + "author": "Michael Richins", + "version": "3.6.95" + }, + { + "id": "93D7B6DC-17D2-4A2B-B787-79E2E8BEF304", + "name": "check-circle", + "codepoint": "F05E0", + "aliases": [ + "tick-circle" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "F609EE7E-AAB4-4CE7-A002-D0F7ECF89609", + "name": "check-circle-outline", + "codepoint": "F05E1", + "aliases": [ + "tick-circle-outline" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "64E327CF-3FCB-4742-AB82-789B2C27D31B", + "name": "check-decagram", + "codepoint": "F0791", + "aliases": [ + "verified", + "decagram-check", + "approve", + "approval", + "tick-decagram" + ], + "tags": [], + "author": "Michael Richins", + "version": "2.0.46" + }, + { + "id": "1CAE9177-18C6-497A-B6B9-900C00A14D0E", + "name": "check-decagram-outline", + "codepoint": "F1740", + "aliases": [ + "approve", + "approval", + "verified" + ], + "tags": [], + "author": "Jeff Anders", + "version": "5.9.55" + }, + { + "id": "F1CE2683-FE3F-4AA1-89A2-A935D6FD403C", + "name": "check-network", + "codepoint": "F0C53", + "aliases": [ + "tick-network" + ], + "tags": [], + "author": "Michael Richins", + "version": "3.2.89" + }, + { + "id": "98A3D662-2D11-40DB-8557-E1DD0E877091", + "name": "check-network-outline", + "codepoint": "F0C54", + "aliases": [ + "tick-network-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "38BFE155-0352-4907-A578-B5D0D7F5B78D", + "name": "check-outline", + "codepoint": "F0855", + "aliases": [ + "done-outline", + "tick-outline" + ], + "tags": [], + "author": "Google", + "version": "2.1.99" + }, + { + "id": "862B14E6-BA7A-4736-8047-1C836B2F4EC1", + "name": "check-underline", + "codepoint": "F0E1F", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "3.6.95" + }, + { + "id": "4B7477D9-418A-40E7-811A-50DFFEA14A03", + "name": "check-underline-circle", + "codepoint": "F0E20", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.6.95" + }, + { + "id": "8C448942-B521-4C50-B8AD-0233EF30B12C", + "name": "check-underline-circle-outline", + "codepoint": "F0E21", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.6.95" + }, + { + "id": "F35E17AA-A0E8-4AEE-9504-6DC07F3ACEAD", + "name": "checkbook", + "codepoint": "F0A9D", + "aliases": [ + "chequebook", + "cheque-book" + ], + "tags": [], + "author": "Google", + "version": "2.7.94" + }, + { + "id": "2B75FE22-5209-4DF8-B16A-B6F74272337B", + "name": "checkbox-blank", + "codepoint": "F012E", + "aliases": [], + "tags": [ + "Form" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "22ECB099-6A57-4DA8-9E42-0E3D8000C003", + "name": "checkbox-blank-badge", + "codepoint": "F1176", + "aliases": [ + "checkbox-blank-notification", + "app-notification", + "app-badge" + ], + "tags": [ + "Notification" + ], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "219B8956-E48B-4D11-9257-422E563955DB", + "name": "checkbox-blank-badge-outline", + "codepoint": "F0117", + "aliases": [ + "checkbox-blank-notification-outline", + "app-notification-outline", + "app-badge-outline" + ], + "tags": [ + "Notification" + ], + "author": "Michael Irigoyen", + "version": "1.5.54" + }, + { + "id": "F031DE59-CC30-47BF-B689-BC993893B03A", + "name": "checkbox-blank-circle", + "codepoint": "F012F", + "aliases": [], + "tags": [ + "Form" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "7C094780-770D-44B6-981C-C701784192D6", + "name": "checkbox-blank-circle-outline", + "codepoint": "F0130", + "aliases": [], + "tags": [ + "Form" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "8F505717-7778-4909-81E9-0714F01B44AF", + "name": "checkbox-blank-off", + "codepoint": "F12EC", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "06F6526C-6D2A-45F5-A5DF-46860DE27EAC", + "name": "checkbox-blank-off-outline", + "codepoint": "F12ED", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "C7D0E43D-6393-429B-BDCE-B522419B7B3D", + "name": "checkbox-blank-outline", + "codepoint": "F0131", + "aliases": [ + "check-box-outline-blank" + ], + "tags": [ + "Form" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "EFD12742-D508-4531-A9A4-EDCF3148C748", + "name": "checkbox-intermediate", + "codepoint": "F0856", + "aliases": [], + "tags": [ + "Form" + ], + "author": "Michael Richins", + "version": "2.1.99" + }, + { + "id": "C3E50D88-07AB-491F-B21E-9AA11A1E5886", + "name": "checkbox-marked", + "codepoint": "F0132", + "aliases": [ + "check-box" + ], + "tags": [ + "Form" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "4336ADDD-7A8E-46E7-A886-3873CCCFD3DA", + "name": "checkbox-marked-circle", + "codepoint": "F0133", + "aliases": [], + "tags": [ + "Form" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "7DC53566-5640-4124-A2C2-5070D7FBA591", + "name": "checkbox-marked-circle-outline", + "codepoint": "F0134", + "aliases": [], + "tags": [ + "Form" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "488DC51C-ABAF-4017-885B-84D3BBDE4B42", + "name": "checkbox-marked-circle-plus-outline", + "codepoint": "F1927", + "aliases": [ + "task-plus", + "task-add", + "todo-plus", + "todo-add" + ], + "tags": [], + "author": "Teodor Sandu", + "version": "6.4.95" + }, + { + "id": "AB384DA7-C0DA-4A68-96EA-FC54BF0EDED1", + "name": "checkbox-marked-outline", + "codepoint": "F0135", + "aliases": [], + "tags": [ + "Form" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "2B01AE9D-AFA4-4CDA-82BD-21076D27C006", + "name": "checkbox-multiple-blank", + "codepoint": "F0136", + "aliases": [ + "checkboxes-blank" + ], + "tags": [ + "Form" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "0AE5C836-2A43-4706-81C5-5053A73B9CAA", + "name": "checkbox-multiple-blank-circle", + "codepoint": "F063B", + "aliases": [ + "checkboxes-blank-circle" + ], + "tags": [ + "Form" + ], + "author": "Simran", + "version": "1.6.50" + }, + { + "id": "CCBAD6F8-5D3D-420A-94AF-CC85AA12397E", + "name": "checkbox-multiple-blank-circle-outline", + "codepoint": "F063C", + "aliases": [ + "checkboxes-blank-circle-outline" + ], + "tags": [ + "Form" + ], + "author": "Simran", + "version": "1.6.50" + }, + { + "id": "CA74F33C-3AEE-4EA9-93B4-643099DFD92D", + "name": "checkbox-multiple-blank-outline", + "codepoint": "F0137", + "aliases": [ + "checkboxes-blank-outline" + ], + "tags": [ + "Form" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "4F160BFE-433B-49D1-B2DC-E7F71AF7070B", + "name": "checkbox-multiple-marked", + "codepoint": "F0138", + "aliases": [ + "checkboxes-marked" + ], + "tags": [ + "Form" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "85C35F15-1AC0-407B-BCBF-AD79B6E6DDEA", + "name": "checkbox-multiple-marked-circle", + "codepoint": "F063D", + "aliases": [ + "checkboxes-marked-circle" + ], + "tags": [ + "Form" + ], + "author": "Simran", + "version": "1.6.50" + }, + { + "id": "5158D0E3-0E77-4CC3-A9A4-727825812D00", + "name": "checkbox-multiple-marked-circle-outline", + "codepoint": "F063E", + "aliases": [ + "checkboxes-marked-circle-outline" + ], + "tags": [ + "Form" + ], + "author": "Simran", + "version": "1.6.50" + }, + { + "id": "16BECBE7-BD8E-4301-B5CB-5EE534FBDAD3", + "name": "checkbox-multiple-marked-outline", + "codepoint": "F0139", + "aliases": [ + "checkboxes-marked-outline" + ], + "tags": [ + "Form" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "E0A0FF12-A5AD-40E3-B286-8958154F0537", + "name": "checkbox-multiple-outline", + "codepoint": "F0C51", + "aliases": [ + "check-boxes-outline", + "tick-box-multiple-outline" + ], + "tags": [], + "author": "Michael Richins", + "version": "3.2.89" + }, + { + "id": "EA5B8CC8-FFD6-4128-AC25-DEDCF1097A34", + "name": "checkbox-outline", + "codepoint": "F0C52", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "3.2.89" + }, + { + "id": "A5F7D4AF-C7A3-4F38-B21B-B9F3E68770DE", + "name": "checkerboard", + "codepoint": "F013A", + "aliases": [ + "raster" + ], + "tags": [ + "Gaming \/ RPG", + "Geographic Information System" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "925C7A7F-E7D0-4260-B131-D96FF2F7B8DB", + "name": "checkerboard-minus", + "codepoint": "F1202", + "aliases": [ + "raster-minus" + ], + "tags": [ + "Geographic Information System" + ], + "author": "Michael Irigoyen", + "version": "4.6.95" + }, + { + "id": "020A5F88-EE7B-4FE7-ADC7-999A0ADB16EE", + "name": "checkerboard-plus", + "codepoint": "F1201", + "aliases": [ + "raster-plus" + ], + "tags": [ + "Geographic Information System" + ], + "author": "Michael Irigoyen", + "version": "4.6.95" + }, + { + "id": "CDCAA6DE-0885-474F-992F-6A7F46563A15", + "name": "checkerboard-remove", + "codepoint": "F1203", + "aliases": [ + "raster-remove" + ], + "tags": [ + "Geographic Information System" + ], + "author": "Michael Irigoyen", + "version": "4.6.95" + }, + { + "id": "618E3DC0-F776-4CFF-BE9F-D6A23D580F5B", + "name": "cheese", + "codepoint": "F12B9", + "aliases": [ + "swiss-cheese" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Thomas de Saint-Exup\u00e9ry", + "version": "4.7.95" + }, + { + "id": "7EF3B22A-CA40-400B-AA25-00B9A6777651", + "name": "cheese-off", + "codepoint": "F13EE", + "aliases": [], + "tags": [ + "Food \/ Drink" + ], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "E22BD22B-9748-4CA8-A748-B5598B08A7DE", + "name": "chef-hat", + "codepoint": "F0B7C", + "aliases": [ + "toque", + "cook" + ], + "tags": [ + "Clothing" + ], + "author": "Simran", + "version": "3.0.39" + }, + { + "id": "7916D1CB-2F73-4C27-8A6B-B14D593F8F59", + "name": "chemical-weapon", + "codepoint": "F013B", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "3B0E25CE-ADB0-4601-BFBD-87C7B6D63E7F", + "name": "chess-bishop", + "codepoint": "F085C", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Michael Richins", + "version": "2.1.99" + }, + { + "id": "073FDF74-5305-45AB-8AC3-42A0FE6BBF9C", + "name": "chess-king", + "codepoint": "F0857", + "aliases": [ + "crown", + "royalty" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Michael Richins", + "version": "2.1.99" + }, + { + "id": "99D5E230-2040-4811-BEF1-17B867DA5F75", + "name": "chess-knight", + "codepoint": "F0858", + "aliases": [ + "chess-horse" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Michael Richins", + "version": "2.1.99" + }, + { + "id": "EDF049A9-1170-411B-923E-D19BD5EADB92", + "name": "chess-pawn", + "codepoint": "F0859", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Michael Richins", + "version": "2.1.99" + }, + { + "id": "0B9D0593-D546-4DDD-AEB1-289943FB12AE", + "name": "chess-queen", + "codepoint": "F085A", + "aliases": [ + "crown", + "royalty" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Michael Richins", + "version": "2.1.99" + }, + { + "id": "D1FA251F-4332-4BA9-8742-F194C0B0BF28", + "name": "chess-rook", + "codepoint": "F085B", + "aliases": [ + "chess-castle", + "chess-tower" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Michael Richins", + "version": "2.1.99" + }, + { + "id": "74ACC301-AA62-492B-92C1-8021BDD89A02", + "name": "chevron-double-down", + "codepoint": "F013C", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "76350FC3-7629-4247-9D09-8AB9AF9BC6CF", + "name": "chevron-double-left", + "codepoint": "F013D", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "E4B5D36C-A663-4D53-BE18-09393497556F", + "name": "chevron-double-right", + "codepoint": "F013E", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "53D302C9-3A0D-4104-967E-21D174E3C0B2", + "name": "chevron-double-up", + "codepoint": "F013F", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "84FE90C1-076D-4EA1-B56F-4C2582A39AC3", + "name": "chevron-down", + "codepoint": "F0140", + "aliases": [ + "expand-more", + "keyboard-arrow-down" + ], + "tags": [ + "Arrow" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "E2EFD734-594F-40ED-A263-3DFBB8E1B381", + "name": "chevron-down-box", + "codepoint": "F09D6", + "aliases": [], + "tags": [ + "Form", + "Arrow" + ], + "author": "Michael Irigoyen", + "version": "2.5.94" + }, + { + "id": "D299D24D-E65D-4A1F-953B-0AC936D25C58", + "name": "chevron-down-box-outline", + "codepoint": "F09D7", + "aliases": [], + "tags": [ + "Form", + "Arrow" + ], + "author": "Michael Irigoyen", + "version": "2.5.94" + }, + { + "id": "F312962F-0720-4145-89EA-6E3E9D60131D", + "name": "chevron-down-circle", + "codepoint": "F0B26", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "SarinManS", + "version": "2.8.94" + }, + { + "id": "3968656C-5ADA-44B4-AFAD-9437B1363C5D", + "name": "chevron-down-circle-outline", + "codepoint": "F0B27", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "SarinManS", + "version": "2.8.94" + }, + { + "id": "CF5607F2-4106-4D47-8FE6-B8F5A16E6D98", + "name": "chevron-left", + "codepoint": "F0141", + "aliases": [ + "keyboard-arrow-left", + "navigate-before" + ], + "tags": [ + "Arrow" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "7DC0F3E7-2E3F-49BD-874D-B17250FBA187", + "name": "chevron-left-box", + "codepoint": "F09D8", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Michael Irigoyen", + "version": "2.5.94" + }, + { + "id": "22B3AE2E-C625-4325-8FBE-A98AC004CEE6", + "name": "chevron-left-box-outline", + "codepoint": "F09D9", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Michael Irigoyen", + "version": "2.5.94" + }, + { + "id": "842FCAE6-0FE2-495D-980C-1ABA85257C77", + "name": "chevron-left-circle", + "codepoint": "F0B28", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "SarinManS", + "version": "2.8.94" + }, + { + "id": "DDBD357B-6E94-483F-9A09-0E2131FA8533", + "name": "chevron-left-circle-outline", + "codepoint": "F0B29", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "SarinManS", + "version": "2.8.94" + }, + { + "id": "A6D25AD4-462B-4185-B739-FBFCD3ACF3C3", + "name": "chevron-right", + "codepoint": "F0142", + "aliases": [ + "keyboard-arrow-right", + "navigate-next" + ], + "tags": [ + "Arrow" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "D9C230F8-C44C-4CE7-8DEF-891A531A1619", + "name": "chevron-right-box", + "codepoint": "F09DA", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Michael Irigoyen", + "version": "2.5.94" + }, + { + "id": "E96D0BE5-31CA-4C47-B91A-B8FB9FCB5D15", + "name": "chevron-right-box-outline", + "codepoint": "F09DB", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Michael Irigoyen", + "version": "2.5.94" + }, + { + "id": "A0F96469-2C19-48B6-A054-3F48656CE24F", + "name": "chevron-right-circle", + "codepoint": "F0B2A", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "SarinManS", + "version": "2.8.94" + }, + { + "id": "9AA7CA11-776D-413A-A08F-9E21AF0F963B", + "name": "chevron-right-circle-outline", + "codepoint": "F0B2B", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "SarinManS", + "version": "2.8.94" + }, + { + "id": "D922FD44-139A-4DEE-92A6-1BFCA39C8461", + "name": "chevron-triple-down", + "codepoint": "F0DB9", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.5.94" + }, + { + "id": "09E1A31D-448C-42D3-A220-2ACBD0D8B211", + "name": "chevron-triple-left", + "codepoint": "F0DBA", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.5.94" + }, + { + "id": "F80C6B02-D422-44FE-9199-B9E12EF523C8", + "name": "chevron-triple-right", + "codepoint": "F0DBB", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.5.94" + }, + { + "id": "C04D4C82-E95C-45E1-8582-89A24536026F", + "name": "chevron-triple-up", + "codepoint": "F0DBC", + "aliases": [ + "rank" + ], + "tags": [], + "author": "Google", + "version": "3.5.94" + }, + { + "id": "AECCC94F-C38A-4A97-879E-ACD09F89169A", + "name": "chevron-up", + "codepoint": "F0143", + "aliases": [ + "expand-less", + "keyboard-arrow-up", + "caret" + ], + "tags": [ + "Arrow", + "Math" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "C721C684-43CC-4B3B-B91A-A574D5215FF3", + "name": "chevron-up-box", + "codepoint": "F09DC", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Michael Irigoyen", + "version": "2.5.94" + }, + { + "id": "7660602A-34FB-4A1A-818B-A086CA1783BD", + "name": "chevron-up-box-outline", + "codepoint": "F09DD", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Michael Irigoyen", + "version": "2.5.94" + }, + { + "id": "981C36F0-6F33-4A92-B20E-66E70BF474FA", + "name": "chevron-up-circle", + "codepoint": "F0B2C", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "SarinManS", + "version": "2.8.94" + }, + { + "id": "625319CF-2277-486A-9FB6-902F3F3FE212", + "name": "chevron-up-circle-outline", + "codepoint": "F0B2D", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "SarinManS", + "version": "2.8.94" + }, + { + "id": "E39C0619-71BD-4EE7-932C-2025F7174550", + "name": "chili-alert", + "codepoint": "F17EA", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "783609FD-2EDD-4273-9524-6FB6CAD6697B", + "name": "chili-alert-outline", + "codepoint": "F17EB", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "E868226C-7BE8-4A22-8A9A-8E040004016A", + "name": "chili-hot", + "codepoint": "F07B2", + "aliases": [ + "chilli-hot", + "pepper", + "spicy" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Andy Martinez", + "version": "2.0.46" + }, + { + "id": "AB432B2A-F29D-4F6D-B6E3-46C19C544B40", + "name": "chili-hot-outline", + "codepoint": "F17EC", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "C9DA0BF5-09DD-46A9-AE62-1612B26F0BB1", + "name": "chili-medium", + "codepoint": "F07B3", + "aliases": [ + "chilli-medium", + "pepper", + "spicy" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Andy Martinez", + "version": "2.0.46" + }, + { + "id": "6C57AD0C-11EA-4710-87D4-462B94821A4C", + "name": "chili-medium-outline", + "codepoint": "F17ED", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "3CE5B420-F103-47EA-800C-A4D145B89508", + "name": "chili-mild", + "codepoint": "F07B4", + "aliases": [ + "chilli-mild", + "pepper", + "spicy" + ], + "tags": [ + "Food \/ Drink", + "Agriculture" + ], + "author": "Andy Martinez", + "version": "2.0.46" + }, + { + "id": "21ECB1D3-C620-4FEF-A6A9-4210D859DE1F", + "name": "chili-mild-outline", + "codepoint": "F17EE", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "F92E010E-F45D-44CE-8F13-F6419010B0D2", + "name": "chili-off", + "codepoint": "F1467", + "aliases": [ + "chilli-off", + "pepper-off", + "spicy-off" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "64F2DC11-3647-4EEC-AADF-3EAE1AA47B65", + "name": "chili-off-outline", + "codepoint": "F17EF", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "A535271B-1114-44AD-9D9D-1984905026FF", + "name": "chip", + "codepoint": "F061A", + "aliases": [ + "integrated-circuit" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.6.50" + }, + { + "id": "82E4FDFE-C9C8-4087-ABCC-DF51F760379A", + "name": "church", + "codepoint": "F0144", + "aliases": [], + "tags": [ + "Religion", + "Places" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "4E50E8E9-4283-4B08-9AB2-6283088898BB", + "name": "cigar", + "codepoint": "F1189", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "4.4.95" + }, + { + "id": "BC451ECE-B21F-43F6-AE1C-D9E3614E4406", + "name": "cigar-off", + "codepoint": "F141B", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "59803983-F6CE-4D40-B83C-36D42C9464A9", + "name": "circle", + "codepoint": "F0765", + "aliases": [ + "lens" + ], + "tags": [ + "Shape" + ], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "3E57AA64-D7C2-4C4E-BE87-58A6D775BC21", + "name": "circle-box", + "codepoint": "F15DC", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.6.55" + }, + { + "id": "4A709F16-7813-44DA-AB19-EBEBB4A6718A", + "name": "circle-box-outline", + "codepoint": "F15DD", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.6.55" + }, + { + "id": "02A447DB-D9DB-4568-B839-841F1401FD31", + "name": "circle-double", + "codepoint": "F0E95", + "aliases": [], + "tags": [ + "Shape" + ], + "author": "ginlime", + "version": "3.7.94" + }, + { + "id": "7C0E615F-A0DC-4689-A094-4E59D27675B3", + "name": "circle-edit-outline", + "codepoint": "F08D5", + "aliases": [], + "tags": [ + "Edit \/ Modify" + ], + "author": "Google", + "version": "2.3.50" + }, + { + "id": "6262A121-B53E-4429-8E8E-F05A6820EDC7", + "name": "circle-expand", + "codepoint": "F0E96", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.7.94" + }, + { + "id": "901AA3C4-B9A4-4764-ABA4-FD51FA6D68ED", + "name": "circle-half", + "codepoint": "F1395", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "5.0.45" + }, + { + "id": "D066B111-84BC-4682-864B-CAFEE4A93F66", + "name": "circle-half-full", + "codepoint": "F1396", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "5.0.45" + }, + { + "id": "AB8D0574-712C-4403-A5A5-51E16C081605", + "name": "circle-medium", + "codepoint": "F09DE", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "2.5.94" + }, + { + "id": "C05A4C2F-8128-474F-B204-D782A332CB73", + "name": "circle-multiple", + "codepoint": "F0B38", + "aliases": [ + "coins" + ], + "tags": [ + "Currency", + "Banking" + ], + "author": "Michael Richins", + "version": "2.8.94" + }, + { + "id": "BAD0A147-6CA0-4BCF-88DF-8E8A4C247B0E", + "name": "circle-multiple-outline", + "codepoint": "F0695", + "aliases": [ + "toll", + "coins-outline" + ], + "tags": [ + "Currency", + "Banking" + ], + "author": "Google", + "version": "1.7.12" + }, + { + "id": "5DC46127-B07A-4E2B-B3BA-A98C0D2942F4", + "name": "circle-off-outline", + "codepoint": "F10D3", + "aliases": [ + "null-off" + ], + "tags": [], + "author": "Simran", + "version": "4.3.95" + }, + { + "id": "912F4CEF-F852-49C4-B9BB-A6504988C11E", + "name": "circle-opacity", + "codepoint": "F1853", + "aliases": [ + "circle-transparent" + ], + "tags": [ + "Shape", + "Drawing \/ Art" + ], + "author": "Michael Irigoyen", + "version": "6.2.95" + }, + { + "id": "00E1BEF8-DD84-4DCE-BE3C-8AA411DCE5FD", + "name": "circle-outline", + "codepoint": "F0766", + "aliases": [ + "null" + ], + "tags": [ + "Shape" + ], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "40F6544B-8BBE-44AD-85A2-FDFA1AD8091E", + "name": "circle-slice-1", + "codepoint": "F0A9E", + "aliases": [], + "tags": [], + "author": "SarinManS", + "version": "2.7.94" + }, + { + "id": "520A592A-21BB-4D8C-835F-BEF1EF0B73D0", + "name": "circle-slice-2", + "codepoint": "F0A9F", + "aliases": [], + "tags": [], + "author": "SarinManS", + "version": "2.7.94" + }, + { + "id": "FE0AA2ED-07F6-4BC4-876E-1FA6BA283130", + "name": "circle-slice-3", + "codepoint": "F0AA0", + "aliases": [], + "tags": [], + "author": "SarinManS", + "version": "2.7.94" + }, + { + "id": "12C46927-0235-4A3A-965B-287879A4C2E3", + "name": "circle-slice-4", + "codepoint": "F0AA1", + "aliases": [], + "tags": [], + "author": "SarinManS", + "version": "2.7.94" + }, + { + "id": "4AA85ADE-6180-453B-A62E-2819E92E779A", + "name": "circle-slice-5", + "codepoint": "F0AA2", + "aliases": [], + "tags": [], + "author": "SarinManS", + "version": "2.7.94" + }, + { + "id": "658050F8-5C9A-4C5C-BE99-8EB492524586", + "name": "circle-slice-6", + "codepoint": "F0AA3", + "aliases": [], + "tags": [], + "author": "SarinManS", + "version": "2.7.94" + }, + { + "id": "A051B0B2-A0CB-4E51-87F8-242EA4A4777F", + "name": "circle-slice-7", + "codepoint": "F0AA4", + "aliases": [], + "tags": [], + "author": "SarinManS", + "version": "2.7.94" + }, + { + "id": "CB0FC186-2B53-4802-A9DB-98CF07B78CF1", + "name": "circle-slice-8", + "codepoint": "F0AA5", + "aliases": [], + "tags": [], + "author": "SarinManS", + "version": "2.7.94" + }, + { + "id": "0EA34D8C-1A02-4A92-8293-991702ABD065", + "name": "circle-small", + "codepoint": "F09DF", + "aliases": [ + "bullet", + "multiplication", + "dot" + ], + "tags": [ + "Math" + ], + "author": "Michael Irigoyen", + "version": "2.5.94" + }, + { + "id": "4CC37629-C3B9-4F3B-BA36-4B93A3CDE297", + "name": "circular-saw", + "codepoint": "F0E22", + "aliases": [], + "tags": [ + "Hardware \/ Tools" + ], + "author": "Augustin Ursu", + "version": "3.6.95" + }, + { + "id": "5A5AC571-1818-45D0-8259-A9177DBED615", + "name": "city", + "codepoint": "F0146", + "aliases": [ + "location-city" + ], + "tags": [ + "Places" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "2F6976DF-1008-496D-802D-917F6EA5F7DB", + "name": "city-variant", + "codepoint": "F0A36", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "2.6.95" + }, + { + "id": "1DECCCEC-93F2-4BD8-BEFD-370D5020DCDB", + "name": "city-variant-outline", + "codepoint": "F0A37", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "2.6.95" + }, + { + "id": "423D4239-D8DC-4D8B-9365-9D51E2A0FDF7", + "name": "clipboard", + "codepoint": "F0147", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "C45D118E-4FFA-42E5-A18B-B8A7B58BF42F", + "name": "clipboard-account", + "codepoint": "F0148", + "aliases": [ + "clipboard-user", + "assignment-ind", + "clipboard-person" + ], + "tags": [ + "Account \/ User" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "80D8F0AA-0B3A-47ED-B342-8681E0DD7450", + "name": "clipboard-account-outline", + "codepoint": "F0C55", + "aliases": [ + "clipboard-user-outline", + "clipboard-person-outline", + "assignment-ind-outline" + ], + "tags": [ + "Account \/ User" + ], + "author": "James Coyle", + "version": "3.2.89" + }, + { + "id": "57AC4C5E-B2AB-42B5-9826-BCFEACCB2E7C", + "name": "clipboard-alert", + "codepoint": "F0149", + "aliases": [ + "clipboard-warning", + "assignment-late" + ], + "tags": [ + "Alert \/ Error" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "321F2AC5-C710-4AD5-A493-279435DF0074", + "name": "clipboard-alert-outline", + "codepoint": "F0CF7", + "aliases": [ + "clipboard-warning-outline" + ], + "tags": [ + "Alert \/ Error" + ], + "author": "James Coyle", + "version": "3.3.92" + }, + { + "id": "863E0318-495E-437A-B22B-3C1274D108E6", + "name": "clipboard-arrow-down", + "codepoint": "F014A", + "aliases": [ + "assignment-returned", + "clipboard-arrow-bottom" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "0FB11B14-8890-432D-A4B0-7D359DE681D8", + "name": "clipboard-arrow-down-outline", + "codepoint": "F0C56", + "aliases": [ + "assignment-returned-outline", + "clipboard-arrow-bottom-outline" + ], + "tags": [], + "author": "Google", + "version": "3.2.89" + }, + { + "id": "1D6DD9E5-61EA-40E6-A19A-EF4BA71B0FC0", + "name": "clipboard-arrow-left", + "codepoint": "F014B", + "aliases": [ + "assignment-return" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "38CF4CD8-7203-4E66-BAD3-A3A7B4900BD4", + "name": "clipboard-arrow-left-outline", + "codepoint": "F0CF8", + "aliases": [], + "tags": [], + "author": "James Coyle", + "version": "3.3.92" + }, + { + "id": "4BD76170-F83F-4145-982F-3F1EBAD22D59", + "name": "clipboard-arrow-right", + "codepoint": "F0CF9", + "aliases": [], + "tags": [], + "author": "James Coyle", + "version": "3.3.92" + }, + { + "id": "7DB95067-893D-4472-8D74-79E521AE0DD1", + "name": "clipboard-arrow-right-outline", + "codepoint": "F0CFA", + "aliases": [], + "tags": [], + "author": "James Coyle", + "version": "3.3.92" + }, + { + "id": "5F084570-4F64-4A94-A762-602350ACEDAA", + "name": "clipboard-arrow-up", + "codepoint": "F0C57", + "aliases": [ + "clipboard-arrow-top" + ], + "tags": [], + "author": "James Coyle", + "version": "3.2.89" + }, + { + "id": "15ED4DA3-08C5-4913-9FEB-A88CEED7DDE9", + "name": "clipboard-arrow-up-outline", + "codepoint": "F0C58", + "aliases": [ + "clipboard-arrow-top-outline" + ], + "tags": [], + "author": "James Coyle", + "version": "3.2.89" + }, + { + "id": "2FA574EF-C285-465F-A254-868506FA4273", + "name": "clipboard-check", + "codepoint": "F014E", + "aliases": [ + "assignment-turned-in", + "clipboard-tick" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "6DBE3F30-C444-443C-A515-75657C468338", + "name": "clipboard-check-multiple", + "codepoint": "F1263", + "aliases": [], + "tags": [], + "author": "frankgrinaert", + "version": "4.7.95" + }, + { + "id": "2FB7020B-64CC-4CA8-A46E-0D3E5B65A697", + "name": "clipboard-check-multiple-outline", + "codepoint": "F1264", + "aliases": [], + "tags": [], + "author": "frankgrinaert", + "version": "4.7.95" + }, + { + "id": "6A0DFB73-2DBF-4D3C-8C6B-2B4758B11782", + "name": "clipboard-check-outline", + "codepoint": "F08A8", + "aliases": [ + "clipboard-tick-outline" + ], + "tags": [], + "author": "James Coyle", + "version": "2.2.43" + }, + { + "id": "E276DDBC-9E61-4CE3-8168-6E896E6ADD98", + "name": "clipboard-clock", + "codepoint": "F16E2", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "D9132053-ADBE-417D-A00B-207B8F1C85A7", + "name": "clipboard-clock-outline", + "codepoint": "F16E3", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "BA08B631-B169-4C0F-A99B-BBECC9F18CAA", + "name": "clipboard-edit", + "codepoint": "F14E5", + "aliases": [], + "tags": [ + "Edit \/ Modify" + ], + "author": "Alison Moura", + "version": "5.4.55" + }, + { + "id": "E316EB8B-FF99-4B85-AE09-C7E5A9656738", + "name": "clipboard-edit-outline", + "codepoint": "F14E6", + "aliases": [], + "tags": [ + "Edit \/ Modify" + ], + "author": "Alison Moura", + "version": "5.4.55" + }, + { + "id": "CE6923D5-218F-4817-B904-E03A842CE696", + "name": "clipboard-file", + "codepoint": "F1265", + "aliases": [], + "tags": [], + "author": "frankgrinaert", + "version": "4.7.95" + }, + { + "id": "B9BE1636-2925-4AA2-B21A-1EE197FA7774", + "name": "clipboard-file-outline", + "codepoint": "F1266", + "aliases": [], + "tags": [], + "author": "frankgrinaert", + "version": "4.7.95" + }, + { + "id": "5A450EF8-D2F0-4F32-8D10-A606DD847E19", + "name": "clipboard-flow", + "codepoint": "F06C8", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "1.8.36" + }, + { + "id": "5EA9A77D-401F-48C8-B804-EE8B9A7CB229", + "name": "clipboard-flow-outline", + "codepoint": "F1117", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.3.95" + }, + { + "id": "754100C6-667F-49AD-A5C5-0FF2AD94C6DF", + "name": "clipboard-list", + "codepoint": "F10D4", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.3.95" + }, + { + "id": "9169E4CD-137E-4743-96A7-80B5764630FF", + "name": "clipboard-list-outline", + "codepoint": "F10D5", + "aliases": [], + "tags": [], + "author": "kevin-hens", + "version": "4.3.95" + }, + { + "id": "7C5309A2-5DA1-4393-8846-0CF5CB43BF88", + "name": "clipboard-minus", + "codepoint": "F1618", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "F83888C2-F7CF-423E-9101-2D9A49A6597B", + "name": "clipboard-minus-outline", + "codepoint": "F1619", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "8CD0EB09-AC6D-43C7-8DD6-4F2FD9A1DBC5", + "name": "clipboard-multiple", + "codepoint": "F1267", + "aliases": [], + "tags": [], + "author": "frankgrinaert", + "version": "4.7.95" + }, + { + "id": "81D9B376-8054-4DB5-BA79-274E4B3EF79D", + "name": "clipboard-multiple-outline", + "codepoint": "F1268", + "aliases": [], + "tags": [], + "author": "frankgrinaert", + "version": "4.7.95" + }, + { + "id": "376FB5C9-DF1A-455B-9824-5D0A3CE61481", + "name": "clipboard-off", + "codepoint": "F161A", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "86166B5D-05DD-423B-B10E-E67010AEBE58", + "name": "clipboard-off-outline", + "codepoint": "F161B", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "54F34575-7348-4032-B072-EC8F9A6C843D", + "name": "clipboard-outline", + "codepoint": "F014C", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "F0E26160-95CF-4270-8FD2-134391B88CA8", + "name": "clipboard-play", + "codepoint": "F0C59", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "3.2.89" + }, + { + "id": "E78AF95D-A3B1-483C-9F46-B503AEF6B4C0", + "name": "clipboard-play-multiple", + "codepoint": "F1269", + "aliases": [], + "tags": [], + "author": "frankgrinaert", + "version": "4.7.95" + }, + { + "id": "2FCD745F-4980-4CAA-A51D-94574CAB1DA4", + "name": "clipboard-play-multiple-outline", + "codepoint": "F126A", + "aliases": [], + "tags": [], + "author": "frankgrinaert", + "version": "4.7.95" + }, + { + "id": "B2D48D43-940B-4758-A9E1-00E13202B239", + "name": "clipboard-play-outline", + "codepoint": "F0C5A", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "3.2.89" + }, + { + "id": "A5AA9DEA-AAAE-4C79-965F-6828F823E2CD", + "name": "clipboard-plus", + "codepoint": "F0751", + "aliases": [ + "clipboard-add" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "4662F629-FEF3-4F7A-A901-56FF827CF051", + "name": "clipboard-plus-outline", + "codepoint": "F131F", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "8E3D93CC-DE0A-4828-AC9A-9A6CFD932978", + "name": "clipboard-pulse", + "codepoint": "F085D", + "aliases": [ + "clipboard-vitals" + ], + "tags": [ + "Medical \/ Hospital" + ], + "author": "Simran", + "version": "2.1.99" + }, + { + "id": "8D6CA1DD-35D6-4E8E-BDA0-6192728A24C4", + "name": "clipboard-pulse-outline", + "codepoint": "F085E", + "aliases": [ + "clipboard-vitals-outline" + ], + "tags": [ + "Medical \/ Hospital" + ], + "author": "Simran", + "version": "2.1.99" + }, + { + "id": "474C3746-90C6-456C-9B18-6101FFC8075B", + "name": "clipboard-remove", + "codepoint": "F161C", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "57C00F9A-7204-402F-9AF9-908A02C23681", + "name": "clipboard-remove-outline", + "codepoint": "F161D", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "785666E6-8CB0-4875-A289-1A9329614E69", + "name": "clipboard-search", + "codepoint": "F161E", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "9D8E08D1-6F72-4729-AF64-ED099D109B7D", + "name": "clipboard-search-outline", + "codepoint": "F161F", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "81453216-6EC0-4751-82A4-BFFF63B922FC", + "name": "clipboard-text", + "codepoint": "F014D", + "aliases": [ + "assignment" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "EEFDB836-DFC2-43ED-9246-05B972EA2B57", + "name": "clipboard-text-clock", + "codepoint": "F18F9", + "aliases": [ + "clipboard-text-date", + "clipboard-text-time", + "clipboard-text-history" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.3.95" + }, + { + "id": "9A710A09-DB02-441E-A5E6-204937893D50", + "name": "clipboard-text-clock-outline", + "codepoint": "F18FA", + "aliases": [ + "clipboard-text-date-outline", + "clipboard-text-time-outline", + "clipboard-text-history-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.3.95" + }, + { + "id": "37090A31-A50D-43AB-92C4-BFB2C17273E6", + "name": "clipboard-text-multiple", + "codepoint": "F126B", + "aliases": [], + "tags": [], + "author": "frankgrinaert", + "version": "4.7.95" + }, + { + "id": "4FF17874-C828-4EA8-9F4D-BEAEB614D69F", + "name": "clipboard-text-multiple-outline", + "codepoint": "F126C", + "aliases": [], + "tags": [], + "author": "frankgrinaert", + "version": "4.7.95" + }, + { + "id": "237A2797-5013-4A50-9CB9-59FFEEC5BE4E", + "name": "clipboard-text-off", + "codepoint": "F1620", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "A5B09C9E-6430-4F6E-BA1C-D855ED6AB74C", + "name": "clipboard-text-off-outline", + "codepoint": "F1621", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "9C5136D5-E614-4DBD-AB36-EBB044178B6D", + "name": "clipboard-text-outline", + "codepoint": "F0A38", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "2.6.95" + }, + { + "id": "15B53AD7-FB72-4D70-8F70-B2259281EA2B", + "name": "clipboard-text-play", + "codepoint": "F0C5B", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "3.2.89" + }, + { + "id": "A1587F0D-C189-4886-9CB0-FBA5E3FA70E6", + "name": "clipboard-text-play-outline", + "codepoint": "F0C5C", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "3.2.89" + }, + { + "id": "347494DF-0250-4F0E-9E64-23CB8F35B8C2", + "name": "clipboard-text-search", + "codepoint": "F1622", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "1E23BABF-F9E8-42C6-9199-0B3B6C43C290", + "name": "clipboard-text-search-outline", + "codepoint": "F1623", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "6B346FB6-F563-4AC4-B769-06A143B42152", + "name": "clippy", + "codepoint": "F014F", + "aliases": [], + "tags": [], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "90E7BBD9-12C3-4339-94DE-99A049C8D4B1", + "name": "clock", + "codepoint": "F0954", + "aliases": [ + "watch-later" + ], + "tags": [ + "Date \/ Time" + ], + "author": "Google", + "version": "2.4.85" + }, + { + "id": "A4250284-2784-405C-A62F-E6C546D66777", + "name": "clock-alert", + "codepoint": "F0955", + "aliases": [ + "clock-warning" + ], + "tags": [ + "Date \/ Time", + "Alert \/ Error" + ], + "author": "Simran", + "version": "2.4.85" + }, + { + "id": "CB400FB2-95E5-4420-B579-80DCA5C0F8B0", + "name": "clock-alert-outline", + "codepoint": "F05CE", + "aliases": [ + "clock-warning" + ], + "tags": [ + "Date \/ Time", + "Alert \/ Error" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "46C840CA-A3F7-4293-8ABC-28C285723A8A", + "name": "clock-check", + "codepoint": "F0FA8", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Michael Irigoyen", + "version": "4.0.96" + }, + { + "id": "DC1289EA-B14C-403D-9A76-4C28CB042FAA", + "name": "clock-check-outline", + "codepoint": "F0FA9", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Michael Irigoyen", + "version": "4.0.96" + }, + { + "id": "EFE4304F-7BAB-4DB6-846C-31B368CA3BDC", + "name": "clock-digital", + "codepoint": "F0E97", + "aliases": [], + "tags": [ + "Date \/ Time", + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "3.7.94" + }, + { + "id": "2F115531-58CA-4BC0-A271-C8202C4ADE37", + "name": "clock-edit", + "codepoint": "F19BA", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Sidney Alcantara", + "version": "6.5.95" + }, + { + "id": "E528826E-0ACC-494C-AFA3-B0AFF7FD802A", + "name": "clock-edit-outline", + "codepoint": "F19BB", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Sidney Alcantara", + "version": "6.5.95" + }, + { + "id": "F7F5CA75-E8B5-45E1-B0BA-040F225D877D", + "name": "clock-end", + "codepoint": "F0151", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "111210EB-0EF4-4DCB-ABBD-6A75F15EEB44", + "name": "clock-fast", + "codepoint": "F0152", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "6483D8DB-4170-4104-8A69-40D28401EF4C", + "name": "clock-in", + "codepoint": "F0153", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "009901AA-479B-419A-89F8-DA4453B5991B", + "name": "clock-minus", + "codepoint": "F1863", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Michael Irigoyen", + "version": "6.2.95" + }, + { + "id": "F7112A68-9EE1-4B5E-AD2B-30013EA7053A", + "name": "clock-minus-outline", + "codepoint": "F1864", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Dylan Oli", + "version": "6.2.95" + }, + { + "id": "7C3F10AF-CB56-4A35-B22A-C833D5C823A3", + "name": "clock-out", + "codepoint": "F0154", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "E3A4F70D-92EF-4115-BBB3-3BE68A788F5D", + "name": "clock-outline", + "codepoint": "F0150", + "aliases": [ + "access-time", + "query-builder", + "schedule" + ], + "tags": [ + "Date \/ Time" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "60639801-D950-4C9E-86B7-E8C2928F356D", + "name": "clock-plus", + "codepoint": "F1861", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Michael Irigoyen", + "version": "6.2.95" + }, + { + "id": "DCE6FA3E-EEB6-4AB9-B4D7-60F71B92A489", + "name": "clock-plus-outline", + "codepoint": "F1862", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Dylan Oli", + "version": "6.2.95" + }, + { + "id": "6B8FD378-5837-45BF-A5A6-B94C37641451", + "name": "clock-remove", + "codepoint": "F1865", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Michael Irigoyen", + "version": "6.2.95" + }, + { + "id": "29131074-EFF5-4A47-88A2-D856CB92432F", + "name": "clock-remove-outline", + "codepoint": "F1866", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Dylan Oli", + "version": "6.2.95" + }, + { + "id": "85A4435A-CDCF-42BC-8F2C-B46EDF8820BD", + "name": "clock-start", + "codepoint": "F0155", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "A215B597-8863-41CD-93D7-3258F35E0323", + "name": "clock-time-eight", + "codepoint": "F1446", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "BD5AEE68-BAA7-498A-9C16-E4BAEEC10758", + "name": "clock-time-eight-outline", + "codepoint": "F1452", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "F00F4BD4-FA53-4F36-A6EF-20C61E728DE4", + "name": "clock-time-eleven", + "codepoint": "F1449", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "A157DC0E-2973-49C5-83A6-A59B395000B0", + "name": "clock-time-eleven-outline", + "codepoint": "F1455", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "5EADCD37-E186-4701-B55D-490373E248DE", + "name": "clock-time-five", + "codepoint": "F1443", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "8F93B149-9B68-43A0-9DB6-BCE3AF32DA17", + "name": "clock-time-five-outline", + "codepoint": "F144F", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "5850EAB7-9808-4FC7-B107-ECBC0D74321A", + "name": "clock-time-four", + "codepoint": "F1442", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "3EB1620A-C31A-4570-A0CA-4D4B1194B5FC", + "name": "clock-time-four-outline", + "codepoint": "F144E", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "DA361B2F-72DD-46ED-9920-558A9AD81B3B", + "name": "clock-time-nine", + "codepoint": "F1447", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "B3B33DCF-9627-4286-8D43-674E066D5CF8", + "name": "clock-time-nine-outline", + "codepoint": "F1453", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "FE16FC41-411F-423D-96AC-835A334051DF", + "name": "clock-time-one", + "codepoint": "F143F", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "CD2F6CA1-A725-4997-9EDF-7CDD3875997D", + "name": "clock-time-one-outline", + "codepoint": "F144B", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "814B2984-F25E-40EE-98E7-9CDCE300AA0C", + "name": "clock-time-seven", + "codepoint": "F1445", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "0249D6C9-BACD-4514-96DB-6ABF4C8756C4", + "name": "clock-time-seven-outline", + "codepoint": "F1451", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "58E0112F-0E05-4C53-8AF2-663009045010", + "name": "clock-time-six", + "codepoint": "F1444", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "D8D8CBCB-DCCF-4FB0-A6E2-3D45E732AD90", + "name": "clock-time-six-outline", + "codepoint": "F1450", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "5EE154C9-B581-4AB9-A086-38AE96A919E1", + "name": "clock-time-ten", + "codepoint": "F1448", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "DDACEAB9-676D-4D4A-9508-CE1241D983BC", + "name": "clock-time-ten-outline", + "codepoint": "F1454", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "DA0656E4-D609-441D-93C3-488D36BB9BDA", + "name": "clock-time-three", + "codepoint": "F1441", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "465F6D88-CD51-4BA8-AFBE-0D20845906DD", + "name": "clock-time-three-outline", + "codepoint": "F144D", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "CEA21098-6201-4E2F-A24E-865B4FFD7870", + "name": "clock-time-twelve", + "codepoint": "F144A", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "375B6D36-CFC4-4DB4-BFDE-364E129EDFBB", + "name": "clock-time-twelve-outline", + "codepoint": "F1456", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "3F6D9697-9536-4D51-87D3-839E7579451B", + "name": "clock-time-two", + "codepoint": "F1440", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "20918EE1-9806-4E1D-BD7C-A723AC2A97FF", + "name": "clock-time-two-outline", + "codepoint": "F144C", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "FEA26660-7D6A-4C2A-9F13-7AE125FBA543", + "name": "close", + "codepoint": "F0156", + "aliases": [ + "clear", + "multiply", + "remove", + "cancel" + ], + "tags": [ + "Math" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "0823D18B-529A-4B7E-8090-A913399A3D5E", + "name": "close-box", + "codepoint": "F0157", + "aliases": [ + "multiply-box", + "clear-box", + "cancel-box", + "remove-box" + ], + "tags": [ + "Math" + ], + "author": "Gabriel", + "version": "1.5.54" + }, + { + "id": "63F3E252-98F2-4851-A887-E99FACD6B280", + "name": "close-box-multiple", + "codepoint": "F0C5D", + "aliases": [ + "close-boxes", + "library-remove", + "library-close", + "multiply-boxes", + "multiply-box-multiple", + "cancel-box-multiple", + "remove-box-multiple" + ], + "tags": [], + "author": "Michael Richins", + "version": "3.2.89" + }, + { + "id": "596F26BB-8E10-4530-98CE-FFDACBF07F6B", + "name": "close-box-multiple-outline", + "codepoint": "F0C5E", + "aliases": [ + "close-boxes-outline", + "library-remove-outline", + "library-close-outline", + "multiply-boxes-outline", + "multiply-box-multiple-outline", + "remove-box-multiple", + "cancel-box-multiple" + ], + "tags": [], + "author": "Michael Richins", + "version": "3.2.89" + }, + { + "id": "05B8E566-B224-4ECC-AE70-2BF8BE90C82A", + "name": "close-box-outline", + "codepoint": "F0158", + "aliases": [ + "multiply-box-outline", + "clear-box-outline", + "remove-box-outline", + "cancel-box-outline" + ], + "tags": [ + "Math" + ], + "author": "Gabriel", + "version": "1.5.54" + }, + { + "id": "DC0E1491-A8A0-4563-ACEC-C795D96602A7", + "name": "close-circle", + "codepoint": "F0159", + "aliases": [ + "remove-circle", + "cancel-circle", + "multiply-circle", + "clear-circle" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "77B97AED-2613-434C-BD9C-82755C8B468C", + "name": "close-circle-multiple", + "codepoint": "F062A", + "aliases": [ + "remove-circle-multiple", + "coins-close", + "coins-remove", + "clear-circle-multiple", + "multiply-circle-multiple" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "1.6.50" + }, + { + "id": "B77F1750-F3D8-43A5-A2D1-EEF2E3EB584B", + "name": "close-circle-multiple-outline", + "codepoint": "F0883", + "aliases": [ + "remove-circle-multiple-outline", + "coins-close-outline", + "coins-remove-outline", + "cancel-circle-multiple-outline", + "multiply-circle-multiple-outline", + "clear-circle-multiple-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "2.1.99" + }, + { + "id": "EA41E6BB-A176-4E0E-896A-36F9FA5AA62F", + "name": "close-circle-outline", + "codepoint": "F015A", + "aliases": [ + "highlight-off", + "multiply-circle-outline", + "remove-circle-outline", + "clear-circle-outline", + "cancel-circle-outline" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "4043C369-E619-47E9-9363-E5E9C43457FB", + "name": "close-network", + "codepoint": "F015B", + "aliases": [ + "remove-network", + "cancel-network", + "multiply-network", + "clear-network" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "6BB0D686-C2A2-47D0-A50C-91E0300AF12E", + "name": "close-network-outline", + "codepoint": "F0C5F", + "aliases": [ + "remove-network-outline", + "cancel-network-outline", + "multiply-network-outline", + "clear-network-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "BA7E9F56-A5F5-4BEE-8934-90CA070A6029", + "name": "close-octagon", + "codepoint": "F015C", + "aliases": [ + "dangerous", + "multiply-octagon", + "remove-octagon", + "cancel-octagon", + "clear-octagon", + "stop-remove" + ], + "tags": [], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "9676C4C3-D8C3-44A6-A447-59A56A15DA34", + "name": "close-octagon-outline", + "codepoint": "F015D", + "aliases": [ + "remove-octagon-outline", + "multiply-octagon-outline", + "clear-octagon-outline", + "cancel-octagon-outline", + "stop-remove-outline" + ], + "tags": [], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "2FEE0020-4271-487C-897D-75529B20C4C6", + "name": "close-outline", + "codepoint": "F06C9", + "aliases": [ + "remove-outline", + "cancel-outline", + "multiply-outline", + "clear-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "1.8.36" + }, + { + "id": "C6B8442F-446D-4690-866F-AF0F27C1EAB2", + "name": "close-thick", + "codepoint": "F1398", + "aliases": [ + "close-bold", + "remove-thick", + "remove-bold", + "multiply-thick", + "multiply-bold", + "clear-thick", + "clear-bold", + "cancel-thick", + "cancel-bold" + ], + "tags": [], + "author": "Austin Andrews", + "version": "5.0.45" + }, + { + "id": "5367B460-F7E5-46C5-A4F5-40B339BF9DAD", + "name": "closed-caption", + "codepoint": "F015E", + "aliases": [ + "cc" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "08F32D33-77C4-4FEB-AAF6-04468AF0875F", + "name": "closed-caption-outline", + "codepoint": "F0DBD", + "aliases": [ + "cc-outline" + ], + "tags": [], + "author": "Google", + "version": "3.5.94" + }, + { + "id": "CF07C502-388E-4A65-BD89-FACCFD00C245", + "name": "cloud", + "codepoint": "F015F", + "aliases": [ + "wb-cloudy" + ], + "tags": [ + "Cloud", + "Weather" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "4ACCBA06-78DB-492F-98F6-08AEE743744A", + "name": "cloud-alert", + "codepoint": "F09E0", + "aliases": [ + "cloud-warning" + ], + "tags": [ + "Alert \/ Error", + "Cloud", + "Weather" + ], + "author": "TheChilliPL", + "version": "2.5.94" + }, + { + "id": "6ED02FDD-323E-4004-9D7B-336F2402DF8E", + "name": "cloud-braces", + "codepoint": "F07B5", + "aliases": [ + "cloud-json" + ], + "tags": [ + "Cloud" + ], + "author": "Andy Martinez", + "version": "2.0.46" + }, + { + "id": "5B607B90-B492-43AD-A5B0-4AC800A9F7DA", + "name": "cloud-check", + "codepoint": "F0160", + "aliases": [ + "cloud-done", + "cloud-tick" + ], + "tags": [ + "Cloud" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "A56D0A20-FC19-455F-B1E8-3CA24270957A", + "name": "cloud-check-outline", + "codepoint": "F12CC", + "aliases": [], + "tags": [ + "Cloud" + ], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "06BCD41B-8BFF-43C0-88A1-69F262C51C5F", + "name": "cloud-circle", + "codepoint": "F0161", + "aliases": [], + "tags": [ + "Cloud" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "D8C49CD8-61B2-4F34-A4B8-543396B4A610", + "name": "cloud-download", + "codepoint": "F0162", + "aliases": [], + "tags": [ + "Cloud" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "41CC8340-22F2-4C91-BA1E-97E3A0EA461F", + "name": "cloud-download-outline", + "codepoint": "F0B7D", + "aliases": [], + "tags": [ + "Cloud" + ], + "author": "Google", + "version": "3.0.39" + }, + { + "id": "8F0ED421-A552-4920-A46D-13F246A25689", + "name": "cloud-lock", + "codepoint": "F11F1", + "aliases": [], + "tags": [ + "Cloud", + "Lock" + ], + "author": "Michael Richins", + "version": "4.5.95" + }, + { + "id": "9ADC05C4-6BC2-4D66-80B0-CB6677A08271", + "name": "cloud-lock-outline", + "codepoint": "F11F2", + "aliases": [], + "tags": [ + "Cloud", + "Lock" + ], + "author": "Michael Richins", + "version": "4.5.95" + }, + { + "id": "E19C3062-FFE5-441C-91C8-B1792E3AA3CA", + "name": "cloud-off-outline", + "codepoint": "F0164", + "aliases": [], + "tags": [ + "Cloud" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "6EBE020D-405B-4E36-8B47-CAC6FAF1166C", + "name": "cloud-outline", + "codepoint": "F0163", + "aliases": [ + "cloud-queue" + ], + "tags": [ + "Cloud", + "Weather" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "DB32F759-BA18-488B-9260-9A38529BE7A8", + "name": "cloud-print", + "codepoint": "F0165", + "aliases": [], + "tags": [ + "Cloud", + "Printer", + "Home Automation" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "7B3F8F72-1F4B-429A-B969-8E42ADBBD3E1", + "name": "cloud-print-outline", + "codepoint": "F0166", + "aliases": [], + "tags": [ + "Cloud", + "Printer", + "Home Automation" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "C36FF6E2-EF4E-4FD1-9620-9580BC48B325", + "name": "cloud-question", + "codepoint": "F0A39", + "aliases": [], + "tags": [ + "Cloud" + ], + "author": "Michael Irigoyen", + "version": "2.6.95" + }, + { + "id": "1771EA83-96FC-4A06-8A03-E4048C9F9C27", + "name": "cloud-refresh", + "codepoint": "F052A", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "BF384FFB-7E5D-4C2E-ADC5-4BEEAF61A81C", + "name": "cloud-search", + "codepoint": "F0956", + "aliases": [], + "tags": [ + "Cloud" + ], + "author": "Michael Richins", + "version": "2.4.85" + }, + { + "id": "5C72BE2A-A04D-4B36-9390-024C5A1214D9", + "name": "cloud-search-outline", + "codepoint": "F0957", + "aliases": [], + "tags": [ + "Cloud" + ], + "author": "Michael Richins", + "version": "2.4.85" + }, + { + "id": "BEA2DB85-AD43-4208-8F5E-5029997B23B7", + "name": "cloud-sync", + "codepoint": "F063F", + "aliases": [], + "tags": [ + "Cloud" + ], + "author": "Michael Irigoyen", + "version": "1.6.50" + }, + { + "id": "FA6B7B54-7817-40EE-9A64-3D30EAC0F4CF", + "name": "cloud-sync-outline", + "codepoint": "F12D6", + "aliases": [], + "tags": [ + "Cloud" + ], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "AE3A5033-BA77-4E82-BFD0-4C23275B602F", + "name": "cloud-tags", + "codepoint": "F07B6", + "aliases": [ + "cloud-xml" + ], + "tags": [ + "Cloud" + ], + "author": "Andy Martinez", + "version": "2.0.46" + }, + { + "id": "BB4F16F6-B596-4725-8831-A794321542EB", + "name": "cloud-upload", + "codepoint": "F0167", + "aliases": [ + "backup" + ], + "tags": [ + "Cloud" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "88ACA1F5-0FDE-4E89-8144-28BA5E5F1B51", + "name": "cloud-upload-outline", + "codepoint": "F0B7E", + "aliases": [ + "backup-outline" + ], + "tags": [ + "Cloud" + ], + "author": "Google", + "version": "3.0.39" + }, + { + "id": "0B70716D-3C56-43F1-85D4-B264C05DCC32", + "name": "clover", + "codepoint": "F0816", + "aliases": [ + "luck" + ], + "tags": [ + "Nature" + ], + "author": "Michael Richins", + "version": "2.1.19" + }, + { + "id": "113768A1-5B09-41DD-9570-31434A34823D", + "name": "coach-lamp", + "codepoint": "F1020", + "aliases": [ + "coach-light", + "carriage-lamp", + "carriage-light" + ], + "tags": [ + "Home Automation" + ], + "author": "Borre Haugen", + "version": "4.1.95" + }, + { + "id": "21D89E60-3522-4F1F-A1D2-60E67B2C9552", + "name": "coat-rack", + "codepoint": "F109E", + "aliases": [], + "tags": [ + "Home Automation", + "Clothing" + ], + "author": "Michael Richins", + "version": "4.2.95" + }, + { + "id": "04020C45-A5ED-4D33-A7BD-AE986516C0DE", + "name": "code-array", + "codepoint": "F0168", + "aliases": [], + "tags": [ + "Developer \/ Languages" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "1F6661BC-6538-4EF0-92B5-46EFAE5E0C77", + "name": "code-braces", + "codepoint": "F0169", + "aliases": [ + "set" + ], + "tags": [ + "Developer \/ Languages", + "Math" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "A65C5C08-F94C-4A68-BA7B-5557C94C5C37", + "name": "code-braces-box", + "codepoint": "F10D6", + "aliases": [], + "tags": [ + "Developer \/ Languages" + ], + "author": "Michael Irigoyen", + "version": "4.3.95" + }, + { + "id": "C08498C1-E43B-4E79-817C-121AD2827689", + "name": "code-brackets", + "codepoint": "F016A", + "aliases": [ + "square-brackets" + ], + "tags": [ + "Developer \/ Languages", + "Math" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "16C07036-EE56-4447-8495-EB2FAD143072", + "name": "code-equal", + "codepoint": "F016B", + "aliases": [], + "tags": [ + "Developer \/ Languages" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "2C70B20E-4B20-4CF6-8775-339C1184E032", + "name": "code-greater-than", + "codepoint": "F016C", + "aliases": [], + "tags": [ + "Developer \/ Languages", + "Math" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "3C9D2060-53C2-4D66-BE38-C46EE87D8D46", + "name": "code-greater-than-or-equal", + "codepoint": "F016D", + "aliases": [], + "tags": [ + "Developer \/ Languages", + "Math" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "24C1AA84-85C2-41F4-A5E3-8FE7421CD359", + "name": "code-json", + "codepoint": "F0626", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.6.50" + }, + { + "id": "92266B3A-6EC4-4CE7-9904-2A793B2A4084", + "name": "code-less-than", + "codepoint": "F016E", + "aliases": [], + "tags": [ + "Developer \/ Languages", + "Math" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "3D003F4A-7BCB-4946-AE70-CCAA2B7D5B10", + "name": "code-less-than-or-equal", + "codepoint": "F016F", + "aliases": [], + "tags": [ + "Developer \/ Languages", + "Math" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "1A01458F-59E8-4AF9-B398-8058900EE85F", + "name": "code-not-equal", + "codepoint": "F0170", + "aliases": [], + "tags": [ + "Developer \/ Languages" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "05E12366-E7AA-46B9-8D6E-3664EBD34BB3", + "name": "code-not-equal-variant", + "codepoint": "F0171", + "aliases": [], + "tags": [ + "Developer \/ Languages" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "A4E1DE1B-754D-4884-9902-8D5DDE2182B0", + "name": "code-parentheses", + "codepoint": "F0172", + "aliases": [], + "tags": [ + "Developer \/ Languages" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "2609C9BB-3F62-432A-9D27-0D30845F8086", + "name": "code-parentheses-box", + "codepoint": "F10D7", + "aliases": [], + "tags": [ + "Developer \/ Languages" + ], + "author": "Michael Irigoyen", + "version": "4.3.95" + }, + { + "id": "76686B91-00D8-4ADD-A502-8D1788C9C17B", + "name": "code-string", + "codepoint": "F0173", + "aliases": [], + "tags": [ + "Developer \/ Languages" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "609A0AB0-05EE-4824-BD40-A4E78F4A74D3", + "name": "code-tags", + "codepoint": "F0174", + "aliases": [], + "tags": [ + "Developer \/ Languages" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "7F098441-8B1D-4FB1-88EC-95726397BA7C", + "name": "code-tags-check", + "codepoint": "F0694", + "aliases": [ + "code-tags-tick" + ], + "tags": [ + "Developer \/ Languages" + ], + "author": "Simran", + "version": "1.7.12" + }, + { + "id": "FB9F6D89-8A07-407E-AD97-AAEF0E022585", + "name": "codepen", + "codepoint": "F0175", + "aliases": [], + "tags": [ + "Brand \/ Logo", + "Developer \/ Languages" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "C95D04C5-F5EE-411A-88F7-A9872B2B4021", + "name": "coffee", + "codepoint": "F0176", + "aliases": [ + "tea", + "cup", + "free-breakfast", + "local-cafe", + "drink" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "62F4C783-4BE1-4EB6-B454-E41A50B91857", + "name": "coffee-maker", + "codepoint": "F109F", + "aliases": [ + "espresso-maker", + "coffee-machine", + "espresso-machine" + ], + "tags": [ + "Home Automation", + "Food \/ Drink" + ], + "author": "Google", + "version": "4.2.95" + }, + { + "id": "A82510E6-E7E7-4E2C-96A6-E041EFC72897", + "name": "coffee-maker-check", + "codepoint": "F1931", + "aliases": [ + "coffee-maker-done", + "coffee-maker-complete" + ], + "tags": [ + "Home Automation", + "Food \/ Drink" + ], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "DDF7AAA6-C0A9-428C-9A2A-1B491714AF82", + "name": "coffee-maker-check-outline", + "codepoint": "F1932", + "aliases": [ + "coffee-maker-complete-outline", + "coffee-maker-done-outline" + ], + "tags": [ + "Home Automation", + "Food \/ Drink" + ], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "0E490D96-1352-4592-A544-F80D43681A9E", + "name": "coffee-maker-outline", + "codepoint": "F181B", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Google", + "version": "6.1.95" + }, + { + "id": "E3C8FAA1-E273-44BC-8C43-1CB0E5E5C2AB", + "name": "coffee-off", + "codepoint": "F0FAA", + "aliases": [ + "drink-off", + "tea-off", + "cup-off", + "free-breakfast-off", + "local-cafe-off" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Michael Irigoyen", + "version": "3.9.97" + }, + { + "id": "B8D17AA8-7B65-4CA7-B9A9-6960C2A64164", + "name": "coffee-off-outline", + "codepoint": "F0FAB", + "aliases": [ + "drink-off-outline", + "cup-off-outline", + "tea-off-outline", + "free-breakfast-off-outline", + "local-cafe-off-outline" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Michael Irigoyen", + "version": "3.9.97" + }, + { + "id": "8994C73B-937C-4541-AAFF-6FA2CE0573DF", + "name": "coffee-outline", + "codepoint": "F06CA", + "aliases": [ + "tea-outline", + "cup-outline", + "drink-outline", + "free-breakfast-outline", + "local-cafe-outline" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Google", + "version": "1.8.36" + }, + { + "id": "8093CDE7-C795-4415-94C6-2EF40ED6D057", + "name": "coffee-to-go", + "codepoint": "F0177", + "aliases": [ + "tea-to-go", + "drink-to-go", + "cup-to-go", + "free-breakfast-to-go", + "local-cafe-to-go" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "DC66752A-65C6-461D-AAA6-65E8389E7D3B", + "name": "coffee-to-go-outline", + "codepoint": "F130E", + "aliases": [ + "tea-to-go-outline", + "cup-to-go-outline", + "drink-to-go-outline", + "free-breakfast-to-go-outline", + "local-cafe-to-go-outline" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Simran", + "version": "4.8.95" + }, + { + "id": "AC6E8289-8D3C-4CE0-ADA6-D17DC639B7FB", + "name": "coffin", + "codepoint": "F0B7F", + "aliases": [ + "death", + "dead" + ], + "tags": [ + "Holiday" + ], + "author": "Michael Irigoyen", + "version": "3.0.39" + }, + { + "id": "E4A14909-3821-4DB1-A739-4DA464ABEEB7", + "name": "cog", + "codepoint": "F0493", + "aliases": [ + "settings", + "gear" + ], + "tags": [ + "Settings" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "6F15658D-723C-4BE9-85D1-F170E4B90281", + "name": "cog-box", + "codepoint": "F0494", + "aliases": [ + "gear-box", + "settings-applications", + "settings-box" + ], + "tags": [ + "Settings" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "3E835EBE-D768-428D-8440-E162EC9F90E4", + "name": "cog-clockwise", + "codepoint": "F11DD", + "aliases": [], + "tags": [ + "Settings" + ], + "author": "Fran\u00e7ois Risoud", + "version": "4.5.95" + }, + { + "id": "C9468BA3-4E63-41DB-BACE-4AED3A543147", + "name": "cog-counterclockwise", + "codepoint": "F11DE", + "aliases": [], + "tags": [ + "Settings" + ], + "author": "Fran\u00e7ois Risoud", + "version": "4.5.95" + }, + { + "id": "7251B1CF-41C8-46F7-991D-83F5996CF0C1", + "name": "cog-off", + "codepoint": "F13CE", + "aliases": [ + "settings-off" + ], + "tags": [ + "Settings" + ], + "author": "Simran", + "version": "5.1.45" + }, + { + "id": "83E26995-9267-4A7B-8271-885FEF6303D8", + "name": "cog-off-outline", + "codepoint": "F13CF", + "aliases": [ + "settings-off-outline" + ], + "tags": [ + "Settings" + ], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "D29B92ED-BC81-44F0-8031-2E48A90ABAD8", + "name": "cog-outline", + "codepoint": "F08BB", + "aliases": [ + "gear-outline", + "settings-outline" + ], + "tags": [ + "Settings" + ], + "author": "Google", + "version": "2.2.43" + }, + { + "id": "FE314FE9-CDD6-42DF-9F62-F470E3F0E2BF", + "name": "cog-pause", + "codepoint": "F1933", + "aliases": [ + "settings-pause", + "gear-pause" + ], + "tags": [ + "Settings" + ], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "7BC10816-C8A9-4B8D-B11B-B51E0CCB9F72", + "name": "cog-pause-outline", + "codepoint": "F1934", + "aliases": [ + "settings-pause-outline", + "gear-pause-outline" + ], + "tags": [ + "Settings" + ], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "FF5D0943-FA1E-423E-B6A7-0210449D2C29", + "name": "cog-play", + "codepoint": "F1935", + "aliases": [ + "settings-play", + "gear-play" + ], + "tags": [ + "Settings" + ], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "0238FC32-F3C6-46F5-8223-8B63D96B9749", + "name": "cog-play-outline", + "codepoint": "F1936", + "aliases": [ + "settings-play-outline", + "gear-play-outline" + ], + "tags": [ + "Settings" + ], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "5F716B9D-4A30-4D1A-B452-B6B0D8B27EDE", + "name": "cog-refresh", + "codepoint": "F145E", + "aliases": [ + "settings-refresh" + ], + "tags": [ + "Settings" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "C9E15196-FEB0-4F26-96C2-0E050F959806", + "name": "cog-refresh-outline", + "codepoint": "F145F", + "aliases": [ + "settings-refresh-outline" + ], + "tags": [ + "Settings" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "FC49E1B1-ED0E-46CB-B29F-ED444E9B85F0", + "name": "cog-stop", + "codepoint": "F1937", + "aliases": [ + "settings-stop", + "gear-stop" + ], + "tags": [ + "Settings" + ], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "F937057A-B769-4F5E-A079-7D9BF4679807", + "name": "cog-stop-outline", + "codepoint": "F1938", + "aliases": [ + "settings-stop-outline", + "gear-stop-outline" + ], + "tags": [ + "Settings" + ], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "BEC36759-CFB0-4475-A65B-B10F860E850A", + "name": "cog-sync", + "codepoint": "F1460", + "aliases": [ + "settings-sync" + ], + "tags": [ + "Settings" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "204F6FF9-EFD1-4B79-9DDF-2642984189F0", + "name": "cog-sync-outline", + "codepoint": "F1461", + "aliases": [ + "settings-sync-outline" + ], + "tags": [ + "Settings" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "17CD5A77-2809-4DDC-B876-877D8B913217", + "name": "cog-transfer", + "codepoint": "F105B", + "aliases": [ + "settings-transfer" + ], + "tags": [ + "Settings" + ], + "author": "Michael Richins", + "version": "4.1.95" + }, + { + "id": "AD008794-9094-40B5-91E8-6648E1CBADAD", + "name": "cog-transfer-outline", + "codepoint": "F105C", + "aliases": [ + "settings-transfer-outline" + ], + "tags": [ + "Settings" + ], + "author": "Michael Richins", + "version": "4.1.95" + }, + { + "id": "2EF56130-ECE9-4432-B59E-36F646DE1C86", + "name": "cogs", + "codepoint": "F08D6", + "aliases": [ + "settings", + "manufacturing" + ], + "tags": [ + "Settings" + ], + "author": "Google", + "version": "2.3.50" + }, + { + "id": "8FD44CCD-5073-4C73-98BE-139F777F6E94", + "name": "collage", + "codepoint": "F0640", + "aliases": [ + "auto-awesome-mosaic" + ], + "tags": [], + "author": "Google", + "version": "1.6.50" + }, + { + "id": "C66052C9-BB2A-4E5F-A890-C6D8156E5621", + "name": "collapse-all", + "codepoint": "F0AA6", + "aliases": [ + "animation-minus" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "2.7.94" + }, + { + "id": "8672E491-9415-4259-A9E5-E0E3552187CB", + "name": "collapse-all-outline", + "codepoint": "F0AA7", + "aliases": [ + "animation-minus-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "2.7.94" + }, + { + "id": "F27490D2-F7BE-4B35-83E6-40D1F7247755", + "name": "color-helper", + "codepoint": "F0179", + "aliases": [ + "colour-helper" + ], + "tags": [ + "Text \/ Content \/ Format", + "Color" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "55F32835-0982-43F9-9F2D-42585183016A", + "name": "comma", + "codepoint": "F0E23", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "3.6.95" + }, + { + "id": "CEC57068-18E1-42DA-8788-EDCC009DFB7D", + "name": "comma-box", + "codepoint": "F0E2B", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "3.6.95" + }, + { + "id": "19DFF0F1-FA41-4345-8494-32F42055155B", + "name": "comma-box-outline", + "codepoint": "F0E24", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "3.6.95" + }, + { + "id": "71A7159C-EFDE-4B44-B956-47D588CF74D3", + "name": "comma-circle", + "codepoint": "F0E25", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "3.6.95" + }, + { + "id": "0958EE2B-BD3A-4548-A641-759FC170847A", + "name": "comma-circle-outline", + "codepoint": "F0E26", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "3.6.95" + }, + { + "id": "B42FD735-27ED-47EC-887B-F5108774E6BC", + "name": "comment", + "codepoint": "F017A", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "E0D4328B-7A71-46E7-804B-DFC3753BEDF6", + "name": "comment-account", + "codepoint": "F017B", + "aliases": [ + "comment-user", + "comment-person" + ], + "tags": [ + "Account \/ User" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "18A9FFE4-B768-4A8F-BD55-778C8E8C41FC", + "name": "comment-account-outline", + "codepoint": "F017C", + "aliases": [ + "comment-user-outline", + "comment-person-outline" + ], + "tags": [ + "Account \/ User" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "04CF8C3D-0D65-41CA-8D0D-53DD7EAB25B8", + "name": "comment-alert", + "codepoint": "F017D", + "aliases": [ + "comment-warning" + ], + "tags": [ + "Alert \/ Error" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "CBAD69A4-A6FF-4A8A-AA85-B5962910106E", + "name": "comment-alert-outline", + "codepoint": "F017E", + "aliases": [ + "comment-warning-outline" + ], + "tags": [ + "Alert \/ Error" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "AECA1A18-D8EA-4130-B33C-86D608E030BB", + "name": "comment-arrow-left", + "codepoint": "F09E1", + "aliases": [ + "comment-previous" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "2.5.94" + }, + { + "id": "192F008B-D02E-4C2A-A43F-058A19E41D30", + "name": "comment-arrow-left-outline", + "codepoint": "F09E2", + "aliases": [ + "comment-previous-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "2.5.94" + }, + { + "id": "256DE915-25D5-4777-AA1A-A432ABB6E039", + "name": "comment-arrow-right", + "codepoint": "F09E3", + "aliases": [ + "comment-next" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "2.5.94" + }, + { + "id": "E34BA65C-995B-4E2F-A40E-8833E55187FC", + "name": "comment-arrow-right-outline", + "codepoint": "F09E4", + "aliases": [ + "comment-next-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "2.5.94" + }, + { + "id": "AEB3B1E9-D2B4-497C-9939-BFB549F57019", + "name": "comment-bookmark", + "codepoint": "F15AE", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.5.55" + }, + { + "id": "342B6E5C-FE9B-4A5A-940C-3918AB609441", + "name": "comment-bookmark-outline", + "codepoint": "F15AF", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.5.55" + }, + { + "id": "5D2CEEF1-3F19-4AD2-8965-13DB365B0013", + "name": "comment-check", + "codepoint": "F017F", + "aliases": [ + "comment-tick" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "D9BBEE92-5775-4364-8ECD-89C0872BE79F", + "name": "comment-check-outline", + "codepoint": "F0180", + "aliases": [ + "comment-tick-outline" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "8729ADA4-D1A0-477A-B670-EC5CFF2A3A7E", + "name": "comment-edit", + "codepoint": "F11BF", + "aliases": [], + "tags": [ + "Edit \/ Modify" + ], + "author": "Michael Irigoyen", + "version": "4.5.95" + }, + { + "id": "3A7903C6-EA94-4FF6-8B95-FECC91058756", + "name": "comment-edit-outline", + "codepoint": "F12C4", + "aliases": [], + "tags": [ + "Edit \/ Modify" + ], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "7CDBE4A1-9E98-419D-A309-4ECB9476DA12", + "name": "comment-eye", + "codepoint": "F0A3A", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "2.6.95" + }, + { + "id": "470DE0A7-8431-42B7-BC50-E46D0DEBE759", + "name": "comment-eye-outline", + "codepoint": "F0A3B", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "2.6.95" + }, + { + "id": "27CE0231-2BF3-43E1-9852-3044D59DA0F2", + "name": "comment-flash", + "codepoint": "F15B0", + "aliases": [ + "comment-quick" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.5.55" + }, + { + "id": "68AA7A36-BF66-4F18-8BEE-78448FDBF5B9", + "name": "comment-flash-outline", + "codepoint": "F15B1", + "aliases": [ + "comment-quick-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.5.55" + }, + { + "id": "B3DD4217-5AB7-4E9F-979E-7E16A2DA8E76", + "name": "comment-minus", + "codepoint": "F15DF", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.6.55" + }, + { + "id": "C63B509C-5F87-42E1-A53B-0623A2EA4461", + "name": "comment-minus-outline", + "codepoint": "F15E0", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.6.55" + }, + { + "id": "63AC824E-16A4-4FBE-A6DF-588DEBCA47C1", + "name": "comment-multiple", + "codepoint": "F085F", + "aliases": [ + "comments" + ], + "tags": [], + "author": "Michael Richins", + "version": "2.1.99" + }, + { + "id": "A5FAC5DC-088F-485C-A885-FBBEEC70B352", + "name": "comment-multiple-outline", + "codepoint": "F0181", + "aliases": [ + "comments-outline" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "9BBD8848-EA4F-4052-9361-B5D7AFCEBFF6", + "name": "comment-off", + "codepoint": "F15E1", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.6.55" + }, + { + "id": "14104E5E-1FA3-441C-9705-66D86F8E28DB", + "name": "comment-off-outline", + "codepoint": "F15E2", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.6.55" + }, + { + "id": "B1A0A26E-3E9C-4718-8A26-2837A981D9B5", + "name": "comment-outline", + "codepoint": "F0182", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "6C595408-3938-4111-9566-7149810D4A73", + "name": "comment-plus", + "codepoint": "F09E5", + "aliases": [ + "comment-add" + ], + "tags": [], + "author": "Peter Noble", + "version": "2.5.94" + }, + { + "id": "813C3AFA-56D8-472B-8C1C-C365AC752663", + "name": "comment-plus-outline", + "codepoint": "F0183", + "aliases": [ + "comment-add-outline" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "D07698E0-AB53-4E7A-9C25-9A25D1D5CDA9", + "name": "comment-processing", + "codepoint": "F0184", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "0CDF5E61-25C4-4E30-8E16-32E4E7EDE705", + "name": "comment-processing-outline", + "codepoint": "F0185", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "49412CCB-C5F6-460F-A2DB-76BCCB668BCC", + "name": "comment-question", + "codepoint": "F0817", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "2.1.19" + }, + { + "id": "7BD335A6-C4A7-48F1-B04F-F1457B7B1F20", + "name": "comment-question-outline", + "codepoint": "F0186", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "6A2BA297-7401-4727-B79F-8C8DD0F56FE7", + "name": "comment-quote", + "codepoint": "F1021", + "aliases": [ + "feedback" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.1.95" + }, + { + "id": "5510BB9F-2D63-471A-86F3-732E91A513E4", + "name": "comment-quote-outline", + "codepoint": "F1022", + "aliases": [ + "feedback-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.1.95" + }, + { + "id": "834998BB-D7F4-41F3-86B8-5EE5631B524A", + "name": "comment-remove", + "codepoint": "F05DE", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "520544E5-1693-4084-BB9C-B6FA70204B2C", + "name": "comment-remove-outline", + "codepoint": "F0187", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "02BA858D-5D62-487B-B423-22EBB73E10A9", + "name": "comment-search", + "codepoint": "F0A3C", + "aliases": [], + "tags": [], + "author": "GreenTurtwig", + "version": "2.6.95" + }, + { + "id": "17A45B1C-290F-4654-9C8D-3F3F641AB5CD", + "name": "comment-search-outline", + "codepoint": "F0A3D", + "aliases": [], + "tags": [], + "author": "GreenTurtwig", + "version": "2.6.95" + }, + { + "id": "483321DB-C7E5-4E48-B739-8500F6153446", + "name": "comment-text", + "codepoint": "F0188", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "88EDEE2E-AB1B-4287-A082-E3B139F8E69A", + "name": "comment-text-multiple", + "codepoint": "F0860", + "aliases": [ + "comments-text" + ], + "tags": [], + "author": "Michael Richins", + "version": "2.1.99" + }, + { + "id": "B7CBD1E2-9677-4D9B-B7BD-CA5493920BE6", + "name": "comment-text-multiple-outline", + "codepoint": "F0861", + "aliases": [ + "comments-text-outline" + ], + "tags": [], + "author": "Michael Richins", + "version": "2.1.99" + }, + { + "id": "3D9E4543-670E-4434-8C82-3A80122ED4EE", + "name": "comment-text-outline", + "codepoint": "F0189", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "A9786B48-6664-4170-B56C-6F2868D5000D", + "name": "compare", + "codepoint": "F018A", + "aliases": [ + "theme-light-dark" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "C2F3461E-363D-42B9-AEF0-3E8A92EB2569", + "name": "compare-horizontal", + "codepoint": "F1492", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Google", + "version": "5.3.45" + }, + { + "id": "89337179-88B1-4CD0-BA70-F18FC41514DF", + "name": "compare-remove", + "codepoint": "F18B3", + "aliases": [], + "tags": [], + "author": "nilsfast", + "version": "6.3.95" + }, + { + "id": "2E95C78F-AAF9-4E1F-8241-4F781389EFF7", + "name": "compare-vertical", + "codepoint": "F1493", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Google", + "version": "5.3.45" + }, + { + "id": "8FE64B61-0FD6-4056-9A4F-E62408CE70FE", + "name": "compass", + "codepoint": "F018B", + "aliases": [ + "explore" + ], + "tags": [ + "Navigation", + "Geographic Information System" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "2D283145-478B-4863-9889-CFDDB88342A3", + "name": "compass-off", + "codepoint": "F0B80", + "aliases": [], + "tags": [ + "Geographic Information System", + "Navigation" + ], + "author": "Google", + "version": "3.0.39" + }, + { + "id": "ACF5388A-9C33-4466-A6E7-E0EFE1508C28", + "name": "compass-off-outline", + "codepoint": "F0B81", + "aliases": [], + "tags": [ + "Geographic Information System", + "Navigation" + ], + "author": "Google", + "version": "3.0.39" + }, + { + "id": "EDA6D9AB-4AAE-4080-A1D3-78762666D7B1", + "name": "compass-outline", + "codepoint": "F018C", + "aliases": [], + "tags": [ + "Navigation", + "Geographic Information System" + ], + "author": "Gabriel", + "version": "1.5.54" + }, + { + "id": "D7B6D7B4-F143-477C-A402-963791DB0029", + "name": "compass-rose", + "codepoint": "F1382", + "aliases": [], + "tags": [ + "Navigation" + ], + "author": "Michael Richins", + "version": "4.9.95" + }, + { + "id": "4819FE23-EEAA-496B-A8DC-C4101A1AC994", + "name": "cone", + "codepoint": "F194C", + "aliases": [], + "tags": [ + "Shape" + ], + "author": "Colton Wiscombe", + "version": "6.4.95" + }, + { + "id": "76F233E1-C7AA-4C0F-BDFC-717BF22D40BB", + "name": "cone-off", + "codepoint": "F194D", + "aliases": [], + "tags": [ + "Shape" + ], + "author": "Colton Wiscombe", + "version": "6.4.95" + }, + { + "id": "C66F7470-8691-4B30-A8F6-5250389E1D48", + "name": "connection", + "codepoint": "F1616", + "aliases": [ + "plug" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "5.6.55" + }, + { + "id": "DCD0A183-A5DC-43BD-BC48-8FFF0CA0FA9C", + "name": "console", + "codepoint": "F018D", + "aliases": [ + "terminal" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "D6FF21C5-201A-43E0-B8AF-276A6BED653A", + "name": "console-line", + "codepoint": "F07B7", + "aliases": [ + "terminal-line" + ], + "tags": [], + "author": "Austin Andrews", + "version": "2.0.46" + }, + { + "id": "19A41CF5-CA4E-411C-8C34-14895B4B90DD", + "name": "console-network", + "codepoint": "F08A9", + "aliases": [ + "terminal-network" + ], + "tags": [], + "author": "Michael Richins", + "version": "2.2.43" + }, + { + "id": "48F71C58-812D-40AA-BC4D-9D4381684E90", + "name": "console-network-outline", + "codepoint": "F0C60", + "aliases": [ + "terminal-network-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "79D6D751-2470-4ACC-B67E-40F5FF12BC25", + "name": "consolidate", + "codepoint": "F10D8", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.3.95" + }, + { + "id": "45F3DDED-3C5E-4B6B-941E-7283657A1577", + "name": "contactless-payment", + "codepoint": "F0D6A", + "aliases": [], + "tags": [ + "Currency" + ], + "author": "Michael Richins", + "version": "3.4.93" + }, + { + "id": "445CF970-F03C-4DDC-A326-F77DA919CB39", + "name": "contactless-payment-circle", + "codepoint": "F0321", + "aliases": [], + "tags": [ + "Currency" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "E7D24172-A5A7-4BAE-A679-D2191E8E7F51", + "name": "contactless-payment-circle-outline", + "codepoint": "F0408", + "aliases": [], + "tags": [ + "Currency" + ], + "author": "Michael Irigoyen", + "version": "1.5.54" + }, + { + "id": "5A68EA78-9792-4223-808D-17E5205765E6", + "name": "contacts", + "codepoint": "F06CB", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.8.36" + }, + { + "id": "5D5E7753-B3F1-4D0C-B175-62749D448492", + "name": "contacts-outline", + "codepoint": "F05B8", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "44029D6D-5640-4AE5-907B-8388B0438FF0", + "name": "contain", + "codepoint": "F0A3E", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "2.6.95" + }, + { + "id": "B786A80C-161C-492C-B405-A10087092CDC", + "name": "contain-end", + "codepoint": "F0A3F", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "2.6.95" + }, + { + "id": "5161A499-05B1-444F-84E6-359F5C46F84C", + "name": "contain-start", + "codepoint": "F0A40", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "2.6.95" + }, + { + "id": "2B3B8FC2-C8AB-40AF-9B3F-AFFC93482676", + "name": "content-copy", + "codepoint": "F018F", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "D4028362-37C3-4EED-BE0B-C78927C3F55D", + "name": "content-cut", + "codepoint": "F0190", + "aliases": [ + "scissors", + "clip" + ], + "tags": [ + "Health \/ Beauty" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "B1A86989-2CB4-47DC-BC93-67A077792F72", + "name": "content-duplicate", + "codepoint": "F0191", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "75856C98-A0D6-4C78-A323-BD170B6E6094", + "name": "content-paste", + "codepoint": "F0192", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "29F946C0-CA58-4287-AF0B-964961E5CC2C", + "name": "content-save", + "codepoint": "F0193", + "aliases": [ + "floppy-disc", + "floppy-disk" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "E4BAD28B-B196-42B5-BD4D-92C81A8EADAE", + "name": "content-save-alert", + "codepoint": "F0F42", + "aliases": [ + "floppy-disc-alert" + ], + "tags": [ + "Alert \/ Error" + ], + "author": "Michael Richins", + "version": "3.9.97" + }, + { + "id": "21B9916D-3D1A-43AF-91B2-56A4D5C493C2", + "name": "content-save-alert-outline", + "codepoint": "F0F43", + "aliases": [ + "floppy-disc-alert-outline" + ], + "tags": [ + "Alert \/ Error" + ], + "author": "Michael Richins", + "version": "3.9.97" + }, + { + "id": "B9BE7889-D858-41A1-AB4E-9C58325261E9", + "name": "content-save-all", + "codepoint": "F0194", + "aliases": [ + "floppy-disc-multiple" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "B65ADBE9-DE1B-4879-A34F-602A3DA4D12A", + "name": "content-save-all-outline", + "codepoint": "F0F44", + "aliases": [ + "floppy-disc-multiple-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.9.97" + }, + { + "id": "B52FC179-01B3-4E41-821E-DC162E402B5B", + "name": "content-save-check", + "codepoint": "F18EA", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.3.95" + }, + { + "id": "4A940492-A6C2-4481-BDB0-485920679D1D", + "name": "content-save-check-outline", + "codepoint": "F18EB", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.3.95" + }, + { + "id": "E909F872-44CC-4D23-8AD2-95BFE02A5E2D", + "name": "content-save-cog", + "codepoint": "F145B", + "aliases": [ + "floppy-disc-cog" + ], + "tags": [ + "Settings" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "A145BFEF-B18C-49C5-B24C-7918C878307E", + "name": "content-save-cog-outline", + "codepoint": "F145C", + "aliases": [ + "floppy-disc-cog-outline" + ], + "tags": [ + "Settings" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "12E2DE0D-BF3F-402D-8044-B18E269D32C2", + "name": "content-save-edit", + "codepoint": "F0CFB", + "aliases": [ + "floppy-disc-edit" + ], + "tags": [ + "Edit \/ Modify" + ], + "author": "Michael Irigoyen", + "version": "3.3.92" + }, + { + "id": "B8D3719E-E67F-4008-9F43-458D75857769", + "name": "content-save-edit-outline", + "codepoint": "F0CFC", + "aliases": [ + "floppy-disc-edit-outline" + ], + "tags": [ + "Edit \/ Modify" + ], + "author": "Michael Irigoyen", + "version": "3.3.92" + }, + { + "id": "FC4F757F-2540-4853-89A3-7FE07FC710C0", + "name": "content-save-move", + "codepoint": "F0E27", + "aliases": [ + "floppy-disc-move" + ], + "tags": [], + "author": "Michael Richins", + "version": "3.6.95" + }, + { + "id": "12F9DD45-1D74-45E3-84B7-CDE90A3FD174", + "name": "content-save-move-outline", + "codepoint": "F0E28", + "aliases": [ + "floppy-disc-move-outline" + ], + "tags": [], + "author": "Michael Richins", + "version": "3.6.95" + }, + { + "id": "E5889AAE-7F3E-46F3-BEF6-36F4BE570DE8", + "name": "content-save-off", + "codepoint": "F1643", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "178D08A9-7C54-4F7A-9335-726030578718", + "name": "content-save-off-outline", + "codepoint": "F1644", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "707F4114-BD2F-4601-82C4-CFB6B2D2F359", + "name": "content-save-outline", + "codepoint": "F0818", + "aliases": [], + "tags": [], + "author": "Google", + "version": "2.1.19" + }, + { + "id": "67E755F6-209A-41EF-98C5-423739A3AC10", + "name": "content-save-settings", + "codepoint": "F061B", + "aliases": [ + "floppy-disc-settings" + ], + "tags": [ + "Settings" + ], + "author": "Simran", + "version": "1.6.50" + }, + { + "id": "2EDEEDF4-2AE3-4365-8F49-DC6F869EC520", + "name": "content-save-settings-outline", + "codepoint": "F0B2E", + "aliases": [ + "floppy-disc-settings-outline" + ], + "tags": [ + "Settings" + ], + "author": "Ruslan Garifullin", + "version": "2.8.94" + }, + { + "id": "B50D388A-4647-4780-83E7-2C5AD8375FB9", + "name": "contrast", + "codepoint": "F0195", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "B7FCC914-C6E9-4919-8574-F0161C2CF28D", + "name": "contrast-box", + "codepoint": "F0196", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "A7CBFD5D-FDFD-4202-A290-840219A79F2F", + "name": "contrast-circle", + "codepoint": "F0197", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "2D97B0F0-9662-4323-8F5B-0677507461EE", + "name": "controller-classic", + "codepoint": "F0B82", + "aliases": [ + "gamepad-classic" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Austin Andrews", + "version": "3.0.39" + }, + { + "id": "053ECCDF-BF30-417F-85D4-FF2614402B5A", + "name": "controller-classic-outline", + "codepoint": "F0B83", + "aliases": [ + "gamepad-classic-outline" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Austin Andrews", + "version": "3.0.39" + }, + { + "id": "8E3FB537-B293-41A6-B6C5-B2BE927091F5", + "name": "cookie", + "codepoint": "F0198", + "aliases": [ + "biscuit" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "D37F1726-BDD9-4AFB-84E0-A62587AAA6CC", + "name": "cookie-alert", + "codepoint": "F16D0", + "aliases": [ + "biscuit-alert" + ], + "tags": [ + "Food \/ Drink", + "Alert \/ Error" + ], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "927FC7C7-8DF3-47FE-BAC4-7DF8DAF3F936", + "name": "cookie-alert-outline", + "codepoint": "F16D1", + "aliases": [ + "biscuit-alert-outline" + ], + "tags": [ + "Food \/ Drink", + "Alert \/ Error" + ], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "DB07C270-5421-41A3-BBFF-350874DE3534", + "name": "cookie-check", + "codepoint": "F16D2", + "aliases": [ + "biscuit-check" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "65B2C1ED-992F-45D8-A0C0-4481F99748BF", + "name": "cookie-check-outline", + "codepoint": "F16D3", + "aliases": [ + "biscuit-check-outline" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "9DEBBFC6-6734-4D46-A7C0-3A11793C4708", + "name": "cookie-clock", + "codepoint": "F16E4", + "aliases": [ + "biscuit-clock" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "5F7A7D4A-D4ED-4AE6-987D-A735A7403C00", + "name": "cookie-clock-outline", + "codepoint": "F16E5", + "aliases": [ + "biscuit-clock-outline" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "5923CF0C-4D34-4BF1-8401-3AEEDC0DE9BC", + "name": "cookie-cog", + "codepoint": "F16D4", + "aliases": [ + "biscuit-cog" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "96AE483D-C5CD-424A-A553-C9D5399CAD7F", + "name": "cookie-cog-outline", + "codepoint": "F16D5", + "aliases": [ + "biscuit-cog-outline" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "E36B77B1-913A-45CC-A23B-02EA12161352", + "name": "cookie-edit", + "codepoint": "F16E6", + "aliases": [ + "biscuit-edit" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "0A7C1A34-8BC9-4A44-93F3-59F9235274AB", + "name": "cookie-edit-outline", + "codepoint": "F16E7", + "aliases": [ + "biscuit-edit-outline" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "FD4F6EA6-712D-4E1E-AF1E-25CB27AE66CE", + "name": "cookie-lock", + "codepoint": "F16E8", + "aliases": [ + "biscuit-lock" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "CB5D57DF-BA59-4C98-9FA7-96536EF9FAA0", + "name": "cookie-lock-outline", + "codepoint": "F16E9", + "aliases": [ + "biscuit-lock-outline" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "215F338E-A35C-4C54-9AC7-C4F4BB9A7206", + "name": "cookie-minus", + "codepoint": "F16DA", + "aliases": [ + "biscuit-minus" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "E5590F64-7B4E-4506-AF93-ED7F3E6AB988", + "name": "cookie-minus-outline", + "codepoint": "F16DB", + "aliases": [ + "biscuit-minus-outline" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "9B401BB3-9510-457F-9C35-BAC5A30BF91F", + "name": "cookie-off", + "codepoint": "F16EA", + "aliases": [ + "biscuit-off" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "4355ECEC-E157-4BC8-AF80-45FAC597F188", + "name": "cookie-off-outline", + "codepoint": "F16EB", + "aliases": [ + "biscuit-off-outline" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "AF77B3DF-8565-4A84-A58F-83FD2E55EB10", + "name": "cookie-outline", + "codepoint": "F16DE", + "aliases": [ + "biscuit-outline" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "272BE458-B01F-4437-B083-65175B327D05", + "name": "cookie-plus", + "codepoint": "F16D6", + "aliases": [ + "biscuit-plus" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "AB2BBE22-85B2-4D5B-9F99-099DE970A9EC", + "name": "cookie-plus-outline", + "codepoint": "F16D7", + "aliases": [ + "biscuit-plus-outline" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "184857B9-228F-4DD2-AF53-603277AEEB7F", + "name": "cookie-refresh", + "codepoint": "F16EC", + "aliases": [ + "biscuit-refresh" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "CA84B827-73C5-4C28-AC8B-82AADD5469E9", + "name": "cookie-refresh-outline", + "codepoint": "F16ED", + "aliases": [ + "biscuit-refresh-outline" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "25272102-387C-4333-BF16-3308E6EFF94F", + "name": "cookie-remove", + "codepoint": "F16D8", + "aliases": [ + "biscuit-remove" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "12200D0C-1B01-4165-A2D1-C5BE30B3E3A7", + "name": "cookie-remove-outline", + "codepoint": "F16D9", + "aliases": [ + "biscuit-remove-outline" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "B8F9243C-188F-4EC1-9051-5BAA942D7F42", + "name": "cookie-settings", + "codepoint": "F16DC", + "aliases": [ + "biscuit-settings", + "cookie-crumbs", + "biscuit-crumbs" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "FF72A11B-A9E5-47B7-967F-C520DC965CE2", + "name": "cookie-settings-outline", + "codepoint": "F16DD", + "aliases": [ + "biscuit-settings-outline", + "cookie-crumbs-outline", + "biscuit-crumbs-outline" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "A260896B-178E-4E3A-9F2C-793AD68154F4", + "name": "coolant-temperature", + "codepoint": "F03C8", + "aliases": [], + "tags": [ + "Automotive" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "430A9380-A9BB-43C3-8A16-3F41AE22C3D7", + "name": "copyleft", + "codepoint": "F1939", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "34B43A77-9873-4723-AA65-45D42992748E", + "name": "copyright", + "codepoint": "F05E6", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "C3F97D60-41A7-49A3-A8B7-C63D724B12FF", + "name": "cordova", + "codepoint": "F0958", + "aliases": [], + "tags": [ + "Brand \/ Logo", + "Developer \/ Languages" + ], + "author": "Contributors", + "version": "2.4.85" + }, + { + "id": "B49614ED-B7AB-4123-BD9C-B50CE119C76C", + "name": "corn", + "codepoint": "F07B8", + "aliases": [], + "tags": [ + "Agriculture", + "Food \/ Drink" + ], + "author": "Thomas Hunsaker", + "version": "2.0.46" + }, + { + "id": "E2947B22-1F7A-4638-8B16-27DA49F5BD52", + "name": "corn-off", + "codepoint": "F13EF", + "aliases": [], + "tags": [ + "Food \/ Drink", + "Agriculture" + ], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "4969E6E7-4311-4F1E-B9ED-070DE4473A65", + "name": "cosine-wave", + "codepoint": "F1479", + "aliases": [ + "frequency", + "amplitude" + ], + "tags": [ + "Audio" + ], + "author": "Haley Halcyon", + "version": "5.2.45" + }, + { + "id": "F789F2E4-022E-4A5A-B548-30D21BC3A7F6", + "name": "counter", + "codepoint": "F0199", + "aliases": [ + "score", + "numbers", + "odometer" + ], + "tags": [ + "Automotive" + ], + "author": "Christopher Schreiner", + "version": "1.5.54" + }, + { + "id": "795A2085-78E1-4721-BF6F-007B20CF92AF", + "name": "countertop", + "codepoint": "F181C", + "aliases": [ + "kitchen-counter", + "sink" + ], + "tags": [ + "Home Automation" + ], + "author": "Google", + "version": "6.1.95" + }, + { + "id": "31920D18-0B33-4CE8-B5D9-7E879DB4E6AA", + "name": "countertop-outline", + "codepoint": "F181D", + "aliases": [ + "kitchen-counter-outline", + "sink-outline" + ], + "tags": [ + "Home Automation" + ], + "author": "Google", + "version": "6.1.95" + }, + { + "id": "1D459B7E-A98C-4E02-929B-FA0BA329B97F", + "name": "cow", + "codepoint": "F019A", + "aliases": [ + "emoji-cow", + "emoticon-cow" + ], + "tags": [ + "Animal", + "Agriculture" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "8FA2AEE7-EBCA-4943-AF59-FF3C4D762C53", + "name": "cow-off", + "codepoint": "F18FC", + "aliases": [ + "dairy-off", + "dairy-free" + ], + "tags": [ + "Food \/ Drink", + "Agriculture", + "Animal" + ], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "BC9DA934-ED6D-4EC4-9FA4-2B6FF26B3058", + "name": "cpu-32-bit", + "codepoint": "F0EDF", + "aliases": [ + "chip-32-bit" + ], + "tags": [], + "author": "GreenTurtwig", + "version": "3.8.95" + }, + { + "id": "BC47ABAD-66D6-4EEA-9512-CB33318F62EF", + "name": "cpu-64-bit", + "codepoint": "F0EE0", + "aliases": [ + "chip-64-bit" + ], + "tags": [], + "author": "GreenTurtwig", + "version": "3.8.95" + }, + { + "id": "74B57630-EBF9-48DB-886C-36FA79D4350B", + "name": "cradle", + "codepoint": "F198B", + "aliases": [ + "crib", + "bassinet", + "baby" + ], + "tags": [ + "People \/ Family" + ], + "author": "Google", + "version": "6.5.95" + }, + { + "id": "3CDAD9E8-C4DC-42CA-9262-A0C45B94B139", + "name": "cradle-outline", + "codepoint": "F1991", + "aliases": [ + "bassinet", + "crib", + "baby" + ], + "tags": [ + "People \/ Family" + ], + "author": "Google", + "version": "6.5.95" + }, + { + "id": "8C0FE6E3-3D82-4FCA-9CCC-73CA8C5299D1", + "name": "crane", + "codepoint": "F0862", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "2.1.99" + }, + { + "id": "598B7931-3DF8-4CFA-A6E6-80550CA31372", + "name": "creation", + "codepoint": "F0674", + "aliases": [ + "auto-awesome" + ], + "tags": [], + "author": "Google", + "version": "1.7.12" + }, + { + "id": "8973B8C3-527C-48D1-9E5B-CB0A35DE2B77", + "name": "creative-commons", + "codepoint": "F0D6B", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "3.4.93" + }, + { + "id": "91CCFF94-D3F6-48B2-B62C-02DC1B6DBC1E", + "name": "credit-card", + "codepoint": "F0FEF", + "aliases": [], + "tags": [ + "Banking", + "Currency" + ], + "author": "Michael Richins", + "version": "4.0.96" + }, + { + "id": "1CE6C99F-BA66-4069-B014-67E4FB6E5EB9", + "name": "credit-card-check", + "codepoint": "F13D0", + "aliases": [], + "tags": [ + "Banking" + ], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "96023451-FCAA-40E0-839C-A7F98C3553F1", + "name": "credit-card-check-outline", + "codepoint": "F13D1", + "aliases": [], + "tags": [ + "Banking" + ], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "B116C077-E89C-4079-8CEB-7946D054613D", + "name": "credit-card-chip", + "codepoint": "F190F", + "aliases": [ + "credit-card-icc-chip" + ], + "tags": [ + "Banking" + ], + "author": "Jeff Anders", + "version": "6.4.95" + }, + { + "id": "DF35C024-A010-482D-8B28-D567A1C9389D", + "name": "credit-card-chip-outline", + "codepoint": "F1910", + "aliases": [ + "credit-card-icc-chip-outline" + ], + "tags": [ + "Banking" + ], + "author": "Jeff Anders", + "version": "6.4.95" + }, + { + "id": "0FBFF192-59C3-447E-A987-4BE568865C8E", + "name": "credit-card-clock", + "codepoint": "F0EE1", + "aliases": [], + "tags": [ + "Banking", + "Date \/ Time" + ], + "author": "Michael Richins", + "version": "3.8.95" + }, + { + "id": "851D92B4-4326-4913-AA2F-05F3595614C2", + "name": "credit-card-clock-outline", + "codepoint": "F0EE2", + "aliases": [], + "tags": [ + "Banking", + "Date \/ Time" + ], + "author": "Michael Richins", + "version": "3.8.95" + }, + { + "id": "5EF28B8C-72F7-4C83-8270-7DA1E535022C", + "name": "credit-card-edit", + "codepoint": "F17D7", + "aliases": [], + "tags": [], + "author": "Jeff Anders", + "version": "6.1.95" + }, + { + "id": "4678D0B5-4FF5-4729-9096-2F8EA74447FE", + "name": "credit-card-edit-outline", + "codepoint": "F17D8", + "aliases": [], + "tags": [], + "author": "Jeff Anders", + "version": "6.1.95" + }, + { + "id": "896151D2-B1B7-42C5-95E7-78517BEC5676", + "name": "credit-card-fast", + "codepoint": "F1911", + "aliases": [ + "credit-card-swipe" + ], + "tags": [ + "Banking" + ], + "author": "Jeff Anders", + "version": "6.4.95" + }, + { + "id": "B08C2F32-A29A-4429-BFDA-97F81B704A65", + "name": "credit-card-fast-outline", + "codepoint": "F1912", + "aliases": [ + "credit-card-swipe-outline" + ], + "tags": [ + "Banking" + ], + "author": "Jeff Anders", + "version": "6.4.95" + }, + { + "id": "7FD3C251-310E-4A0D-B6B9-4BAC16F9909B", + "name": "credit-card-lock", + "codepoint": "F18E7", + "aliases": [], + "tags": [ + "Banking" + ], + "author": "Michael Irigoyen", + "version": "6.3.95" + }, + { + "id": "1B3B929E-82A7-438D-823D-4046F3C5F9A1", + "name": "credit-card-lock-outline", + "codepoint": "F18E8", + "aliases": [], + "tags": [ + "Banking" + ], + "author": "Michael Irigoyen", + "version": "6.3.95" + }, + { + "id": "21D860AE-A880-4ED2-9E11-617D888BD744", + "name": "credit-card-marker", + "codepoint": "F06A8", + "aliases": [ + "credit-card-location", + "payment-on-delivery" + ], + "tags": [ + "Banking" + ], + "author": "Michael Irigoyen", + "version": "1.7.12" + }, + { + "id": "B026E6BC-FFD6-44FA-96AC-6F4A902FD596", + "name": "credit-card-marker-outline", + "codepoint": "F0DBE", + "aliases": [ + "cod", + "payment-on-delivery-outline", + "credit-card-location-outline" + ], + "tags": [ + "Banking" + ], + "author": "Michael Irigoyen", + "version": "3.5.94" + }, + { + "id": "97D593C8-1C57-4597-AB1C-C6B487633BBD", + "name": "credit-card-minus", + "codepoint": "F0FAC", + "aliases": [], + "tags": [ + "Banking" + ], + "author": "Michael Richins", + "version": "4.0.96" + }, + { + "id": "E35A35BC-A59A-440D-820A-3BB61E1AA9BA", + "name": "credit-card-minus-outline", + "codepoint": "F0FAD", + "aliases": [], + "tags": [ + "Banking" + ], + "author": "Michael Richins", + "version": "4.0.96" + }, + { + "id": "25C1F858-600D-42A4-801F-5F85F22ACB52", + "name": "credit-card-multiple", + "codepoint": "F0FF0", + "aliases": [], + "tags": [ + "Banking" + ], + "author": "Michael Richins", + "version": "4.0.96" + }, + { + "id": "D7C8ADB6-B7C9-4653-9EA7-EB98552304BA", + "name": "credit-card-multiple-outline", + "codepoint": "F019C", + "aliases": [ + "credit-cards" + ], + "tags": [ + "Banking" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "5DC17348-DD99-40EA-804E-CB20BEE93C07", + "name": "credit-card-off", + "codepoint": "F0FF1", + "aliases": [], + "tags": [ + "Banking" + ], + "author": "Michael Richins", + "version": "4.0.96" + }, + { + "id": "CD527CB6-15F0-41BF-BF50-2BCB8B6C769F", + "name": "credit-card-off-outline", + "codepoint": "F05E4", + "aliases": [], + "tags": [ + "Banking" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "A121DBBB-C9E6-4534-AA7B-F59496787BD2", + "name": "credit-card-outline", + "codepoint": "F019B", + "aliases": [ + "payment" + ], + "tags": [ + "Shopping", + "Banking", + "Currency" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "DE6FDD30-069D-4377-96D1-9DAC014B6A8F", + "name": "credit-card-plus", + "codepoint": "F0FF2", + "aliases": [], + "tags": [ + "Banking" + ], + "author": "Michael Richins", + "version": "4.0.96" + }, + { + "id": "FA914D65-0F2C-463D-A54F-9B0DE9FBEED3", + "name": "credit-card-plus-outline", + "codepoint": "F0676", + "aliases": [ + "credit-card-add" + ], + "tags": [ + "Banking" + ], + "author": "Austin Andrews", + "version": "1.7.12" + }, + { + "id": "F768F993-4A1F-4A1E-8EED-11526704C22F", + "name": "credit-card-refresh", + "codepoint": "F1645", + "aliases": [], + "tags": [ + "Banking" + ], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "0ECF7DE7-9F12-4635-902C-1BBF1064DC21", + "name": "credit-card-refresh-outline", + "codepoint": "F1646", + "aliases": [], + "tags": [ + "Banking" + ], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "90A38F47-9EFD-4468-A1B9-E31A6781F69D", + "name": "credit-card-refund", + "codepoint": "F0FF3", + "aliases": [], + "tags": [ + "Banking" + ], + "author": "Michael Richins", + "version": "4.0.96" + }, + { + "id": "4C2633A8-8E84-4301-A470-0408DCFFEEF8", + "name": "credit-card-refund-outline", + "codepoint": "F0AA8", + "aliases": [], + "tags": [ + "Banking" + ], + "author": "Michael Richins", + "version": "2.7.94" + }, + { + "id": "6CD92C52-D816-4930-B504-ECB4B8744CEA", + "name": "credit-card-remove", + "codepoint": "F0FAE", + "aliases": [], + "tags": [ + "Banking" + ], + "author": "Michael Richins", + "version": "4.0.96" + }, + { + "id": "003200AA-03EB-4AFA-BE66-B1858B39DA19", + "name": "credit-card-remove-outline", + "codepoint": "F0FAF", + "aliases": [], + "tags": [ + "Banking" + ], + "author": "Michael Richins", + "version": "4.0.96" + }, + { + "id": "A3BF84E0-A214-410C-9890-851855025247", + "name": "credit-card-scan", + "codepoint": "F0FF4", + "aliases": [], + "tags": [ + "Banking" + ], + "author": "Michael Richins", + "version": "4.0.96" + }, + { + "id": "CF494E4E-F1FC-411D-87FD-933CC17EE08C", + "name": "credit-card-scan-outline", + "codepoint": "F019D", + "aliases": [], + "tags": [ + "Banking" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "8E913524-BAAE-48B9-A45A-69192B159EE4", + "name": "credit-card-search", + "codepoint": "F1647", + "aliases": [], + "tags": [ + "Banking" + ], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "8A0B7BE3-D653-4009-8E42-B3E280F7152C", + "name": "credit-card-search-outline", + "codepoint": "F1648", + "aliases": [], + "tags": [ + "Banking" + ], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "194059D5-3FF9-4DA7-8C7E-81092D38889B", + "name": "credit-card-settings", + "codepoint": "F0FF5", + "aliases": [], + "tags": [ + "Banking", + "Settings" + ], + "author": "Michael Richins", + "version": "4.0.96" + }, + { + "id": "8EF337DF-4858-4BC2-8C48-BD0911AF0FEB", + "name": "credit-card-settings-outline", + "codepoint": "F08D7", + "aliases": [ + "payment-settings" + ], + "tags": [ + "Banking", + "Settings" + ], + "author": "Peter Noble", + "version": "2.3.50" + }, + { + "id": "76407FAE-6EB4-4486-9A60-5D62801B78E4", + "name": "credit-card-sync", + "codepoint": "F1649", + "aliases": [], + "tags": [ + "Banking" + ], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "FB29966A-E0BE-41FC-92D0-4218B160DCF4", + "name": "credit-card-sync-outline", + "codepoint": "F164A", + "aliases": [], + "tags": [ + "Banking" + ], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "7894F13C-362E-4628-B0D4-E9AC990CCB41", + "name": "credit-card-wireless", + "codepoint": "F0802", + "aliases": [], + "tags": [ + "Currency", + "Banking" + ], + "author": "Michael Irigoyen", + "version": "2.1.19" + }, + { + "id": "9BDEAB2C-8D25-43FA-9722-9FD68D21E76A", + "name": "credit-card-wireless-off", + "codepoint": "F057A", + "aliases": [], + "tags": [ + "Banking" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "00E657E0-F05A-423A-813F-3DC14C5E6439", + "name": "credit-card-wireless-off-outline", + "codepoint": "F057B", + "aliases": [], + "tags": [ + "Banking" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "694399D0-1348-4EB0-BA34-ECD2FE4987C2", + "name": "credit-card-wireless-outline", + "codepoint": "F0D6C", + "aliases": [ + "credit-card-contactless" + ], + "tags": [ + "Currency", + "Banking" + ], + "author": "Michael Richins", + "version": "3.4.93" + }, + { + "id": "9C7DBA7B-099C-460D-BD51-2B2F70EBE39A", + "name": "cricket", + "codepoint": "F0D6D", + "aliases": [ + "cricket-bat" + ], + "tags": [ + "Sport" + ], + "author": "Google", + "version": "3.4.93" + }, + { + "id": "FA68ACCA-389F-453E-B886-FF3DAFE10530", + "name": "crop", + "codepoint": "F019E", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "17AB799B-F531-4800-A7DE-23C5D95238F4", + "name": "crop-free", + "codepoint": "F019F", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "DE641C3F-FEF6-4764-A276-F6FECFE031DA", + "name": "crop-landscape", + "codepoint": "F01A0", + "aliases": [ + "crop-5-4" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "02E45E84-72D2-4FE1-BF98-6A9521E31A8A", + "name": "crop-portrait", + "codepoint": "F01A1", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "03774672-2612-4A56-9E32-69060B32B94C", + "name": "crop-rotate", + "codepoint": "F0696", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.7.12" + }, + { + "id": "72BA6354-04A5-4BE9-A84C-843B9441164E", + "name": "crop-square", + "codepoint": "F01A2", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "5644CD16-FA4D-4F68-8DAC-996169C778E1", + "name": "cross", + "codepoint": "F0953", + "aliases": [ + "christianity", + "religion-christian" + ], + "tags": [ + "Religion", + "Holiday" + ], + "author": "Nick", + "version": "2.4.85" + }, + { + "id": "00B9DE12-462A-483B-90D3-8FA89B3D9FD5", + "name": "cross-bolnisi", + "codepoint": "F0CED", + "aliases": [], + "tags": [ + "Religion" + ], + "author": "Michael Irigoyen", + "version": "3.3.92" + }, + { + "id": "63D4C7DD-5BEF-41F2-921F-48EB987F0ED3", + "name": "cross-celtic", + "codepoint": "F0CF5", + "aliases": [], + "tags": [ + "Religion", + "Holiday" + ], + "author": "Michael Irigoyen", + "version": "3.3.92" + }, + { + "id": "E7B0A94D-5F09-4E77-A1E0-3DA131398A26", + "name": "cross-outline", + "codepoint": "F0CF6", + "aliases": [ + "religion-christian-outline", + "christianity-outline" + ], + "tags": [ + "Religion" + ], + "author": "Michael Irigoyen", + "version": "3.3.92" + }, + { + "id": "33845FDE-0003-4780-8DC9-07FC29D46599", + "name": "crosshairs", + "codepoint": "F01A3", + "aliases": [ + "gps-not-fixed", + "location-searching" + ], + "tags": [ + "Geographic Information System" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "D3A1EC2E-98D5-46B6-BF33-DECBBAACEFBE", + "name": "crosshairs-gps", + "codepoint": "F01A4", + "aliases": [ + "gps-fixed", + "my-location" + ], + "tags": [ + "Navigation", + "Geographic Information System" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "BD55C800-ECAF-4839-82BD-980B3891ADF5", + "name": "crosshairs-off", + "codepoint": "F0F45", + "aliases": [], + "tags": [ + "Geographic Information System" + ], + "author": "Google", + "version": "3.9.97" + }, + { + "id": "0842BFCE-4511-40B1-8E66-33CFED0A139B", + "name": "crosshairs-question", + "codepoint": "F1136", + "aliases": [ + "crosshairs-unknown", + "gps-unknown" + ], + "tags": [ + "Navigation", + "Geographic Information System" + ], + "author": "Google", + "version": "4.4.95" + }, + { + "id": "FEE6305B-081C-429E-9584-5A5C6D8FD38F", + "name": "crowd", + "codepoint": "F1975", + "aliases": [ + "family", + "crowd-source", + "crowdsource" + ], + "tags": [ + "Account \/ User", + "People \/ Family" + ], + "author": "Google", + "version": "6.5.95" + }, + { + "id": "266349FD-1B26-4BCD-A682-D25C4469B682", + "name": "crown", + "codepoint": "F01A5", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "8D0845BB-6518-4178-BE14-BDE99D614A8C", + "name": "crown-circle", + "codepoint": "F17DC", + "aliases": [ + "checkers" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "A25B1BFF-7DEC-4A6C-B91A-3B2A149997F1", + "name": "crown-circle-outline", + "codepoint": "F17DD", + "aliases": [ + "checkers-outline" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "D0B6994F-78AD-4D69-ADED-CD0C15D0D62B", + "name": "crown-outline", + "codepoint": "F11D0", + "aliases": [], + "tags": [], + "author": "frankgrinaert", + "version": "4.5.95" + }, + { + "id": "803712F9-6CAD-47C9-8B54-08B134949FB3", + "name": "cryengine", + "codepoint": "F0959", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "2.4.85" + }, + { + "id": "730684B8-2187-4AD1-A257-CECF232856FD", + "name": "crystal-ball", + "codepoint": "F0B2F", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Austin Andrews", + "version": "2.8.94" + }, + { + "id": "64E19922-572B-41F8-9139-BE6CBC8A0F80", + "name": "cube", + "codepoint": "F01A6", + "aliases": [], + "tags": [ + "Shape" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "C2D996BC-2459-44E7-94FB-EE181E03B8C3", + "name": "cube-off", + "codepoint": "F141C", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "0A2F7725-8D0E-4C67-8EC3-03D8F92EEB33", + "name": "cube-off-outline", + "codepoint": "F141D", + "aliases": [ + "sugar-off", + "sugar-cube-off", + "sugar-free" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "11B7F7B5-8813-48DE-9469-B1159355DDC3", + "name": "cube-outline", + "codepoint": "F01A7", + "aliases": [ + "sugar", + "sugar-cube" + ], + "tags": [ + "Shape", + "Food \/ Drink" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "101B8439-F611-400E-A2DF-0D7AE40C1005", + "name": "cube-scan", + "codepoint": "F0B84", + "aliases": [ + "view-in-ar", + "view-in-augmented-reality" + ], + "tags": [], + "author": "Google", + "version": "3.0.39" + }, + { + "id": "F0726D57-782C-44E8-A404-336480FC9E7B", + "name": "cube-send", + "codepoint": "F01A8", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "A22472A9-D83E-4234-AAF0-F60AFB7C57DB", + "name": "cube-unfolded", + "codepoint": "F01A9", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "D5DA2C54-C8D0-469F-99A9-C8DB9D3A6F15", + "name": "cup", + "codepoint": "F01AA", + "aliases": [ + "glass", + "drink" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "FD336A31-52C0-41AF-A0F3-BA475DEA1A54", + "name": "cup-off", + "codepoint": "F05E5", + "aliases": [ + "glass-off", + "drink-off" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "C3BC4A94-7F95-4E12-A715-45830DEDA014", + "name": "cup-off-outline", + "codepoint": "F137D", + "aliases": [ + "glass-off-outline", + "drink-off-outline" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Simran", + "version": "4.9.95" + }, + { + "id": "FEA3388A-F985-482C-8CE0-0B4ABCD31691", + "name": "cup-outline", + "codepoint": "F130F", + "aliases": [ + "glass-outline", + "drink-outline" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Simran", + "version": "4.8.95" + }, + { + "id": "AC4AD054-775A-4D59-BF92-A57A6A952607", + "name": "cup-water", + "codepoint": "F01AB", + "aliases": [ + "local-drink", + "glass-water", + "drink-water", + "cup-liquid", + "glass-liquid" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "112A3BDB-8748-4118-8315-326E140C101B", + "name": "cupboard", + "codepoint": "F0F46", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "3.9.97" + }, + { + "id": "13FBEF67-6AB8-471D-BC66-DE521D91D0FC", + "name": "cupboard-outline", + "codepoint": "F0F47", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "3.9.97" + }, + { + "id": "CF09105E-AB0E-4393-ADCC-4E6DFC513C9C", + "name": "cupcake", + "codepoint": "F095A", + "aliases": [], + "tags": [ + "Food \/ Drink" + ], + "author": "Nick", + "version": "2.4.85" + }, + { + "id": "75F948EB-5A9C-4F7A-9841-2B93AC222605", + "name": "curling", + "codepoint": "F0863", + "aliases": [], + "tags": [ + "Sport" + ], + "author": "Nick", + "version": "2.1.99" + }, + { + "id": "FB0C738C-21DE-4643-9B5D-690CE7AAEAEE", + "name": "currency-bdt", + "codepoint": "F0864", + "aliases": [ + "taka", + "bangladeshi-taka" + ], + "tags": [ + "Banking", + "Currency" + ], + "author": "Michael Richins", + "version": "2.1.99" + }, + { + "id": "20E50505-DD23-4A07-AAE7-024BE3774018", + "name": "currency-brl", + "codepoint": "F0B85", + "aliases": [ + "brazilian-real" + ], + "tags": [ + "Banking", + "Currency" + ], + "author": "Austin Andrews", + "version": "3.0.39" + }, + { + "id": "CCAF9A48-2989-47C7-B4A5-1CF424A339CC", + "name": "currency-btc", + "codepoint": "F01AC", + "aliases": [ + "bitcoin" + ], + "tags": [ + "Currency", + "Banking" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "0F5809A3-18DD-4B42-9A7E-B35B65EF3751", + "name": "currency-cny", + "codepoint": "F07BA", + "aliases": [ + "yuan", + "renminbi" + ], + "tags": [ + "Currency", + "Banking" + ], + "author": "Haley Halcyon", + "version": "2.0.46" + }, + { + "id": "222B8F14-2217-4FC1-8940-AC1CF8AB150B", + "name": "currency-eth", + "codepoint": "F07BB", + "aliases": [ + "ethereum", + "xi" + ], + "tags": [ + "Currency", + "Banking" + ], + "author": "Peter Noble", + "version": "2.0.46" + }, + { + "id": "94C667B3-E2EB-428D-B422-751C234CCF44", + "name": "currency-eur", + "codepoint": "F01AD", + "aliases": [ + "euro", + "euro-symbol" + ], + "tags": [ + "Currency", + "Banking" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "010841EE-1569-425A-9849-9FC6E4D05C3B", + "name": "currency-eur-off", + "codepoint": "F1315", + "aliases": [], + "tags": [ + "Currency" + ], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "F9BD830F-EBB6-45A4-A576-0DEC27084A95", + "name": "currency-gbp", + "codepoint": "F01AE", + "aliases": [ + "pound", + "sterling" + ], + "tags": [ + "Currency", + "Banking" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "A55AD931-CE89-49C0-9F1C-F699C422843C", + "name": "currency-ils", + "codepoint": "F0C61", + "aliases": [], + "tags": [ + "Banking", + "Currency" + ], + "author": "Austin Andrews", + "version": "3.2.89" + }, + { + "id": "AB8EAA72-9A34-4F87-937A-9A8FDEFA1FEF", + "name": "currency-inr", + "codepoint": "F01AF", + "aliases": [ + "rupee" + ], + "tags": [ + "Currency", + "Banking" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "639A8D4C-086C-4038-A569-F9387E851262", + "name": "currency-jpy", + "codepoint": "F07BC", + "aliases": [ + "yen" + ], + "tags": [ + "Currency", + "Banking" + ], + "author": "Haley Halcyon", + "version": "2.0.46" + }, + { + "id": "72750D9E-229F-4D77-B1CB-9C2C0FD12335", + "name": "currency-krw", + "codepoint": "F07BD", + "aliases": [ + "won" + ], + "tags": [ + "Currency", + "Banking" + ], + "author": "Haley Halcyon", + "version": "2.0.46" + }, + { + "id": "FDA284E5-BF4A-47DC-B68F-255E07DB89CF", + "name": "currency-kzt", + "codepoint": "F0865", + "aliases": [ + "kazakhstani-tenge" + ], + "tags": [ + "Banking", + "Currency" + ], + "author": "Augustin Ursu", + "version": "2.1.99" + }, + { + "id": "D0B20B31-ADBD-4F8A-9B72-52CC2FE4C3F4", + "name": "currency-mnt", + "codepoint": "F1512", + "aliases": [ + "currency-mongolian-tugrug" + ], + "tags": [ + "Currency" + ], + "author": "Colton Wiscombe", + "version": "5.4.55" + }, + { + "id": "2F091499-4472-423E-A0C5-8C96CDDE1ABF", + "name": "currency-ngn", + "codepoint": "F01B0", + "aliases": [ + "naira" + ], + "tags": [ + "Currency", + "Banking" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "734CB783-C788-4F5E-BB90-BFBF4E3C22DC", + "name": "currency-php", + "codepoint": "F09E6", + "aliases": [ + "philippine-peso" + ], + "tags": [ + "Banking", + "Currency" + ], + "author": "Michael Richins", + "version": "2.5.94" + }, + { + "id": "55D42287-2705-451B-B87A-91C23AF3A945", + "name": "currency-rial", + "codepoint": "F0E9C", + "aliases": [ + "currency-riyal", + "currency-irr", + "currency-omr", + "currency-yer", + "currency-sar" + ], + "tags": [ + "Currency", + "Banking" + ], + "author": "Haley Halcyon", + "version": "3.7.94" + }, + { + "id": "57057EA1-1BA7-49F3-A8C7-51AF633DED68", + "name": "currency-rub", + "codepoint": "F01B1", + "aliases": [ + "ruble" + ], + "tags": [ + "Currency", + "Banking" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "4C5FB412-6649-4F26-A075-2865BAF41B5F", + "name": "currency-rupee", + "codepoint": "F1976", + "aliases": [ + "currency-npr", + "currency-pkr", + "currency-lkr", + "currency-inr" + ], + "tags": [ + "Banking" + ], + "author": "Michael Irigoyen", + "version": "6.5.95" + }, + { + "id": "17CFE8D4-18D7-4414-B8EE-244D5A8FF791", + "name": "currency-sign", + "codepoint": "F07BE", + "aliases": [ + "currency-scarab" + ], + "tags": [ + "Currency", + "Banking" + ], + "author": "Michael Richins", + "version": "2.0.46" + }, + { + "id": "94DAFCB6-FA70-4DAE-B3DF-A107031F81E8", + "name": "currency-try", + "codepoint": "F01B2", + "aliases": [ + "lira" + ], + "tags": [ + "Currency", + "Banking" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "E0103EBC-20BF-48EA-BC8F-BEF04BF2A581", + "name": "currency-twd", + "codepoint": "F07BF", + "aliases": [ + "new-taiwan-dollar" + ], + "tags": [ + "Currency", + "Banking" + ], + "author": "Haley Halcyon", + "version": "2.0.46" + }, + { + "id": "3FA4946C-029B-42D3-AA31-3D607FB4A2F1", + "name": "currency-usd", + "codepoint": "F01C1", + "aliases": [ + "attach-money", + "dollar" + ], + "tags": [ + "Currency", + "Banking" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "5E9D35E4-9487-4A9B-9D4B-E1BBCA52AE0C", + "name": "currency-usd-off", + "codepoint": "F067A", + "aliases": [ + "money-off", + "dollar-off" + ], + "tags": [ + "Currency", + "Banking" + ], + "author": "Google", + "version": "1.7.12" + }, + { + "id": "BB0EDAF7-B538-4DAA-8406-36470F472EA1", + "name": "current-ac", + "codepoint": "F1480", + "aliases": [ + "alternating-current" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.3.45" + }, + { + "id": "2A23AD1A-C4F1-47B1-B482-05836097CE51", + "name": "current-dc", + "codepoint": "F095C", + "aliases": [ + "direct-current" + ], + "tags": [ + "Battery" + ], + "author": "Nick", + "version": "2.4.85" + }, + { + "id": "2B463003-089D-47DE-97F7-434F16A4735B", + "name": "cursor-default", + "codepoint": "F01C0", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "C5C0F16E-6D8B-49DB-8374-9B26C9E76B0D", + "name": "cursor-default-click", + "codepoint": "F0CFD", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.3.92" + }, + { + "id": "CE0F1A1D-5BE5-48A7-9DF2-3021489E4937", + "name": "cursor-default-click-outline", + "codepoint": "F0CFE", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.3.92" + }, + { + "id": "450BD54E-A467-41D8-B428-50779BB451C4", + "name": "cursor-default-gesture", + "codepoint": "F1127", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.3.95" + }, + { + "id": "ABCE3774-DAC9-494D-99D3-1054160ECC7E", + "name": "cursor-default-gesture-outline", + "codepoint": "F1128", + "aliases": [], + "tags": [], + "author": "mchvn", + "version": "4.3.95" + }, + { + "id": "E6A56AAF-22C5-4DAE-9E97-184501755DF5", + "name": "cursor-default-outline", + "codepoint": "F01BF", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "EDAD5377-8923-4D6C-AC12-CBDC6C78DC7F", + "name": "cursor-move", + "codepoint": "F01BE", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "B5465B23-729A-405E-9155-486A36D8135F", + "name": "cursor-pointer", + "codepoint": "F01BD", + "aliases": [ + "cursor-hand" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "76C56C15-C2A3-4042-95C7-F143A3B58765", + "name": "cursor-text", + "codepoint": "F05E7", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "8C3A8BC3-9144-4D24-A41D-BBE2B557BF51", + "name": "curtains", + "codepoint": "F1846", + "aliases": [ + "drapes" + ], + "tags": [ + "Home Automation" + ], + "author": "Teodor Sandu", + "version": "6.2.95" + }, + { + "id": "EB23B6A0-2021-405D-83F2-D69D9A5CF1CD", + "name": "curtains-closed", + "codepoint": "F1847", + "aliases": [ + "drapes-closed" + ], + "tags": [ + "Home Automation" + ], + "author": "Teodor Sandu", + "version": "6.2.95" + }, + { + "id": "10ABF378-1E4C-479B-A99E-921605698123", + "name": "cylinder", + "codepoint": "F194E", + "aliases": [], + "tags": [ + "Shape" + ], + "author": "Colton Wiscombe", + "version": "6.4.95" + }, + { + "id": "0CD686F7-F7EF-416B-A74D-8FDC54EAB7BF", + "name": "cylinder-off", + "codepoint": "F194F", + "aliases": [], + "tags": [ + "Shape" + ], + "author": "Colton Wiscombe", + "version": "6.4.95" + }, + { + "id": "82D8E45B-5E04-4094-818B-DE18775F9A91", + "name": "dance-ballroom", + "codepoint": "F15FB", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.6.55" + }, + { + "id": "45E2144E-5240-4557-B9A9-45DD7B514738", + "name": "dance-pole", + "codepoint": "F1578", + "aliases": [ + "kho-kho" + ], + "tags": [ + "Sport" + ], + "author": "Haley Halcyon", + "version": "5.5.55" + }, + { + "id": "7727E2AF-BD33-4C14-9FF4-6FA4BBA8594C", + "name": "data-matrix", + "codepoint": "F153C", + "aliases": [], + "tags": [], + "author": "David Kon\u00ed\u0159", + "version": "5.4.55" + }, + { + "id": "7D6DC2D9-EDDF-4C82-AA10-CEC85C4DF7BF", + "name": "data-matrix-edit", + "codepoint": "F153D", + "aliases": [], + "tags": [ + "Edit \/ Modify" + ], + "author": "David Kon\u00ed\u0159", + "version": "5.4.55" + }, + { + "id": "EA63161B-B010-4BEC-A5B0-774C2007C0D0", + "name": "data-matrix-minus", + "codepoint": "F153E", + "aliases": [], + "tags": [], + "author": "David Kon\u00ed\u0159", + "version": "5.4.55" + }, + { + "id": "0B183EEE-8B38-4B8E-A049-96AC93BCD1EA", + "name": "data-matrix-plus", + "codepoint": "F153F", + "aliases": [], + "tags": [], + "author": "David Kon\u00ed\u0159", + "version": "5.4.55" + }, + { + "id": "0809BEAA-8884-4116-B319-9AD6C11A86BE", + "name": "data-matrix-remove", + "codepoint": "F1540", + "aliases": [], + "tags": [], + "author": "David Kon\u00ed\u0159", + "version": "5.4.55" + }, + { + "id": "8B555E52-AD00-4ECF-8533-02D9AC92E7F5", + "name": "data-matrix-scan", + "codepoint": "F1541", + "aliases": [], + "tags": [], + "author": "David Kon\u00ed\u0159", + "version": "5.4.55" + }, + { + "id": "C8FC48A7-AE19-4BD8-B57E-14B76D93937B", + "name": "database", + "codepoint": "F01BC", + "aliases": [ + "storage" + ], + "tags": [ + "Geographic Information System", + "Database" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "7B3AB47E-C134-4AE9-82A2-DD0F95D6EF3F", + "name": "database-alert", + "codepoint": "F163A", + "aliases": [], + "tags": [ + "Database", + "Alert \/ Error" + ], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "27B8C966-DE22-4B45-99A6-5CF769BECD07", + "name": "database-alert-outline", + "codepoint": "F1624", + "aliases": [], + "tags": [ + "Database", + "Alert \/ Error" + ], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "82BC4255-42E2-4B69-ADE4-A3519DE84E22", + "name": "database-arrow-down", + "codepoint": "F163B", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "8A490A09-A803-4333-BB10-5758643AD4F4", + "name": "database-arrow-down-outline", + "codepoint": "F1625", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "FB778AE2-E52D-4C2A-BEF7-C48A805F8A57", + "name": "database-arrow-left", + "codepoint": "F163C", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "A51D37EB-0B92-4F4A-8402-E0C33825D05B", + "name": "database-arrow-left-outline", + "codepoint": "F1626", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "AE5DDB91-CE2C-4EE3-8247-E4818F488EE0", + "name": "database-arrow-right", + "codepoint": "F163D", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "097A9369-2179-49DB-891C-5A61C88A985C", + "name": "database-arrow-right-outline", + "codepoint": "F1627", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "EC1BF4CB-2B6B-4B69-96E6-599E77D02885", + "name": "database-arrow-up", + "codepoint": "F163E", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "2E041168-F122-45CC-84AD-2A05428C211A", + "name": "database-arrow-up-outline", + "codepoint": "F1628", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "C241F52F-EA70-4784-9455-AA7D05663C90", + "name": "database-check", + "codepoint": "F0AA9", + "aliases": [ + "database-tick" + ], + "tags": [ + "Geographic Information System", + "Database" + ], + "author": "Andrew Nenakhov", + "version": "2.7.94" + }, + { + "id": "1B7F6C62-E464-42F6-B7C0-CDD637A520F6", + "name": "database-check-outline", + "codepoint": "F1629", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "1401D168-E1ED-403A-9154-F89133195BF9", + "name": "database-clock", + "codepoint": "F163F", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "093C4D34-DC23-4FE7-9AD0-05FCFFBB41A6", + "name": "database-clock-outline", + "codepoint": "F162A", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "2D941DD1-7B07-4E4B-B164-42AF6F751D34", + "name": "database-cog", + "codepoint": "F164B", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "A15AD70B-D874-46B1-BD26-2A5627DBF201", + "name": "database-cog-outline", + "codepoint": "F164C", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "A9C5BB4C-C89F-4ADE-80C2-FB39A942DE6A", + "name": "database-edit", + "codepoint": "F0B86", + "aliases": [], + "tags": [ + "Edit \/ Modify", + "Geographic Information System", + "Database" + ], + "author": "Michael Richins", + "version": "3.0.39" + }, + { + "id": "6428E607-E036-481B-AF42-B09894C68E19", + "name": "database-edit-outline", + "codepoint": "F162B", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "6E50F0F8-1116-4090-9468-54B2CE8FBB19", + "name": "database-export", + "codepoint": "F095E", + "aliases": [], + "tags": [ + "Geographic Information System", + "Database" + ], + "author": "Michael Richins", + "version": "2.4.85" + }, + { + "id": "E620893F-9644-4E75-8904-C81B85B6D58D", + "name": "database-export-outline", + "codepoint": "F162C", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "E08D8382-BE58-41F4-B00C-4B6926C1F550", + "name": "database-eye", + "codepoint": "F191F", + "aliases": [ + "database-view" + ], + "tags": [ + "Database" + ], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "B2F93B0D-CC43-4DA0-A01F-778FA9982235", + "name": "database-eye-off", + "codepoint": "F1920", + "aliases": [ + "database-view-off" + ], + "tags": [ + "Database" + ], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "F80F0F20-77A0-426B-9354-D6F5C2B77473", + "name": "database-eye-off-outline", + "codepoint": "F1921", + "aliases": [ + "database-view-off-outline" + ], + "tags": [ + "Database" + ], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "67DAC11C-DFB0-40C7-B8CF-26A41469DD80", + "name": "database-eye-outline", + "codepoint": "F1922", + "aliases": [ + "database-view-outline" + ], + "tags": [ + "Database" + ], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "733A4C8A-FAA5-42BE-882E-98EC734E8493", + "name": "database-import", + "codepoint": "F095D", + "aliases": [], + "tags": [ + "Geographic Information System", + "Database" + ], + "author": "Michael Richins", + "version": "2.4.85" + }, + { + "id": "4D0E6B34-7EAB-4EC4-9782-F2318139A3E2", + "name": "database-import-outline", + "codepoint": "F162D", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "3A6B098D-F7AD-4D2C-A039-201319B5FDD7", + "name": "database-lock", + "codepoint": "F0AAA", + "aliases": [], + "tags": [ + "Lock", + "Geographic Information System", + "Database" + ], + "author": "Andrew Nenakhov", + "version": "2.7.94" + }, + { + "id": "A03B26F4-54BB-4E3D-B4E7-EAFE3351A6BA", + "name": "database-lock-outline", + "codepoint": "F162E", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "91AD02DB-7EBD-4B39-AACB-8037B50728AC", + "name": "database-marker", + "codepoint": "F12F6", + "aliases": [ + "database-location" + ], + "tags": [ + "Geographic Information System", + "Database" + ], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "163262B4-672A-4194-B002-3F414DF6C7A5", + "name": "database-marker-outline", + "codepoint": "F162F", + "aliases": [ + "database-location-outline" + ], + "tags": [ + "Database" + ], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "31CE0431-ABF2-4650-8439-515C0E9012CD", + "name": "database-minus", + "codepoint": "F01BB", + "aliases": [], + "tags": [ + "Geographic Information System", + "Database" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "96D5DD75-E7C1-444F-AD36-AB601BB9C504", + "name": "database-minus-outline", + "codepoint": "F1630", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "5E0B7DCE-B912-4789-A0F9-86DBA5D27DBE", + "name": "database-off", + "codepoint": "F1640", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "4DD86D39-4EC5-44BD-BA05-AA763999E390", + "name": "database-off-outline", + "codepoint": "F1631", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "76AAFFAC-C2C7-4375-A175-765848BF08AA", + "name": "database-outline", + "codepoint": "F1632", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "940D2514-B309-4CE0-A2E4-D02121415CA3", + "name": "database-plus", + "codepoint": "F01BA", + "aliases": [ + "database-add" + ], + "tags": [ + "Geographic Information System", + "Database" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "2250D162-41A7-4852-B3E2-555180A5A57C", + "name": "database-plus-outline", + "codepoint": "F1633", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "C43C676A-F2BE-489A-8613-BE6EF651F0AC", + "name": "database-refresh", + "codepoint": "F05C2", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Michael Richins", + "version": "1.5.54" + }, + { + "id": "03B12B1B-7AF3-42C7-89CA-482DC21F12CE", + "name": "database-refresh-outline", + "codepoint": "F1634", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "20B59D03-2EF5-4C5D-BB00-2CC611297AC0", + "name": "database-remove", + "codepoint": "F0D00", + "aliases": [], + "tags": [ + "Geographic Information System", + "Database" + ], + "author": "Michael Richins", + "version": "3.3.92" + }, + { + "id": "32FBEA36-9F09-4D8D-A355-2DD6FB2AA837", + "name": "database-remove-outline", + "codepoint": "F1635", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "58E36A40-053B-42EB-8879-9CB0948B58D4", + "name": "database-search", + "codepoint": "F0866", + "aliases": [ + "sql-query" + ], + "tags": [ + "Geographic Information System", + "Database" + ], + "author": "GreenTurtwig", + "version": "2.1.99" + }, + { + "id": "EFAB71E6-7F67-40B9-B388-0B4AFFC6B799", + "name": "database-search-outline", + "codepoint": "F1636", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "CBD96BE0-807C-4102-AC0B-AEFFE4D322F7", + "name": "database-settings", + "codepoint": "F0D01", + "aliases": [], + "tags": [ + "Settings", + "Geographic Information System", + "Database" + ], + "author": "Michael Richins", + "version": "3.3.92" + }, + { + "id": "9AB5AF13-E028-49FA-B81E-EFFF8A8EB144", + "name": "database-settings-outline", + "codepoint": "F1637", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "5E954303-C1CF-406B-A9B5-A72E5C25E499", + "name": "database-sync", + "codepoint": "F0CFF", + "aliases": [], + "tags": [ + "Geographic Information System", + "Database" + ], + "author": "Michael Richins", + "version": "3.3.92" + }, + { + "id": "9E1F0B0A-332A-473D-8CA2-DD30E03E76B9", + "name": "database-sync-outline", + "codepoint": "F1638", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "309A4ABA-E450-437D-8AD1-EE6A850D421B", + "name": "death-star", + "codepoint": "F08D8", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "2.3.50" + }, + { + "id": "51D35A62-F308-48B6-B471-D58CFE4CD6BC", + "name": "death-star-variant", + "codepoint": "F08D9", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "2.3.50" + }, + { + "id": "BC446853-45C9-4374-8980-579BCD93355A", + "name": "deathly-hallows", + "codepoint": "F0B87", + "aliases": [ + "harry-potter" + ], + "tags": [], + "author": "Michael Richins", + "version": "3.0.39" + }, + { + "id": "250883A1-65B8-4092-9B92-C9BD810ADB5A", + "name": "debian", + "codepoint": "F08DA", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "2.3.50" + }, + { + "id": "316468B3-C3F6-4A7B-B7B2-061E5C35FFE9", + "name": "debug-step-into", + "codepoint": "F01B9", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "08B9B3C7-BB6B-4110-ACEC-3BB947FFCFBA", + "name": "debug-step-out", + "codepoint": "F01B8", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "8242E7C8-1400-476D-AC27-DCA7B6292C70", + "name": "debug-step-over", + "codepoint": "F01B7", + "aliases": [ + "skip", + "jump" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "DA734DBD-1239-4E30-B688-ADF6A9D222D0", + "name": "decagram", + "codepoint": "F076C", + "aliases": [ + "starburst" + ], + "tags": [ + "Shape" + ], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "5F4B9A38-F090-4FA3-A138-1F758A9D446E", + "name": "decagram-outline", + "codepoint": "F076D", + "aliases": [ + "starburst-outline" + ], + "tags": [ + "Shape" + ], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "4A055D0D-18CA-45D9-96E1-B25448138888", + "name": "decimal", + "codepoint": "F10A1", + "aliases": [], + "tags": [ + "Math" + ], + "author": "Michael Richins", + "version": "4.2.95" + }, + { + "id": "A8C5A79A-EA59-4AA8-B432-98F66AFDAFD3", + "name": "decimal-comma", + "codepoint": "F10A2", + "aliases": [], + "tags": [ + "Math" + ], + "author": "Michael Richins", + "version": "4.2.95" + }, + { + "id": "E9237D99-5BD3-434A-B574-97C60B544EE1", + "name": "decimal-comma-decrease", + "codepoint": "F10A3", + "aliases": [], + "tags": [ + "Math" + ], + "author": "Michael Richins", + "version": "4.2.95" + }, + { + "id": "3B4E5DF0-02B3-469D-9C6E-754683655184", + "name": "decimal-comma-increase", + "codepoint": "F10A4", + "aliases": [], + "tags": [ + "Math" + ], + "author": "Michael Richins", + "version": "4.2.95" + }, + { + "id": "3A6FCF00-DE3C-4CD7-BF06-1D26E37E0C47", + "name": "decimal-decrease", + "codepoint": "F01B6", + "aliases": [], + "tags": [ + "Math" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "E99CB4D3-330D-493C-9C6B-FD43B27522FD", + "name": "decimal-increase", + "codepoint": "F01B5", + "aliases": [], + "tags": [ + "Math" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "71CD492D-A1E8-4A7A-961A-51DA30952BAD", + "name": "delete", + "codepoint": "F01B4", + "aliases": [ + "trash", + "bin", + "rubbish", + "garbage", + "rubbish-bin", + "trash-can", + "garbage-can" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "2FF4634B-095D-4827-9735-E345A46FC488", + "name": "delete-alert", + "codepoint": "F10A5", + "aliases": [], + "tags": [ + "Alert \/ Error" + ], + "author": "idevo89", + "version": "4.2.95" + }, + { + "id": "CFE12054-7E04-4144-B0CA-0DA9FE494E82", + "name": "delete-alert-outline", + "codepoint": "F10A6", + "aliases": [], + "tags": [ + "Alert \/ Error" + ], + "author": "idevo89", + "version": "4.2.95" + }, + { + "id": "1158F80B-E934-4E74-A4C6-7750BDCC409E", + "name": "delete-circle", + "codepoint": "F0683", + "aliases": [ + "trash-circle", + "bin-circle", + "garbage-can-circle", + "garbage-circle", + "rubbish-bin-circle", + "rubbish-circle", + "trash-can-circle" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.7.12" + }, + { + "id": "854068FB-F9DA-40B4-A427-F2317075CD95", + "name": "delete-circle-outline", + "codepoint": "F0B88", + "aliases": [ + "bin-circle-outline", + "garbage-can-circle-outline", + "garbage-circle-outline", + "rubbish-bin-circle-outline", + "rubbish-circle-outline", + "trash-can-circle-outline", + "trash-circle-outline" + ], + "tags": [], + "author": "TheChilliPL", + "version": "3.0.39" + }, + { + "id": "3B615510-4D78-4743-9FB0-A3D45F267B04", + "name": "delete-clock", + "codepoint": "F1556", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "CoreyVidal", + "version": "5.5.55" + }, + { + "id": "7544FA9D-AFFB-4038-8D9F-FEE3EB918342", + "name": "delete-clock-outline", + "codepoint": "F1557", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "CoreyVidal", + "version": "5.5.55" + }, + { + "id": "E39FB607-9058-4C00-840C-AF666F372071", + "name": "delete-empty", + "codepoint": "F06CC", + "aliases": [ + "trash-empty", + "bin-empty", + "rubbish-empty", + "rubbish-bin-empty", + "trash-can-empty", + "garbage-empty", + "garbage-can-empty" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.8.36" + }, + { + "id": "69108916-6CE9-456A-A1BE-9113F49B425E", + "name": "delete-empty-outline", + "codepoint": "F0E9D", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "3.7.94" + }, + { + "id": "52AFD546-8C5D-4E77-8D83-D4D058A742FE", + "name": "delete-forever", + "codepoint": "F05E8", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "103DF12F-6279-4967-8BF8-F72ED139E8E7", + "name": "delete-forever-outline", + "codepoint": "F0B89", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.0.39" + }, + { + "id": "C0E55306-EBD8-46D9-BF50-7285DC72D4B7", + "name": "delete-off", + "codepoint": "F10A7", + "aliases": [], + "tags": [], + "author": "idevo89", + "version": "4.2.95" + }, + { + "id": "4D2C0D3A-46A6-42B9-974E-F1B677C61D21", + "name": "delete-off-outline", + "codepoint": "F10A8", + "aliases": [], + "tags": [], + "author": "idevo89", + "version": "4.2.95" + }, + { + "id": "59ADF7EF-9F3E-4957-A789-95788D13B9E4", + "name": "delete-outline", + "codepoint": "F09E7", + "aliases": [ + "garbage-outline", + "bin-outline", + "rubbish-outline", + "garbage-can-outline", + "rubbish-bin-outline", + "trash-outline", + "trash-can-outline" + ], + "tags": [], + "author": "Google", + "version": "2.5.94" + }, + { + "id": "7837B9B7-2A6F-42E3-894D-C40D0080FB7B", + "name": "delete-restore", + "codepoint": "F0819", + "aliases": [ + "trash-restore", + "bin-restore", + "restore-from-trash" + ], + "tags": [], + "author": "Google", + "version": "2.1.19" + }, + { + "id": "3B3D514C-AFC3-4D04-91EA-E18F03BB494A", + "name": "delete-sweep", + "codepoint": "F05E9", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "18C79874-01B2-4A65-AD4E-B8600C3F3ADD", + "name": "delete-sweep-outline", + "codepoint": "F0C62", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.2.89" + }, + { + "id": "DC3862AC-6945-4104-9F15-50BD46D13705", + "name": "delete-variant", + "codepoint": "F01B3", + "aliases": [ + "trash-variant", + "bin-variant", + "cup-ice", + "drink-ice" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "D4B29470-8EE3-4ED8-BB01-6C942CE7E748", + "name": "delta", + "codepoint": "F01C2", + "aliases": [ + "change-history" + ], + "tags": [ + "Math", + "Alpha \/ Numeric" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "35E2D33D-B4A8-4E12-B844-8EC1172F15A9", + "name": "desk", + "codepoint": "F1239", + "aliases": [], + "tags": [], + "author": "Gabriel Grant", + "version": "4.6.95" + }, + { + "id": "80459D13-2662-4F47-AB31-F6A2B84C8DEB", + "name": "desk-lamp", + "codepoint": "F095F", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Contributors", + "version": "2.4.85" + }, + { + "id": "C05777DC-F874-4231-B9EB-5675C808F7BB", + "name": "deskphone", + "codepoint": "F01C3", + "aliases": [], + "tags": [ + "Cellphone \/ Phone", + "Device \/ Tech" + ], + "author": "Chris Litherland", + "version": "1.5.54" + }, + { + "id": "40B89929-0709-461F-8C7A-ED94CDDCC4AC", + "name": "desktop-classic", + "codepoint": "F07C0", + "aliases": [ + "computer-classic" + ], + "tags": [ + "Device \/ Tech", + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "2.0.46" + }, + { + "id": "4B4C339D-D581-44A3-95DE-4254CC42AC8D", + "name": "desktop-mac", + "codepoint": "F01C4", + "aliases": [], + "tags": [ + "Device \/ Tech", + "Home Automation" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "A3CC4F14-35C0-421B-A818-9B8E4E852522", + "name": "desktop-mac-dashboard", + "codepoint": "F09E8", + "aliases": [], + "tags": [ + "Device \/ Tech" + ], + "author": "Michael Richins", + "version": "2.5.94" + }, + { + "id": "362BCE24-8F91-491A-8EE8-BD08C296511A", + "name": "desktop-tower", + "codepoint": "F01C5", + "aliases": [], + "tags": [ + "Device \/ Tech", + "Home Automation" + ], + "author": "Chris Litherland", + "version": "1.5.54" + }, + { + "id": "D7BED84E-B592-46F0-8A5B-DD8677088837", + "name": "desktop-tower-monitor", + "codepoint": "F0AAB", + "aliases": [], + "tags": [ + "Device \/ Tech" + ], + "author": "SarinManS", + "version": "2.7.94" + }, + { + "id": "21A2819F-3B97-49D0-A588-30CF7B8915F5", + "name": "details", + "codepoint": "F01C6", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "D3E5B7D2-2301-4D35-A95E-1C1B0A6C9224", + "name": "dev-to", + "codepoint": "F0D6E", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "3.4.93" + }, + { + "id": "7D1C43A0-CDE0-416B-A1A9-1CD07F930284", + "name": "developer-board", + "codepoint": "F0697", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.7.12" + }, + { + "id": "ECD72042-9BA7-4C24-A740-7F538B443302", + "name": "deviantart", + "codepoint": "F01C7", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "D8990892-9C02-46AC-9A91-3D4D9A2EFF19", + "name": "devices", + "codepoint": "F0FB0", + "aliases": [ + "monitor", + "watch", + "smartwatch", + "smartphone", + "cellphone", + "television" + ], + "tags": [ + "Device \/ Tech", + "Home Automation" + ], + "author": "Google", + "version": "4.0.96" + }, + { + "id": "18A94F7F-1BC5-48EC-9CAF-6D2D663287DC", + "name": "dharmachakra", + "codepoint": "F094B", + "aliases": [ + "dharma-wheel", + "religion-buddhist", + "buddhism" + ], + "tags": [ + "Religion" + ], + "author": "Nick", + "version": "2.4.85" + }, + { + "id": "B0973EC9-B27B-4666-8E9E-C766A601BB0A", + "name": "diabetes", + "codepoint": "F1126", + "aliases": [ + "hand-blood" + ], + "tags": [ + "Medical \/ Hospital" + ], + "author": "Michael Richins", + "version": "4.3.95" + }, + { + "id": "B732FAD7-93A7-478E-810F-835069DE6EDB", + "name": "dialpad", + "codepoint": "F061C", + "aliases": [ + "keypad" + ], + "tags": [], + "author": "Google", + "version": "1.6.50" + }, + { + "id": "64CBC510-072A-477D-99DD-F8114E7E312E", + "name": "diameter", + "codepoint": "F0C63", + "aliases": [ + "circle-diameter", + "sphere-diameter" + ], + "tags": [ + "Math" + ], + "author": "Michael Richins", + "version": "3.2.89" + }, + { + "id": "ABE01F05-E04E-4C5F-8F70-F8A9DB484E89", + "name": "diameter-outline", + "codepoint": "F0C64", + "aliases": [ + "circle-diameter-outline", + "sphere-diameter-outline" + ], + "tags": [ + "Math" + ], + "author": "Michael Richins", + "version": "3.2.89" + }, + { + "id": "B1744A41-3289-4535-81F8-E23617C701FE", + "name": "diameter-variant", + "codepoint": "F0C65", + "aliases": [ + "circle-diameter-variant", + "sphere-diameter-variant" + ], + "tags": [ + "Math" + ], + "author": "Michael Richins", + "version": "3.2.89" + }, + { + "id": "BC337E6C-8077-4D79-9596-6B9EDDA6DE0D", + "name": "diamond", + "codepoint": "F0B8A", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "3.0.39" + }, + { + "id": "4D922F91-E62D-42BB-86E4-BE8A96BC2B80", + "name": "diamond-outline", + "codepoint": "F0B8B", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "3.0.39" + }, + { + "id": "7AEA1B64-9B6D-4D55-91F8-05BA1BF3BF89", + "name": "diamond-stone", + "codepoint": "F01C8", + "aliases": [ + "jewel" + ], + "tags": [], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "F8E5E9B6-9953-46F8-84DC-CFBB11DEFFB7", + "name": "dice-1", + "codepoint": "F01CA", + "aliases": [ + "die-1", + "dice-one" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Yasmina Lembachar", + "version": "1.5.54" + }, + { + "id": "430F434F-E5F5-4D54-97B0-F6D1CE844365", + "name": "dice-1-outline", + "codepoint": "F114A", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "07927207-23B1-4A93-BB8A-E6B5F41B919A", + "name": "dice-2", + "codepoint": "F01CB", + "aliases": [ + "die-2", + "dice-two" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Yasmina Lembachar", + "version": "1.5.54" + }, + { + "id": "BA4A2CA9-22E9-450E-B8CA-99A8ED5E0A1B", + "name": "dice-2-outline", + "codepoint": "F114B", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "2948109E-F9DA-4306-8247-665CC05BDB21", + "name": "dice-3", + "codepoint": "F01CC", + "aliases": [ + "die-3", + "dice-three" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Yasmina Lembachar", + "version": "1.5.54" + }, + { + "id": "D4689BAD-0911-4832-9A8E-AD334D834773", + "name": "dice-3-outline", + "codepoint": "F114C", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "F7FA1307-CC98-4B93-B42A-533F1F6E851C", + "name": "dice-4", + "codepoint": "F01CD", + "aliases": [ + "die-4", + "dice-four" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Yasmina Lembachar", + "version": "1.5.54" + }, + { + "id": "A24BDBB1-DF5E-4022-8AF0-3D4989B0F2EE", + "name": "dice-4-outline", + "codepoint": "F114D", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "9B9F7FE0-5AA9-4B5F-B865-D7F21C1382AF", + "name": "dice-5", + "codepoint": "F01CE", + "aliases": [ + "die-5", + "dice-five" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Yasmina Lembachar", + "version": "1.5.54" + }, + { + "id": "07A26D74-6460-4AD8-9470-E4E0A39E9DAB", + "name": "dice-5-outline", + "codepoint": "F114E", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "015F173B-CA59-4125-8F19-925ED108BE07", + "name": "dice-6", + "codepoint": "F01CF", + "aliases": [ + "die-6", + "dice-six" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Yasmina Lembachar", + "version": "1.5.54" + }, + { + "id": "359B124F-4377-4580-9C7C-494539D087DB", + "name": "dice-6-outline", + "codepoint": "F114F", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "F80FBAEF-6EE5-4F02-AAA8-7E3FBA618708", + "name": "dice-d10", + "codepoint": "F1153", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "47BB1E5C-0CCD-4A50-B1EF-2437411217C0", + "name": "dice-d10-outline", + "codepoint": "F076F", + "aliases": [ + "die-d10" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "87285D65-197B-46D6-BAD6-F9EE53DD5F28", + "name": "dice-d12", + "codepoint": "F1154", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "E27CCA75-CE3E-4C7D-81AA-D3A1391A819E", + "name": "dice-d12-outline", + "codepoint": "F0867", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Michael Richins", + "version": "2.1.99" + }, + { + "id": "948F2639-1E9E-478F-BCC9-4EC7147F8616", + "name": "dice-d20", + "codepoint": "F1155", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "926FAA94-AB58-44AA-916C-66AF56A5BCCF", + "name": "dice-d20-outline", + "codepoint": "F05EA", + "aliases": [ + "die-d20" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "876805AB-7EC6-4CD8-A9D4-17213004A83A", + "name": "dice-d4", + "codepoint": "F1150", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "DCC141FA-CA87-48E1-969D-BB010C973DD5", + "name": "dice-d4-outline", + "codepoint": "F05EB", + "aliases": [ + "die-d4" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "A62117B1-58C5-4A44-B6B1-C6E1DCEB7E00", + "name": "dice-d6", + "codepoint": "F1151", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "A0F00FDF-6648-475B-819B-29E4C0769FFA", + "name": "dice-d6-outline", + "codepoint": "F05ED", + "aliases": [ + "die-d6" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "5EA075B9-0455-42DA-AB57-47BAFADF0160", + "name": "dice-d8", + "codepoint": "F1152", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "64967BE6-CAAF-4F28-BF55-C5451D4E8B94", + "name": "dice-d8-outline", + "codepoint": "F05EC", + "aliases": [ + "die-d8" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "8C9D5084-1B34-4AB9-BE23-E44B03AE85E5", + "name": "dice-multiple", + "codepoint": "F076E", + "aliases": [ + "die-multiple" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Michael Richins", + "version": "1.9.32" + }, + { + "id": "4F078165-F841-4013-B24C-4FA639C7F708", + "name": "dice-multiple-outline", + "codepoint": "F1156", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "58BA7D31-6B34-46E6-B325-080C95B32A6F", + "name": "digital-ocean", + "codepoint": "F1237", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "4.6.95" + }, + { + "id": "2356EE38-11BE-44B1-BAD9-D74ECE86F8E7", + "name": "dip-switch", + "codepoint": "F07C1", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "2.0.46" + }, + { + "id": "4C84603B-BEB6-4282-B6CE-D9AD3C098627", + "name": "directions", + "codepoint": "F01D0", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "8F53DAC3-E72D-473E-ABD1-AC1849EB660A", + "name": "directions-fork", + "codepoint": "F0641", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.6.50" + }, + { + "id": "95CEA0DD-5123-4FFA-B906-E6C55766030D", + "name": "disc", + "codepoint": "F05EE", + "aliases": [], + "tags": [ + "Music" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "63A41E0F-CCDB-42F8-848B-F64AA94F9BDF", + "name": "disc-alert", + "codepoint": "F01D1", + "aliases": [ + "disc-full", + "disc-warning" + ], + "tags": [ + "Alert \/ Error" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "DA84CDD7-3881-4DE0-8CEB-51F1BD086A3A", + "name": "disc-player", + "codepoint": "F0960", + "aliases": [], + "tags": [ + "Home Automation", + "Device \/ Tech" + ], + "author": "Austin Andrews", + "version": "2.4.85" + }, + { + "id": "2C23A3F9-54C7-4C7F-8C2F-182A4F75F894", + "name": "discord", + "codepoint": "F066F", + "aliases": [], + "tags": [ + "Brand \/ Logo", + "Gaming \/ RPG" + ], + "author": "Contributors", + "version": "1.6.50" + }, + { + "id": "41CB517E-41F5-47D4-A8A2-E9512CB065DD", + "name": "dishwasher", + "codepoint": "F0AAC", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Google", + "version": "2.7.94" + }, + { + "id": "A72D6C1A-A953-4F9B-BD38-0E0ACF1A6C58", + "name": "dishwasher-alert", + "codepoint": "F11B8", + "aliases": [], + "tags": [ + "Home Automation", + "Alert \/ Error" + ], + "author": "Michael Irigoyen", + "version": "4.5.95" + }, + { + "id": "5BB3E0C6-278F-4008-8327-0124D7A209A6", + "name": "dishwasher-off", + "codepoint": "F11B9", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "4.5.95" + }, + { + "id": "28670432-3B76-43FC-B879-558B338F1E1F", + "name": "disqus", + "codepoint": "F01D2", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "BA55B495-6775-4070-9ADC-FF56EB8E067D", + "name": "distribute-horizontal-center", + "codepoint": "F11C9", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.5.95" + }, + { + "id": "22C7EA3A-483D-4BFD-A115-42F86F164135", + "name": "distribute-horizontal-left", + "codepoint": "F11C8", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.5.95" + }, + { + "id": "771135B5-F856-4AAE-9FD1-8F728964DE2F", + "name": "distribute-horizontal-right", + "codepoint": "F11CA", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.5.95" + }, + { + "id": "DDF54E4F-65E8-407A-961F-5B02A3A0DC37", + "name": "distribute-vertical-bottom", + "codepoint": "F11CB", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.5.95" + }, + { + "id": "35AAECBA-CF24-4DCC-99F0-20D9CB21B58B", + "name": "distribute-vertical-center", + "codepoint": "F11CC", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.5.95" + }, + { + "id": "F1C73D50-8C76-4269-8CBB-D232C55BD100", + "name": "distribute-vertical-top", + "codepoint": "F11CD", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.5.95" + }, + { + "id": "A951E9F9-30A8-4B95-AAFC-1B926A4F1E17", + "name": "diversify", + "codepoint": "F1877", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "6.2.95" + }, + { + "id": "813D489B-3127-4F32-9D6E-4BB8A6F51605", + "name": "diving", + "codepoint": "F1977", + "aliases": [ + "swim-dive" + ], + "tags": [ + "Sport" + ], + "author": "Google", + "version": "6.5.95" + }, + { + "id": "B57B062B-66A2-4F90-85A3-97446E1934D2", + "name": "diving-flippers", + "codepoint": "F0DBF", + "aliases": [], + "tags": [ + "Sport" + ], + "author": "Michael Richins", + "version": "3.5.94" + }, + { + "id": "4732B7F8-F8EF-4E5A-A889-BA5770B1B4FF", + "name": "diving-helmet", + "codepoint": "F0DC0", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "3.5.94" + }, + { + "id": "6C2E4BEE-6D01-4B09-A501-CE976EE20740", + "name": "diving-scuba", + "codepoint": "F0DC1", + "aliases": [], + "tags": [ + "Sport" + ], + "author": "Michael Richins", + "version": "3.5.94" + }, + { + "id": "7B600593-08CB-42D0-B106-0EDF12132BFC", + "name": "diving-scuba-flag", + "codepoint": "F0DC2", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "3.5.94" + }, + { + "id": "64055E84-7F77-4020-A105-313AAD36353E", + "name": "diving-scuba-tank", + "codepoint": "F0DC3", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "3.5.94" + }, + { + "id": "868AEE51-0552-43D0-97FA-9F783BB2A67C", + "name": "diving-scuba-tank-multiple", + "codepoint": "F0DC4", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "3.5.94" + }, + { + "id": "227F84AF-3BC0-4C9D-BADB-DC8B1A110ED8", + "name": "diving-snorkel", + "codepoint": "F0DC5", + "aliases": [], + "tags": [ + "Sport" + ], + "author": "Michael Richins", + "version": "3.5.94" + }, + { + "id": "FB313489-5EA3-4F07-ABA4-F84995D7DD13", + "name": "division", + "codepoint": "F01D4", + "aliases": [ + "obelus" + ], + "tags": [ + "Math" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "1A0BABA0-5F5E-45ED-A4BB-DCBD569F6E43", + "name": "division-box", + "codepoint": "F01D5", + "aliases": [], + "tags": [ + "Math" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "15C7622F-855B-4FFA-BA1A-ED0ED470078B", + "name": "dlna", + "codepoint": "F0A41", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "2.6.95" + }, + { + "id": "2C726E7E-53C8-410C-82F4-FE5DE9EF4BC1", + "name": "dna", + "codepoint": "F0684", + "aliases": [ + "helix" + ], + "tags": [ + "Science" + ], + "author": "Haley Halcyon", + "version": "1.7.12" + }, + { + "id": "D4A20191-F5B8-4323-A0A8-F4C15A86A83B", + "name": "dns", + "codepoint": "F01D6", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "D81BA495-F83D-4CFF-A9A5-B398D7E53DC7", + "name": "dns-outline", + "codepoint": "F0B8C", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.0.39" + }, + { + "id": "E6B5C99C-7C0F-4F61-AEF9-7FDF6851D426", + "name": "dock-bottom", + "codepoint": "F10A9", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "4.2.95" + }, + { + "id": "59BABD0B-E745-4389-B318-4E166F2ED0C0", + "name": "dock-left", + "codepoint": "F10AA", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "4.2.95" + }, + { + "id": "3AF2E71C-A865-4512-8B41-3803BFA84C48", + "name": "dock-right", + "codepoint": "F10AB", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "4.2.95" + }, + { + "id": "4014E87F-B3F7-465B-B84D-ED2408AA95EE", + "name": "dock-top", + "codepoint": "F1513", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.4.55" + }, + { + "id": "6EF77419-3085-4805-804C-096C6D8A4450", + "name": "dock-window", + "codepoint": "F10AC", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "4.2.95" + }, + { + "id": "8EE88381-B350-4C63-B26D-F340FE54D668", + "name": "docker", + "codepoint": "F0868", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "2.1.99" + }, + { + "id": "3772A377-C71A-429B-A4A6-3979DA3BC588", + "name": "doctor", + "codepoint": "F0A42", + "aliases": [], + "tags": [ + "Medical \/ Hospital" + ], + "author": "Augustin Ursu", + "version": "2.6.95" + }, + { + "id": "8D6EB954-B4C9-44D5-9E70-C4E186C35957", + "name": "dog", + "codepoint": "F0A43", + "aliases": [ + "emoji-dog", + "emoticon-dog" + ], + "tags": [ + "Animal" + ], + "author": "Michael Irigoyen", + "version": "2.6.95" + }, + { + "id": "C0CF99F2-5D8E-4478-9602-9866AF83B94B", + "name": "dog-service", + "codepoint": "F0AAD", + "aliases": [ + "guide-dog", + "k9", + "canine" + ], + "tags": [ + "Animal" + ], + "author": "Michael Richins", + "version": "2.7.94" + }, + { + "id": "4A3EEFF6-77EF-498F-9450-7AE3D3EC7BC6", + "name": "dog-side", + "codepoint": "F0A44", + "aliases": [ + "k9", + "canine" + ], + "tags": [ + "Animal" + ], + "author": "Nick", + "version": "2.6.95" + }, + { + "id": "74FE76CF-E5A5-42F3-97BD-0BCDF17DBFFF", + "name": "dog-side-off", + "codepoint": "F16EE", + "aliases": [], + "tags": [ + "Animal" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "FE71CD75-B2E7-49A5-B00B-732BACB52F6F", + "name": "dolby", + "codepoint": "F06B3", + "aliases": [], + "tags": [ + "Audio", + "Brand \/ Logo", + "Home Automation" + ], + "author": "Contributors", + "version": "1.7.22" + }, + { + "id": "6F2EAC1C-802A-48CF-A9E1-7EBFD4893BAF", + "name": "dolly", + "codepoint": "F0E9E", + "aliases": [ + "hand-truck", + "trolley" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.7.94" + }, + { + "id": "578351FA-0F35-41B0-BC7C-A9B33EBEBC4D", + "name": "dolphin", + "codepoint": "F18B4", + "aliases": [ + "porpoise" + ], + "tags": [ + "Animal" + ], + "author": "Colton Wiscombe", + "version": "6.3.95" + }, + { + "id": "CA264BA4-62A9-4823-A172-22DD413A6CF5", + "name": "domain", + "codepoint": "F01D7", + "aliases": [ + "building", + "company", + "business" + ], + "tags": [ + "Places" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "77232563-20F2-4C73-B30E-5F83D237E7D7", + "name": "domain-off", + "codepoint": "F0D6F", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.4.93" + }, + { + "id": "C19B8872-80EF-439B-A7B8-5F043DC66991", + "name": "domain-plus", + "codepoint": "F10AD", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "4.2.95" + }, + { + "id": "BB1C669D-D6EA-47D7-B15C-10A236D214AA", + "name": "domain-remove", + "codepoint": "F10AE", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "4.2.95" + }, + { + "id": "E17E8B8F-361D-4467-97BE-71C3ABE9355A", + "name": "dome-light", + "codepoint": "F141E", + "aliases": [], + "tags": [], + "author": "Tim Grelka", + "version": "5.2.45" + }, + { + "id": "4621ACB1-6F3D-414D-8724-B276982DB087", + "name": "domino-mask", + "codepoint": "F1023", + "aliases": [ + "robber-mask", + "zorro-mask" + ], + "tags": [], + "author": "Andrew Nenakhov", + "version": "4.1.95" + }, + { + "id": "7027E5FC-228D-4E32-B2BB-02287E94D132", + "name": "donkey", + "codepoint": "F07C2", + "aliases": [], + "tags": [ + "Animal" + ], + "author": "Contributors", + "version": "2.0.46" + }, + { + "id": "858F8782-5001-4950-96F2-65032091A847", + "name": "door", + "codepoint": "F081A", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Haley Halcyon", + "version": "2.1.19" + }, + { + "id": "DFE96305-5114-4F53-AB08-08F99F37C2FE", + "name": "door-closed", + "codepoint": "F081B", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Haley Halcyon", + "version": "2.1.19" + }, + { + "id": "792A98B0-E031-43CF-AF8B-ACF21C97C4C2", + "name": "door-closed-lock", + "codepoint": "F10AF", + "aliases": [], + "tags": [ + "Home Automation", + "Lock" + ], + "author": "Michael Richins", + "version": "4.2.95" + }, + { + "id": "A64D06DE-1EE4-400F-9E17-2B5D319475A3", + "name": "door-open", + "codepoint": "F081C", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Haley Halcyon", + "version": "2.1.19" + }, + { + "id": "73FBEFFD-7EE3-4272-AB1F-A480C698FD5E", + "name": "door-sliding", + "codepoint": "F181E", + "aliases": [ + "patio-door", + "french-door" + ], + "tags": [ + "Home Automation" + ], + "author": "Google", + "version": "6.1.95" + }, + { + "id": "933F6908-12B7-4448-9A83-1FAD909ECC53", + "name": "door-sliding-lock", + "codepoint": "F181F", + "aliases": [ + "patio-door-lock", + "french-door-lock" + ], + "tags": [ + "Home Automation", + "Lock" + ], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "B8358F0C-19A7-4E55-AF98-F4FEFA983148", + "name": "door-sliding-open", + "codepoint": "F1820", + "aliases": [ + "patio-door-open", + "french-door-open" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "91D0BB43-E5D4-4F0B-89E7-B379A6F9A455", + "name": "doorbell", + "codepoint": "F12E6", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "63848BB0-8CBA-491A-9D3A-5964BAA67CC2", + "name": "doorbell-video", + "codepoint": "F0869", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "2.1.99" + }, + { + "id": "E05A9EE4-A599-4195-93F9-0E4024670E81", + "name": "dot-net", + "codepoint": "F0AAE", + "aliases": [ + "microsoft-dot-net" + ], + "tags": [ + "Developer \/ Languages" + ], + "author": "Contributors", + "version": "2.7.94" + }, + { + "id": "FDC05366-F73E-4D60-B048-8AA4732B2C1F", + "name": "dots-circle", + "codepoint": "F1978", + "aliases": [ + "perimeter" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.5.95" + }, + { + "id": "9BBDE78A-ADFF-4FFB-AC79-C7B1FDAB633E", + "name": "dots-grid", + "codepoint": "F15FC", + "aliases": [], + "tags": [], + "author": "Jeff Anders", + "version": "5.6.55" + }, + { + "id": "92CE1CCF-7652-4292-831D-CFE1ADBB54B6", + "name": "dots-hexagon", + "codepoint": "F15FF", + "aliases": [], + "tags": [], + "author": "Jeff Anders", + "version": "5.6.55" + }, + { + "id": "9156AFAA-25BB-4E97-9EC8-BB9BE9AF60B0", + "name": "dots-horizontal", + "codepoint": "F01D8", + "aliases": [ + "more", + "ellipsis-horizontal", + "more-horiz", + "menu" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "2ED6A664-DAE9-427C-8810-496C331C9BE0", + "name": "dots-horizontal-circle", + "codepoint": "F07C3", + "aliases": [ + "ellipsis-horizontal-circle", + "more-circle", + "menu" + ], + "tags": [], + "author": "Google", + "version": "2.0.46" + }, + { + "id": "378E8311-F963-41EC-9AFF-5B30EF975313", + "name": "dots-horizontal-circle-outline", + "codepoint": "F0B8D", + "aliases": [ + "ellipsis-horizontal-circle-outline", + "more-circle-outline", + "menu" + ], + "tags": [], + "author": "Michael Richins", + "version": "3.0.39" + }, + { + "id": "57A090F9-EBDF-4A60-8B83-1D5E5A61B73E", + "name": "dots-square", + "codepoint": "F15FD", + "aliases": [ + "perimeter" + ], + "tags": [], + "author": "Jeff Anders", + "version": "5.6.55" + }, + { + "id": "37FA940A-635C-48A5-988B-D1F4BBC0A7E0", + "name": "dots-triangle", + "codepoint": "F15FE", + "aliases": [], + "tags": [], + "author": "Jeff Anders", + "version": "5.6.55" + }, + { + "id": "5D70B3D1-8407-42C9-A3C1-42EE68FF18F3", + "name": "dots-vertical", + "codepoint": "F01D9", + "aliases": [ + "ellipsis-vertical", + "more-vert", + "menu" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "5D23E65D-271A-463B-972F-E8524E76E6D7", + "name": "dots-vertical-circle", + "codepoint": "F07C4", + "aliases": [ + "ellipsis-vertical-circle", + "menu" + ], + "tags": [], + "author": "Austin Andrews", + "version": "2.0.46" + }, + { + "id": "E2CD4D50-D64C-47B9-AF3B-C464D65CD4EB", + "name": "dots-vertical-circle-outline", + "codepoint": "F0B8E", + "aliases": [ + "ellipsis-vertical-circle-outline", + "menu" + ], + "tags": [], + "author": "Michael Richins", + "version": "3.0.39" + }, + { + "id": "704F7397-0E85-4213-8D76-FE156DF1795F", + "name": "download", + "codepoint": "F01DA", + "aliases": [ + "file-download", + "get-app" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "49E1E432-8C28-43AA-818C-EB62ACF5EC06", + "name": "download-box", + "codepoint": "F1462", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "5.2.45" + }, + { + "id": "48A14899-8641-40E7-BF9D-06BD6AE9BB54", + "name": "download-box-outline", + "codepoint": "F1463", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "5.2.45" + }, + { + "id": "B4B33DFC-4361-478D-A3A3-3FD224B95C16", + "name": "download-circle", + "codepoint": "F1464", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "5.2.45" + }, + { + "id": "0F2CB73D-1357-4004-88DE-6E57549B8F1C", + "name": "download-circle-outline", + "codepoint": "F1465", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "5.2.45" + }, + { + "id": "F70D7D6A-B496-4182-A423-939E2CCF21AC", + "name": "download-lock", + "codepoint": "F1320", + "aliases": [], + "tags": [ + "Lock" + ], + "author": "Michael Richins", + "version": "4.9.95" + }, + { + "id": "CDB71553-149F-452B-A0DC-2CD8EFA41150", + "name": "download-lock-outline", + "codepoint": "F1321", + "aliases": [], + "tags": [ + "Lock" + ], + "author": "Michael Richins", + "version": "4.9.95" + }, + { + "id": "EEECC393-B78C-43DE-BDA4-F31DACA25F56", + "name": "download-multiple", + "codepoint": "F09E9", + "aliases": [ + "downloads" + ], + "tags": [], + "author": "GreenTurtwig", + "version": "2.5.94" + }, + { + "id": "8DD93DC3-060D-4CB3-AB41-8A1A5243BFFD", + "name": "download-network", + "codepoint": "F06F4", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.8.36" + }, + { + "id": "EACBF539-FF17-4F63-8782-AB4146D9B072", + "name": "download-network-outline", + "codepoint": "F0C66", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "C582FB3E-A708-411C-91C8-FA660E313AAE", + "name": "download-off", + "codepoint": "F10B0", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.2.95" + }, + { + "id": "0FFB4F5B-34FB-4E1F-AA6B-96C5CD8F9632", + "name": "download-off-outline", + "codepoint": "F10B1", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.2.95" + }, + { + "id": "AB9770C4-6886-4A46-8F4E-B96CBCCCF839", + "name": "download-outline", + "codepoint": "F0B8F", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.0.39" + }, + { + "id": "2366C232-208F-4A03-9FC9-D9C8C52622CA", + "name": "drag", + "codepoint": "F01DB", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "544A0702-E7DC-4E1F-9A6E-8785AA3048D8", + "name": "drag-horizontal", + "codepoint": "F01DC", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "FA5B1F76-C0C4-4F08-B545-D28E78781F67", + "name": "drag-horizontal-variant", + "codepoint": "F12F0", + "aliases": [], + "tags": [], + "author": "Google", + "version": "4.8.95" + }, + { + "id": "5B3C7AEE-2539-4DD7-AA86-D5B3ED1EB097", + "name": "drag-variant", + "codepoint": "F0B90", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "3.0.39" + }, + { + "id": "4B8D8E9B-547D-4DE3-B8E1-5023867EF965", + "name": "drag-vertical", + "codepoint": "F01DD", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "BAD1F323-E74E-4E04-A1F6-4CCC7CAC2E34", + "name": "drag-vertical-variant", + "codepoint": "F12F1", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "ACAF4137-3EA8-4B7C-A1DB-C34759C70A5D", + "name": "drama-masks", + "codepoint": "F0D02", + "aliases": [ + "comedy", + "tragedy", + "theatre" + ], + "tags": [], + "author": "Augustin Ursu", + "version": "3.3.92" + }, + { + "id": "ECDE04BF-F8A5-4DAD-B4F9-887CAE97CBE3", + "name": "draw", + "codepoint": "F0F49", + "aliases": [ + "sign", + "signature" + ], + "tags": [ + "Drawing \/ Art", + "Form" + ], + "author": "Michael Irigoyen", + "version": "3.9.97" + }, + { + "id": "152EF3D9-A7C4-40AC-8691-D5A4D48CFD37", + "name": "draw-pen", + "codepoint": "F19B9", + "aliases": [ + "sign", + "signature" + ], + "tags": [ + "Form", + "Drawing \/ Art" + ], + "author": "Michael Irigoyen", + "version": "6.5.95" + }, + { + "id": "E8557F02-8241-47FB-B546-402947A5818C", + "name": "drawing", + "codepoint": "F01DE", + "aliases": [], + "tags": [ + "Drawing \/ Art", + "Shape" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "BF9750EC-EB85-4670-A4DE-4808729249B5", + "name": "drawing-box", + "codepoint": "F01DF", + "aliases": [], + "tags": [ + "Drawing \/ Art", + "Shape" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "BBA92DC7-D461-44FA-8FA2-6D8846368E5C", + "name": "dresser", + "codepoint": "F0F4A", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "3.9.97" + }, + { + "id": "B70C7178-DB6F-4172-8440-3A9003AA040D", + "name": "dresser-outline", + "codepoint": "F0F4B", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "3.9.97" + }, + { + "id": "B6A0EC44-BDF3-4001-ABBF-51E0F2522BD3", + "name": "drone", + "codepoint": "F01E2", + "aliases": [], + "tags": [ + "Transportation + Flying" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "C8E22510-9369-4C7C-B598-8799DB9FE2A2", + "name": "dropbox", + "codepoint": "F01E3", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "5FCCAA35-0339-4B8F-984A-D4112C3277C1", + "name": "drupal", + "codepoint": "F01E4", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "74F300CC-D7A5-45AF-A946-B219E82F8997", + "name": "duck", + "codepoint": "F01E5", + "aliases": [], + "tags": [ + "Animal" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "E792948B-8E66-49B5-83E7-8CDF1ECE6C5D", + "name": "dumbbell", + "codepoint": "F01E6", + "aliases": [ + "weights", + "fitness-center", + "gym", + "barbell" + ], + "tags": [ + "Sport" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "50BCAB01-5182-4FBA-9F6D-62DF6872B743", + "name": "dump-truck", + "codepoint": "F0C67", + "aliases": [ + "tipper-lorry" + ], + "tags": [ + "Transportation + Road", + "Hardware \/ Tools" + ], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "9F02DA93-0C4D-4A77-8F6B-E4220480AB55", + "name": "ear-hearing", + "codepoint": "F07C5", + "aliases": [], + "tags": [], + "author": "Google", + "version": "2.0.46" + }, + { + "id": "78ACE34A-8AC2-4259-AD8D-1118A11C6800", + "name": "ear-hearing-off", + "codepoint": "F0A45", + "aliases": [ + "hearing-impaired" + ], + "tags": [], + "author": "Henrique C\u00e9sar Madeira", + "version": "2.6.95" + }, + { + "id": "F809C249-6B8A-4A3E-B945-7EA3D0F71AB0", + "name": "earbuds", + "codepoint": "F184F", + "aliases": [ + "headphones" + ], + "tags": [ + "Audio" + ], + "author": "Colton Wiscombe", + "version": "6.2.95" + }, + { + "id": "3938606F-6B8D-45D2-A835-8F3A08E97CB1", + "name": "earbuds-off", + "codepoint": "F1850", + "aliases": [ + "headphones-off" + ], + "tags": [ + "Audio" + ], + "author": "Colton Wiscombe", + "version": "6.2.95" + }, + { + "id": "E9DB591B-AB1E-4C5B-9596-63EA899D54AF", + "name": "earbuds-off-outline", + "codepoint": "F1851", + "aliases": [ + "headphones-off-outline" + ], + "tags": [ + "Audio" + ], + "author": "Colton Wiscombe", + "version": "6.2.95" + }, + { + "id": "15AB1BAE-A458-4107-9C96-07BF755F3EBA", + "name": "earbuds-outline", + "codepoint": "F1852", + "aliases": [ + "headphones-outline" + ], + "tags": [ + "Audio" + ], + "author": "Colton Wiscombe", + "version": "6.2.95" + }, + { + "id": "0D1618BF-A3AD-4B4A-92EA-5DBF93BF7625", + "name": "earth", + "codepoint": "F01E7", + "aliases": [ + "globe", + "public", + "planet", + "world" + ], + "tags": [ + "Geographic Information System" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "E6C7261B-1CC0-41EA-844B-0DA761CDCC12", + "name": "earth-arrow-right", + "codepoint": "F1311", + "aliases": [ + "globe-arrow-right", + "world-arrow-right", + "planet-arrow-right" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "3F4C3330-49D5-4F2B-8FCC-A3448BEF521E", + "name": "earth-box", + "codepoint": "F06CD", + "aliases": [ + "globe-box", + "world-box", + "planet-box" + ], + "tags": [], + "author": "GreenTurtwig", + "version": "1.8.36" + }, + { + "id": "C6EEACD5-6E55-4A4A-8E66-0CC8233470DA", + "name": "earth-box-minus", + "codepoint": "F1407", + "aliases": [ + "globe-box-minus", + "world-box-minus", + "planet-box-minus" + ], + "tags": [], + "author": "Muhammet Balsoy", + "version": "5.1.45" + }, + { + "id": "CAE8B8BC-E89F-49C3-8178-6F09ACED1FC3", + "name": "earth-box-off", + "codepoint": "F06CE", + "aliases": [ + "globe-box-off", + "world-box-off", + "planet-box-off" + ], + "tags": [], + "author": "GreenTurtwig", + "version": "1.8.36" + }, + { + "id": "5CEC6008-A993-410B-985A-4E41291BE614", + "name": "earth-box-plus", + "codepoint": "F1406", + "aliases": [ + "globe-box-plus", + "world-box-plus", + "planet-box-plus" + ], + "tags": [], + "author": "Muhammet Balsoy", + "version": "5.1.45" + }, + { + "id": "A7F1974D-8084-4EBF-A932-2051938CB985", + "name": "earth-box-remove", + "codepoint": "F1408", + "aliases": [ + "globe-box-remove", + "world-box-remove", + "planet-box-remove" + ], + "tags": [], + "author": "Muhammet Balsoy", + "version": "5.1.45" + }, + { + "id": "1C8EADAE-667F-4048-A393-B05980A7CA11", + "name": "earth-minus", + "codepoint": "F1404", + "aliases": [ + "globe-minus", + "world-minus", + "planet-minus" + ], + "tags": [], + "author": "Muhammet Balsoy", + "version": "5.1.45" + }, + { + "id": "519E0041-FD5F-4DAD-96A4-BED1EDE9A20B", + "name": "earth-off", + "codepoint": "F01E8", + "aliases": [ + "globe-off", + "world-off", + "planet-off" + ], + "tags": [ + "Geographic Information System" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "046CC069-3771-4172-A9E6-F8D18161551F", + "name": "earth-plus", + "codepoint": "F1403", + "aliases": [ + "globe-plus", + "world-plus", + "planet-plus" + ], + "tags": [], + "author": "Muhammet Balsoy", + "version": "5.1.45" + }, + { + "id": "75FA6A35-88AE-4790-9B1A-0D0FD453E472", + "name": "earth-remove", + "codepoint": "F1405", + "aliases": [ + "globe-remove", + "world-remove", + "planet-remove" + ], + "tags": [], + "author": "Muhammet Balsoy", + "version": "5.1.45" + }, + { + "id": "993BB952-DF8E-47E6-AF9A-1FCBF15C6B63", + "name": "egg", + "codepoint": "F0AAF", + "aliases": [], + "tags": [ + "Food \/ Drink", + "Agriculture" + ], + "author": "Michael Richins", + "version": "2.7.94" + }, + { + "id": "5A81CAFD-E110-476D-9F72-70CC1E05D164", + "name": "egg-easter", + "codepoint": "F0AB0", + "aliases": [], + "tags": [ + "Holiday" + ], + "author": "Michael Richins", + "version": "2.7.94" + }, + { + "id": "F7C1B0EE-A1E2-4376-BFB2-C0EEAF251B2C", + "name": "egg-fried", + "codepoint": "F184A", + "aliases": [], + "tags": [ + "Food \/ Drink" + ], + "author": "Michael Irigoyen", + "version": "6.2.95" + }, + { + "id": "AF15DB15-3F15-4D7B-9EBA-EFA8E0735D30", + "name": "egg-off", + "codepoint": "F13F0", + "aliases": [], + "tags": [ + "Food \/ Drink", + "Agriculture" + ], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "1813E684-616A-403C-9D59-B1ED3373B750", + "name": "egg-off-outline", + "codepoint": "F13F1", + "aliases": [], + "tags": [ + "Food \/ Drink", + "Agriculture" + ], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "9C36DCFC-FBBE-4AE2-8E27-952D10E296E3", + "name": "egg-outline", + "codepoint": "F13F2", + "aliases": [], + "tags": [ + "Food \/ Drink", + "Agriculture" + ], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "2E11359F-82B1-469C-9A51-F7B0EFAA3171", + "name": "eiffel-tower", + "codepoint": "F156B", + "aliases": [ + "paris", + "france" + ], + "tags": [ + "Places" + ], + "author": "Nicolas Gres", + "version": "5.5.55" + }, + { + "id": "589595AF-C8FF-451B-A623-2A22D0D2A181", + "name": "eight-track", + "codepoint": "F09EA", + "aliases": [ + "8-track" + ], + "tags": [ + "Music" + ], + "author": "GreenTurtwig", + "version": "2.5.94" + }, + { + "id": "4B57E9DF-354F-460D-9551-65C0DB55D788", + "name": "eject", + "codepoint": "F01EA", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "6E8EC35B-2DF2-4451-9649-E0DBA823E3B7", + "name": "eject-outline", + "codepoint": "F0B91", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.0.39" + }, + { + "id": "70653C90-39FA-4FA7-81D9-F1D792253067", + "name": "electric-switch", + "codepoint": "F0E9F", + "aliases": [], + "tags": [], + "author": "Louistwee", + "version": "3.7.94" + }, + { + "id": "7F2511AE-AD30-41EB-AEEA-5CF18C81CF91", + "name": "electric-switch-closed", + "codepoint": "F10D9", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.3.95" + }, + { + "id": "B17B6901-E163-48A2-8101-E1986C1400C0", + "name": "electron-framework", + "codepoint": "F1024", + "aliases": [], + "tags": [ + "Brand \/ Logo", + "Developer \/ Languages" + ], + "author": "Contributors", + "version": "4.1.95" + }, + { + "id": "0332819B-1686-4375-86E9-0866AE19C2BF", + "name": "elephant", + "codepoint": "F07C6", + "aliases": [], + "tags": [ + "Animal" + ], + "author": "Contributors", + "version": "2.0.46" + }, + { + "id": "6057DE08-41EC-4DE6-9ACC-7FB5AF3D4536", + "name": "elevation-decline", + "codepoint": "F01EB", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "CEFE04E6-CBE8-4DDD-BCF2-F445579B68FE", + "name": "elevation-rise", + "codepoint": "F01EC", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "8A9045D4-D6AC-4660-8C55-D622156A1B8C", + "name": "elevator", + "codepoint": "F01ED", + "aliases": [], + "tags": [ + "Transportation + Other" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "57DB3FF8-34D8-46A7-8D41-1A99EB31AD59", + "name": "elevator-down", + "codepoint": "F12C2", + "aliases": [], + "tags": [ + "Transportation + Other" + ], + "author": "Austin Andrews", + "version": "4.8.95" + }, + { + "id": "559121CE-CD01-4B96-9C0B-66DF7EED8944", + "name": "elevator-passenger", + "codepoint": "F1381", + "aliases": [], + "tags": [ + "Transportation + Other" + ], + "author": "Google", + "version": "4.9.95" + }, + { + "id": "CD32CB18-7B1F-4150-B4F4-322C3326BC48", + "name": "elevator-passenger-off", + "codepoint": "F1979", + "aliases": [], + "tags": [ + "Transportation + Other" + ], + "author": "Michael Irigoyen", + "version": "6.5.95" + }, + { + "id": "2F62C19F-24FE-45C0-A43F-9A148C4B8042", + "name": "elevator-passenger-off-outline", + "codepoint": "F197A", + "aliases": [], + "tags": [ + "Transportation + Other" + ], + "author": "Michael Irigoyen", + "version": "6.5.95" + }, + { + "id": "8343D53B-57D1-46B5-AC0F-295E3F261E74", + "name": "elevator-passenger-outline", + "codepoint": "F197B", + "aliases": [], + "tags": [ + "Transportation + Other" + ], + "author": "Google", + "version": "6.5.95" + }, + { + "id": "8EA26066-2C66-4A38-996B-8F23E288E0B7", + "name": "elevator-up", + "codepoint": "F12C1", + "aliases": [], + "tags": [ + "Transportation + Other" + ], + "author": "Austin Andrews", + "version": "4.8.95" + }, + { + "id": "0CAAACF8-3D1C-4CCA-A3E4-3590CDEEC5D6", + "name": "ellipse", + "codepoint": "F0EA0", + "aliases": [], + "tags": [ + "Shape" + ], + "author": "Michael Richins", + "version": "3.7.94" + }, + { + "id": "EA110B23-B08F-4DAE-8F23-37A298B89A74", + "name": "ellipse-outline", + "codepoint": "F0EA1", + "aliases": [], + "tags": [ + "Shape" + ], + "author": "Michael Richins", + "version": "3.7.94" + }, + { + "id": "14AAE073-8399-4D67-9F7E-8E9424328681", + "name": "email", + "codepoint": "F01EE", + "aliases": [ + "local-post-office", + "mail", + "markunread", + "envelope" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "8031577D-2528-4278-9F7B-93BD5DED18E3", + "name": "email-alert", + "codepoint": "F06CF", + "aliases": [ + "email-warning", + "envelope-alert", + "envelope-warning" + ], + "tags": [ + "Alert \/ Error" + ], + "author": "Austin Andrews", + "version": "1.8.36" + }, + { + "id": "91B50C6E-CEBB-42A7-8D07-8D73F2EB20C1", + "name": "email-alert-outline", + "codepoint": "F0D42", + "aliases": [], + "tags": [ + "Alert \/ Error" + ], + "author": "Michael Irigoyen", + "version": "3.4.93" + }, + { + "id": "6930A4EF-08EB-4649-B2BB-369269DA918F", + "name": "email-box", + "codepoint": "F0D03", + "aliases": [ + "envelope-box" + ], + "tags": [], + "author": "GreenTurtwig", + "version": "3.3.92" + }, + { + "id": "04876E3C-0FEA-43D5-9B5C-9CFFC711B180", + "name": "email-check", + "codepoint": "F0AB1", + "aliases": [ + "email-tick" + ], + "tags": [], + "author": "Andrew Nenakhov", + "version": "2.7.94" + }, + { + "id": "465CA7E2-56E8-4AC8-9A0D-CFF225C3948A", + "name": "email-check-outline", + "codepoint": "F0AB2", + "aliases": [ + "email-tick-outline" + ], + "tags": [], + "author": "Andrew Nenakhov", + "version": "2.7.94" + }, + { + "id": "99DE8F28-37C2-4784-8B62-5E5FD499A664", + "name": "email-edit", + "codepoint": "F0EE3", + "aliases": [], + "tags": [ + "Edit \/ Modify" + ], + "author": "Michael Richins", + "version": "3.8.95" + }, + { + "id": "D2C2975C-678E-40BB-A313-44340B286BBE", + "name": "email-edit-outline", + "codepoint": "F0EE4", + "aliases": [], + "tags": [ + "Edit \/ Modify" + ], + "author": "Michael Richins", + "version": "3.8.95" + }, + { + "id": "3BDD7A0B-DA90-459E-8219-58EDC08661FE", + "name": "email-fast", + "codepoint": "F186F", + "aliases": [ + "envelope-fast", + "email-quick", + "email-sent", + "email-send" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.2.95" + }, + { + "id": "8A3DDFE7-F2D8-47F1-8FFB-2B0C2145CE60", + "name": "email-fast-outline", + "codepoint": "F1870", + "aliases": [ + "email-send-outline", + "email-sent-outline", + "envelope-fast-outline", + "email-quick-outline" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.2.95" + }, + { + "id": "04288F6D-7E3C-4BB6-8FDE-B8951C0D0BDF", + "name": "email-lock", + "codepoint": "F01F1", + "aliases": [ + "envelope-secure", + "email-secure", + "envelope-lock" + ], + "tags": [ + "Lock" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "F5FF3FDF-2BEC-4DCB-A6AB-9FF483126C70", + "name": "email-mark-as-unread", + "codepoint": "F0B92", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.0.39" + }, + { + "id": "FCBACFB7-0431-4F59-BCEB-75D4325DC82C", + "name": "email-minus", + "codepoint": "F0EE5", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.8.95" + }, + { + "id": "F2B06422-BB50-4C83-B1F2-591120544972", + "name": "email-minus-outline", + "codepoint": "F0EE6", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.8.95" + }, + { + "id": "7DCBC245-D966-4018-8E53-272058C73507", + "name": "email-multiple", + "codepoint": "F0EE7", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "3.8.95" + }, + { + "id": "A92BBC88-FCE7-41A7-813E-873B81C7F4E9", + "name": "email-multiple-outline", + "codepoint": "F0EE8", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "3.8.95" + }, + { + "id": "97179388-624E-48F5-9E21-1179BE74829B", + "name": "email-newsletter", + "codepoint": "F0FB1", + "aliases": [], + "tags": [], + "author": "GreenTurtwig", + "version": "4.0.96" + }, + { + "id": "D14EAB52-8253-40C3-AABC-43267D588B01", + "name": "email-off", + "codepoint": "F13E3", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "8495D960-EBB0-487C-A97B-64CF696DCDF4", + "name": "email-off-outline", + "codepoint": "F13E4", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "1E550A45-9D97-4918-9DEC-F536EC5C7A1C", + "name": "email-open", + "codepoint": "F01EF", + "aliases": [ + "drafts", + "envelope-open" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "36BC0D33-4834-41EA-8EA2-90285635005A", + "name": "email-open-multiple", + "codepoint": "F0EE9", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "3.8.95" + }, + { + "id": "A45E544D-6002-4F11-A03C-05221DE5C502", + "name": "email-open-multiple-outline", + "codepoint": "F0EEA", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "3.8.95" + }, + { + "id": "4F7B4311-FC6B-463D-A2A3-760554AF144E", + "name": "email-open-outline", + "codepoint": "F05EF", + "aliases": [ + "envelope-open-outline" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "53CE3621-DBCC-45E8-B105-2BEA7493CCA0", + "name": "email-outline", + "codepoint": "F01F0", + "aliases": [ + "mail-outline", + "envelope-outline" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "910E199F-4A9F-473A-90A9-F69C05BD67F1", + "name": "email-plus", + "codepoint": "F09EB", + "aliases": [ + "email-add", + "envelope-add", + "envelope-plus" + ], + "tags": [], + "author": "GreenTurtwig", + "version": "2.5.94" + }, + { + "id": "156DF0DC-6BDA-4204-BDDB-5FA69911CDDB", + "name": "email-plus-outline", + "codepoint": "F09EC", + "aliases": [ + "email-add-outline", + "envelope-add-outline", + "envelope-plus-outline" + ], + "tags": [], + "author": "GreenTurtwig", + "version": "2.5.94" + }, + { + "id": "68040E6F-6BCD-4505-94D6-55D1E11E82ED", + "name": "email-receive", + "codepoint": "F10DA", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "4.3.95" + }, + { + "id": "2DF250FF-F6DC-4C7D-A5A6-AFEAEBAD45F4", + "name": "email-receive-outline", + "codepoint": "F10DB", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "4.3.95" + }, + { + "id": "AB3FC883-2737-4D9D-AAF4-3695BD6C7882", + "name": "email-remove", + "codepoint": "F1661", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "5EDCFB59-BBEC-407A-B079-5EC7E7686800", + "name": "email-remove-outline", + "codepoint": "F1662", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "9671987F-A6B4-4934-90B1-E2C590CEB1B9", + "name": "email-seal", + "codepoint": "F195B", + "aliases": [ + "email-certified", + "mail-certified", + "mail-seal", + "email-verified", + "mail-verified" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "5E7FB53A-EDC8-4FF3-AA66-708C617ECCD6", + "name": "email-seal-outline", + "codepoint": "F195C", + "aliases": [ + "email-verified-outline", + "email-certified-outline", + "mail-verified-outline", + "mail-certified-outline", + "mail-seal-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "AE2AF6F2-9E5A-4949-901F-0B5F599428C7", + "name": "email-search", + "codepoint": "F0961", + "aliases": [], + "tags": [], + "author": "GreenTurtwig", + "version": "2.4.85" + }, + { + "id": "3BC4A964-0137-4E75-B25E-7F01EDFEE1A8", + "name": "email-search-outline", + "codepoint": "F0962", + "aliases": [], + "tags": [], + "author": "GreenTurtwig", + "version": "2.4.85" + }, + { + "id": "7C66176F-E1BF-4F04-A761-377F67916FDA", + "name": "email-send", + "codepoint": "F10DC", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "4.3.95" + }, + { + "id": "795B1734-652A-4DCC-98B6-433C79C33001", + "name": "email-send-outline", + "codepoint": "F10DD", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "4.3.95" + }, + { + "id": "72B2D41E-42AA-44E7-8F1E-42AC62577F73", + "name": "email-sync", + "codepoint": "F12C7", + "aliases": [ + "email-refresh", + "email-resend" + ], + "tags": [], + "author": "Simran", + "version": "4.8.95" + }, + { + "id": "0FAB1B0E-FEAB-4F12-A7FC-58D48CB9682F", + "name": "email-sync-outline", + "codepoint": "F12C8", + "aliases": [ + "email-refresh-outline", + "email-resend-outline" + ], + "tags": [], + "author": "Simran", + "version": "4.8.95" + }, + { + "id": "80BB05EB-8F75-4205-9952-60B09204A9F6", + "name": "email-variant", + "codepoint": "F05F0", + "aliases": [ + "envelope-variant" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "37F09EC6-7F8F-4DDB-BB18-774880A5C312", + "name": "ember", + "codepoint": "F0B30", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "2.8.94" + }, + { + "id": "7CACE4E9-A4B1-461E-A8E5-8032C22E86A1", + "name": "emby", + "codepoint": "F06B4", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.7.22" + }, + { + "id": "E8F2B8BE-F4EC-4B9C-BB15-001752B29FFD", + "name": "emoticon", + "codepoint": "F0C68", + "aliases": [ + "smiley", + "face", + "emoji" + ], + "tags": [ + "Emoji" + ], + "author": "Google", + "version": "3.2.89" + }, + { + "id": "5DD5C53F-8D3F-43DE-81B9-667A5372A808", + "name": "emoticon-angry", + "codepoint": "F0C69", + "aliases": [ + "smiley-angry", + "face-angry", + "emoji-angry" + ], + "tags": [ + "Emoji" + ], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "EEE3E9C1-D1B5-4D57-AD8B-7F6AD4852EE6", + "name": "emoticon-angry-outline", + "codepoint": "F0C6A", + "aliases": [ + "smiley-angry-outline", + "face-angry-outline", + "emoji-angry-outline" + ], + "tags": [ + "Emoji" + ], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "DD5A65E9-E309-457F-9662-94AAB236A703", + "name": "emoticon-confused", + "codepoint": "F10DE", + "aliases": [ + "face-confused", + "emoji-confused" + ], + "tags": [ + "Emoji" + ], + "author": "Michael Richins", + "version": "4.3.95" + }, + { + "id": "CB195387-50AC-46A3-B1C4-F3DA96E0EE42", + "name": "emoticon-confused-outline", + "codepoint": "F10DF", + "aliases": [ + "face-confused-outline", + "emoji-confused-outline" + ], + "tags": [ + "Emoji" + ], + "author": "Michael Richins", + "version": "4.3.95" + }, + { + "id": "77FAFB8C-4322-4A18-8E92-0CE311F775D3", + "name": "emoticon-cool", + "codepoint": "F0C6B", + "aliases": [ + "smiley-cool", + "face-cool", + "face-sunglasses", + "emoji-cool" + ], + "tags": [ + "Emoji" + ], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "62BB1B4E-67AC-4DFE-B37C-65D0F04F71D0", + "name": "emoticon-cool-outline", + "codepoint": "F01F3", + "aliases": [ + "smiley-cool-outline", + "face-cool-outline", + "face-sunglasses-outline", + "emoji-cool-outline" + ], + "tags": [ + "Emoji" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "39704938-DF4F-4E60-8C20-0569B4B1819C", + "name": "emoticon-cry", + "codepoint": "F0C6C", + "aliases": [ + "smiley-cry", + "face-cry", + "emoji-cry" + ], + "tags": [ + "Emoji" + ], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "BA4B161E-72CB-476B-9894-20A90B28B4A3", + "name": "emoticon-cry-outline", + "codepoint": "F0C6D", + "aliases": [ + "smiley-cry-outline", + "face-cry-outline", + "emoji-cry-outline" + ], + "tags": [ + "Emoji" + ], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "187185AC-5567-44DC-AC70-14B0D89C270C", + "name": "emoticon-dead", + "codepoint": "F0C6E", + "aliases": [ + "smiley-dead", + "face-dead", + "emoji-dead" + ], + "tags": [ + "Emoji" + ], + "author": "Google", + "version": "3.2.89" + }, + { + "id": "47AD308C-C9D8-43DB-8E92-B0FB02B906CF", + "name": "emoticon-dead-outline", + "codepoint": "F069B", + "aliases": [ + "smiley-dead-outline", + "face-dead-outline", + "emoji-dead-outline" + ], + "tags": [ + "Emoji" + ], + "author": "Google", + "version": "1.7.12" + }, + { + "id": "7781F4B7-849F-42A4-82B1-791DBDE91295", + "name": "emoticon-devil", + "codepoint": "F0C6F", + "aliases": [ + "smiley-devil", + "face-devil", + "emoji-devil" + ], + "tags": [ + "Emoji" + ], + "author": "Austin Andrews", + "version": "3.2.89" + }, + { + "id": "916B1319-9E91-48C0-AD65-B21B599D8FCA", + "name": "emoticon-devil-outline", + "codepoint": "F01F4", + "aliases": [ + "smiley-devil-outline", + "face-devil-outline", + "emoji-devil-outline" + ], + "tags": [ + "Emoji" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "86E664CC-39C1-4E36-81BB-AC3BFFE65281", + "name": "emoticon-excited", + "codepoint": "F0C70", + "aliases": [ + "smiley-excited", + "face-excited", + "emoji-excited" + ], + "tags": [ + "Emoji" + ], + "author": "Google", + "version": "3.2.89" + }, + { + "id": "828FF1EE-1B9B-4407-A45B-A071FA938158", + "name": "emoticon-excited-outline", + "codepoint": "F069C", + "aliases": [ + "smiley-excited-outline", + "face-excited-outline", + "emoji-excited-outline" + ], + "tags": [ + "Emoji" + ], + "author": "Google", + "version": "1.7.12" + }, + { + "id": "D5AC778B-0269-4AC5-A2D8-FD5F4D27785F", + "name": "emoticon-frown", + "codepoint": "F0F4C", + "aliases": [ + "face-frown", + "emoji-frown" + ], + "tags": [ + "Emoji" + ], + "author": "Michael Irigoyen", + "version": "3.9.97" + }, + { + "id": "AE6333C6-8334-4F90-9230-6527F3A38C8A", + "name": "emoticon-frown-outline", + "codepoint": "F0F4D", + "aliases": [ + "face-frown-outline", + "emoji-frown-outline" + ], + "tags": [ + "Emoji" + ], + "author": "Google", + "version": "3.9.97" + }, + { + "id": "CCA0187D-B8BA-4AC3-8523-B6B8F05EA5BA", + "name": "emoticon-happy", + "codepoint": "F0C71", + "aliases": [ + "smiley-happy", + "face-happy", + "emoji-happy" + ], + "tags": [ + "Emoji" + ], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "F51C2659-3EE9-471C-A919-190D3C1A9681", + "name": "emoticon-happy-outline", + "codepoint": "F01F5", + "aliases": [ + "smiley-happy-outline", + "face-happy-outline", + "emoji-happy-outline" + ], + "tags": [ + "Emoji" + ], + "author": "Gabriel", + "version": "1.5.54" + }, + { + "id": "01F0C520-7626-4BA6-A678-1EAB14AE2C1B", + "name": "emoticon-kiss", + "codepoint": "F0C72", + "aliases": [ + "smiley-kiss", + "face-kiss", + "emoji-kiss" + ], + "tags": [ + "Emoji" + ], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "806569AC-841D-4B4E-849E-43BACC3D2268", + "name": "emoticon-kiss-outline", + "codepoint": "F0C73", + "aliases": [ + "smiley-kiss-outline", + "face-kiss-outline", + "emoji-kiss-outline" + ], + "tags": [ + "Emoji" + ], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "11CEDEB3-DB1A-45F4-92C9-6AF6FCEE4FC5", + "name": "emoticon-lol", + "codepoint": "F1214", + "aliases": [ + "face-lol", + "emoji-lol" + ], + "tags": [ + "Emoji" + ], + "author": "Michael Richins", + "version": "4.6.95" + }, + { + "id": "2A7BA4B1-C436-4EE6-BF5A-34B150A9A746", + "name": "emoticon-lol-outline", + "codepoint": "F1215", + "aliases": [ + "face-lol-outline", + "emoji-lol-outline" + ], + "tags": [ + "Emoji" + ], + "author": "Michael Richins", + "version": "4.6.95" + }, + { + "id": "922B06B7-9C78-452C-AF29-79A47F0F6931", + "name": "emoticon-neutral", + "codepoint": "F0C74", + "aliases": [ + "smiley-neutral", + "face-neutral", + "emoji-neutral" + ], + "tags": [ + "Emoji" + ], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "17F30B32-37E2-41BB-876C-70E568D04623", + "name": "emoticon-neutral-outline", + "codepoint": "F01F6", + "aliases": [ + "smiley-neutral-outline", + "face-neutral-outline", + "emoji-neutral-outline" + ], + "tags": [ + "Emoji" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "69AAECAA-0B17-4C53-8345-4F172B7FEF50", + "name": "emoticon-outline", + "codepoint": "F01F2", + "aliases": [ + "insert-emoticon", + "mood", + "sentiment-very-satisfied", + "tag-faces", + "smiley-outline", + "face-outline", + "emoji-outline" + ], + "tags": [ + "Emoji" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "968319FB-0E94-4F04-A6D8-9E71DF200E1F", + "name": "emoticon-poop", + "codepoint": "F01F7", + "aliases": [ + "smiley-poop", + "face-poop", + "emoji-poop" + ], + "tags": [ + "Emoji" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "1E402C80-69DB-432F-BB0F-C05ACB6A7839", + "name": "emoticon-poop-outline", + "codepoint": "F0C75", + "aliases": [ + "face-poop-outline", + "emoji-poop-outline" + ], + "tags": [ + "Emoji" + ], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "CDA3C920-C286-4000-A7FC-C530CBC62CF7", + "name": "emoticon-sad", + "codepoint": "F0C76", + "aliases": [ + "smiley-sad", + "face-sad", + "emoji-sad" + ], + "tags": [ + "Emoji" + ], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "6D8A3A11-7A90-424C-82A6-93C455379743", + "name": "emoticon-sad-outline", + "codepoint": "F01F8", + "aliases": [ + "smiley-sad-outline", + "face-sad-outline", + "emoji-sad-outline" + ], + "tags": [ + "Emoji" + ], + "author": "Gabriel", + "version": "1.5.54" + }, + { + "id": "523F5AB1-3598-40F1-AAB5-6DF361FF6970", + "name": "emoticon-sick", + "codepoint": "F157C", + "aliases": [ + "face-sick", + "fever", + "emoji-sick" + ], + "tags": [ + "Emoji", + "Medical \/ Hospital" + ], + "author": "Google", + "version": "5.5.55" + }, + { + "id": "CBB4F1C3-3479-4F94-9F15-3D844889609A", + "name": "emoticon-sick-outline", + "codepoint": "F157D", + "aliases": [ + "face-sick-outline", + "fever-outline", + "emoji-sick-outline" + ], + "tags": [ + "Emoji", + "Medical \/ Hospital" + ], + "author": "Google", + "version": "5.5.55" + }, + { + "id": "57288378-59EE-4705-ACD5-3B424ACA70C1", + "name": "emoticon-tongue", + "codepoint": "F01F9", + "aliases": [ + "smiley-tongue", + "face-tongue", + "emoji-tongue" + ], + "tags": [ + "Emoji" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "A08556AE-A0AD-4C7E-9A14-0CD05EE66E03", + "name": "emoticon-tongue-outline", + "codepoint": "F0C77", + "aliases": [ + "smiley-tongue-outline", + "face-tongue-outline", + "emoji-tongue-outline" + ], + "tags": [ + "Emoji" + ], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "652D2244-1764-4B42-B04D-157DDD9DC464", + "name": "emoticon-wink", + "codepoint": "F0C78", + "aliases": [ + "smiley-wink", + "face-wink", + "emoji-wink" + ], + "tags": [ + "Emoji" + ], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "C8E56EC6-52DA-4BC7-81C0-1E5B14509086", + "name": "emoticon-wink-outline", + "codepoint": "F0C79", + "aliases": [ + "smiley-wink-outline", + "face-wink-outline", + "emoji-wink-outline" + ], + "tags": [ + "Emoji" + ], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "290CA835-F009-4630-87D3-D4515E1F5527", + "name": "engine", + "codepoint": "F01FA", + "aliases": [ + "motor" + ], + "tags": [ + "Automotive" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "114C29E0-B66E-49EF-8D45-77FF8EED43B1", + "name": "engine-off", + "codepoint": "F0A46", + "aliases": [ + "motor-off" + ], + "tags": [ + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "2.6.95" + }, + { + "id": "81317A61-047B-47D4-A154-CEA3C6B9F61C", + "name": "engine-off-outline", + "codepoint": "F0A47", + "aliases": [ + "motor-off-outline" + ], + "tags": [ + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "2.6.95" + }, + { + "id": "75A5F242-D136-49B9-9DFF-25F0631743A7", + "name": "engine-outline", + "codepoint": "F01FB", + "aliases": [ + "motor-outline" + ], + "tags": [ + "Automotive" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "C0C7DFD3-F590-4965-A38F-167F48469E6F", + "name": "epsilon", + "codepoint": "F10E0", + "aliases": [], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Sascha Wohlgemuth", + "version": "4.3.95" + }, + { + "id": "119DD58E-769B-47C2-9AB8-1671DEC4FE4A", + "name": "equal", + "codepoint": "F01FC", + "aliases": [], + "tags": [ + "Math" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "F98CD2ED-FD62-414E-9116-94BA99713526", + "name": "equal-box", + "codepoint": "F01FD", + "aliases": [], + "tags": [ + "Math" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "4F6A532E-58ED-4CB5-9BBB-9E77C128D536", + "name": "equalizer", + "codepoint": "F0EA2", + "aliases": [], + "tags": [ + "Audio" + ], + "author": "Google", + "version": "3.7.94" + }, + { + "id": "D3AB11FD-F0D5-4228-A6C7-69AC34649A53", + "name": "equalizer-outline", + "codepoint": "F0EA3", + "aliases": [], + "tags": [ + "Audio" + ], + "author": "Michael Irigoyen", + "version": "3.7.94" + }, + { + "id": "758CA292-BBF5-4C08-BCBD-88B7A84C8BC6", + "name": "eraser", + "codepoint": "F01FE", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "8E45C70B-EE1A-48AE-B97F-204F1958E788", + "name": "eraser-variant", + "codepoint": "F0642", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.6.50" + }, + { + "id": "2DB352CF-8F2F-43FD-BCA0-675F7C9D298C", + "name": "escalator", + "codepoint": "F01FF", + "aliases": [], + "tags": [ + "Transportation + Other" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "B4972D96-B8A1-4964-8A58-FAEA2D0C5FF9", + "name": "escalator-box", + "codepoint": "F1399", + "aliases": [], + "tags": [], + "author": "Moma Design Studio", + "version": "5.0.45" + }, + { + "id": "F29A47AC-C3B6-4568-8ADA-94C5F92F0DC0", + "name": "escalator-down", + "codepoint": "F12C0", + "aliases": [], + "tags": [ + "Transportation + Other" + ], + "author": "Austin Andrews", + "version": "4.8.95" + }, + { + "id": "4BA51088-9403-4E34-A829-1F31D8DE2646", + "name": "escalator-up", + "codepoint": "F12BF", + "aliases": [], + "tags": [ + "Transportation + Other" + ], + "author": "Austin Andrews", + "version": "4.8.95" + }, + { + "id": "9D305B93-7722-4784-A9D3-8F64824A67AB", + "name": "eslint", + "codepoint": "F0C7A", + "aliases": [], + "tags": [ + "Developer \/ Languages", + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "C3E4BC72-74F1-450D-8B6F-FCF0CB60AA27", + "name": "et", + "codepoint": "F0AB3", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "2.7.94" + }, + { + "id": "D59C885E-233F-4472-AB8C-00C41F96134E", + "name": "ethereum", + "codepoint": "F086A", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "2.1.99" + }, + { + "id": "3AB3C243-0FD3-4903-A6EA-B0B29ABFAD6C", + "name": "ethernet", + "codepoint": "F0200", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "FC900F32-A228-4E42-9E09-EA7CCDEC08F2", + "name": "ethernet-cable", + "codepoint": "F0201", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "79E1B678-8458-4750-9EE0-C5CE7E57E9F1", + "name": "ethernet-cable-off", + "codepoint": "F0202", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "7C687673-B2F0-43B6-A5E3-E25B9FFA0F8E", + "name": "ev-plug-ccs1", + "codepoint": "F1519", + "aliases": [ + "ev-plug-ccs-combo-1", + "ev-charger-ccs1" + ], + "tags": [ + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "5.4.55" + }, + { + "id": "4FE92E92-170B-495E-A16E-0897AD787E02", + "name": "ev-plug-ccs2", + "codepoint": "F151A", + "aliases": [ + "ev-plug-ccs-combo-2", + "ev-charger-ccs2" + ], + "tags": [ + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "5.4.55" + }, + { + "id": "C2C4C1DC-0FB1-4A1A-AA85-8FD1D8DF4532", + "name": "ev-plug-chademo", + "codepoint": "F151B", + "aliases": [ + "ev-charger-chademo" + ], + "tags": [ + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "5.4.55" + }, + { + "id": "04B5C8D6-9732-4D4D-AC1B-0C9ED9E3B8DF", + "name": "ev-plug-tesla", + "codepoint": "F151C", + "aliases": [ + "ev-charger-tesla" + ], + "tags": [ + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "5.4.55" + }, + { + "id": "781567F7-B41B-4CB2-BDD8-DDF3AB75CC57", + "name": "ev-plug-type1", + "codepoint": "F151D", + "aliases": [ + "ev-plug-j1772", + "ev-charger-type1" + ], + "tags": [ + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "5.4.55" + }, + { + "id": "F5687378-A23D-4D4C-98A2-55E95642FD06", + "name": "ev-plug-type2", + "codepoint": "F151E", + "aliases": [ + "ev-plug-mennekes", + "ev-charger-type2" + ], + "tags": [ + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "5.4.55" + }, + { + "id": "7C859DE1-16F6-4EF2-9097-A1D0C14CC3A2", + "name": "ev-station", + "codepoint": "F05F1", + "aliases": [ + "charging-station", + "ev-charger", + "wall-charger", + "wallbox", + "electric-vehicle-charger", + "evse", + "electric-charger" + ], + "tags": [ + "Places", + "Automotive" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "193F4AB4-12B2-4E3C-965F-284967A7F736", + "name": "evernote", + "codepoint": "F0204", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "0BD56A12-3F3B-4A3E-96E4-868B5414FD06", + "name": "excavator", + "codepoint": "F1025", + "aliases": [], + "tags": [ + "Hardware \/ Tools" + ], + "author": "Michael Irigoyen", + "version": "4.1.95" + }, + { + "id": "06E68A9B-2ED4-4697-82A2-02F1FA342D55", + "name": "exclamation", + "codepoint": "F0205", + "aliases": [ + "factorial" + ], + "tags": [ + "Math" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "2DEA5CA1-8412-4DA4-95C4-7E1AA2C27404", + "name": "exclamation-thick", + "codepoint": "F1238", + "aliases": [ + "exclamation-bold" + ], + "tags": [], + "author": "frankgrinaert", + "version": "4.6.95" + }, + { + "id": "9F68722F-B500-48AD-BE3A-EB7591496084", + "name": "exit-run", + "codepoint": "F0A48", + "aliases": [ + "emergency-exit" + ], + "tags": [ + "Home Automation" + ], + "author": "Simran", + "version": "2.6.95" + }, + { + "id": "DD2BE6C6-A15C-44D4-807A-C29DE965CF22", + "name": "exit-to-app", + "codepoint": "F0206", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "85080AB7-D860-4D74-86D8-1A2BFF0C0514", + "name": "expand-all", + "codepoint": "F0AB4", + "aliases": [ + "animation-plus" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "2.7.94" + }, + { + "id": "934C9329-AC58-499E-BE89-A5E43FA71C6F", + "name": "expand-all-outline", + "codepoint": "F0AB5", + "aliases": [ + "animation-plus-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "2.7.94" + }, + { + "id": "6FFC7116-2E5B-40A8-A612-90706DC5EECF", + "name": "expansion-card", + "codepoint": "F08AE", + "aliases": [ + "gpu", + "graphics-processing-unit", + "nic", + "network-interface-card" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "GreenTurtwig", + "version": "2.2.43" + }, + { + "id": "A644DCA0-BDC5-480E-AA15-EFD1B1D4BDEB", + "name": "expansion-card-variant", + "codepoint": "F0FB2", + "aliases": [ + "graphics-processing-unit", + "gpu", + "network-interface-card", + "nice" + ], + "tags": [], + "author": "Michael Richins", + "version": "4.0.96" + }, + { + "id": "E26684D6-5292-4B09-98A9-C6C416FD236D", + "name": "exponent", + "codepoint": "F0963", + "aliases": [ + "power" + ], + "tags": [ + "Math" + ], + "author": "Nick", + "version": "2.4.85" + }, + { + "id": "F061DE5C-F495-4EDF-BD16-DAD6B07605BC", + "name": "exponent-box", + "codepoint": "F0964", + "aliases": [ + "power-box" + ], + "tags": [ + "Math" + ], + "author": "Nick", + "version": "2.4.85" + }, + { + "id": "670C2CEA-D9B1-4126-89F4-C881D032F3AD", + "name": "export", + "codepoint": "F0207", + "aliases": [ + "output" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "ECCA4152-AD73-4986-ADC4-9FACDC925868", + "name": "export-variant", + "codepoint": "F0B93", + "aliases": [ + "ios-share" + ], + "tags": [], + "author": "Google", + "version": "3.0.39" + }, + { + "id": "3C2B7DF3-97FE-4EC4-B6A9-69A75FB26B67", + "name": "eye", + "codepoint": "F0208", + "aliases": [ + "show", + "visibility", + "remove-red-eye" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "B3FA5237-3FE4-4822-87EE-0001DD784EE7", + "name": "eye-arrow-left", + "codepoint": "F18FD", + "aliases": [ + "view-arrow-left" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "D979FDDF-45AE-4F37-AC6C-A92B2860BC02", + "name": "eye-arrow-left-outline", + "codepoint": "F18FE", + "aliases": [ + "view-arrow-left-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "FFAF8600-64E9-4DEF-B689-D14B95B608CA", + "name": "eye-arrow-right", + "codepoint": "F18FF", + "aliases": [ + "view-arrow-right" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "A682E4C4-6048-4BF7-BBCC-57167CE33687", + "name": "eye-arrow-right-outline", + "codepoint": "F1900", + "aliases": [ + "view-arrow-right-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "7534EBC5-1A5B-4837-8C13-88CFA5FB4D49", + "name": "eye-check", + "codepoint": "F0D04", + "aliases": [ + "eye-tick" + ], + "tags": [], + "author": "Austin Andrews", + "version": "3.3.92" + }, + { + "id": "A2829948-6FFA-48BB-B387-959A7E3658DE", + "name": "eye-check-outline", + "codepoint": "F0D05", + "aliases": [ + "eye-tick-outline" + ], + "tags": [], + "author": "Austin Andrews", + "version": "3.3.92" + }, + { + "id": "9E70DE8C-C973-4A18-A68D-DB6670F5F38A", + "name": "eye-circle", + "codepoint": "F0B94", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "3.0.39" + }, + { + "id": "4F1A805C-7120-44A2-9A3F-8285411EFE87", + "name": "eye-circle-outline", + "codepoint": "F0B95", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "3.0.39" + }, + { + "id": "67AEA391-FE01-41D0-B594-36433AAB099E", + "name": "eye-minus", + "codepoint": "F1026", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.1.95" + }, + { + "id": "F36594D9-9F22-4C8B-BB09-6B89CF203881", + "name": "eye-minus-outline", + "codepoint": "F1027", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.1.95" + }, + { + "id": "4D1385CF-1389-43D3-BD88-A83018434FB6", + "name": "eye-off", + "codepoint": "F0209", + "aliases": [ + "hide", + "visibility-off" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "D88D00BE-0B70-40F5-AFD0-51C65DE8D674", + "name": "eye-off-outline", + "codepoint": "F06D1", + "aliases": [ + "hide-outline", + "visibility-off-outline" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.8.36" + }, + { + "id": "F2AA59FA-23F6-4FE8-A52A-AEC674A9E864", + "name": "eye-outline", + "codepoint": "F06D0", + "aliases": [ + "show-outline", + "visibility-outline" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.8.36" + }, + { + "id": "644FD0C7-1B46-48D8-A410-FDA22E63BFCF", + "name": "eye-plus", + "codepoint": "F086B", + "aliases": [ + "eye-add" + ], + "tags": [], + "author": "GreenTurtwig", + "version": "2.1.99" + }, + { + "id": "C82BEE88-7AAC-4F8D-9A8A-4B0C7CCDF216", + "name": "eye-plus-outline", + "codepoint": "F086C", + "aliases": [ + "eye-add-outline" + ], + "tags": [], + "author": "GreenTurtwig", + "version": "2.1.99" + }, + { + "id": "2CC60524-7C0C-4AE3-A996-E24066985409", + "name": "eye-refresh", + "codepoint": "F197C", + "aliases": [ + "view-refresh" + ], + "tags": [], + "author": "nlsve", + "version": "6.5.95" + }, + { + "id": "B9A630A0-AF26-4EBC-A822-DFFE9AA01878", + "name": "eye-refresh-outline", + "codepoint": "F197D", + "aliases": [ + "view-refresh-outline" + ], + "tags": [], + "author": "nlsve", + "version": "6.5.95" + }, + { + "id": "4CAD2E1D-F56B-40AA-B008-46DEFF9C9540", + "name": "eye-remove", + "codepoint": "F15E3", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.6.55" + }, + { + "id": "A1F300D2-BA71-410B-BB70-F18FC666CF35", + "name": "eye-remove-outline", + "codepoint": "F15E4", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.6.55" + }, + { + "id": "1155E86D-5CA5-4CC0-B089-23DFFC1A3DDD", + "name": "eye-settings", + "codepoint": "F086D", + "aliases": [], + "tags": [ + "Settings" + ], + "author": "Michael Richins", + "version": "2.1.99" + }, + { + "id": "45112AC7-F34D-40E8-8C37-D8660B7017E9", + "name": "eye-settings-outline", + "codepoint": "F086E", + "aliases": [], + "tags": [ + "Settings" + ], + "author": "Michael Richins", + "version": "2.1.99" + }, + { + "id": "89350468-16D8-4F39-AA78-C3E00EE8FB2C", + "name": "eyedropper", + "codepoint": "F020A", + "aliases": [ + "pipette" + ], + "tags": [ + "Color", + "Drawing \/ Art", + "Science" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "384E765A-8184-4E9C-8300-FB4928CADA31", + "name": "eyedropper-minus", + "codepoint": "F13DD", + "aliases": [], + "tags": [ + "Science" + ], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "F4A65E44-6B1F-4E9C-954A-B05FAAB3EE6D", + "name": "eyedropper-off", + "codepoint": "F13DF", + "aliases": [], + "tags": [ + "Science" + ], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "FF767930-F19C-4935-8ABB-566DD8B8CF0D", + "name": "eyedropper-plus", + "codepoint": "F13DC", + "aliases": [], + "tags": [ + "Science" + ], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "1224B69E-00A5-422C-A358-61201346175F", + "name": "eyedropper-remove", + "codepoint": "F13DE", + "aliases": [], + "tags": [ + "Science" + ], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "24A1E7A8-D8A4-4216-B467-72C144972358", + "name": "eyedropper-variant", + "codepoint": "F020B", + "aliases": [ + "colorize", + "colourise", + "pipette-variant" + ], + "tags": [ + "Color", + "Science" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "3E0B74E0-1F0F-4820-A02F-B370CD56E463", + "name": "face-agent", + "codepoint": "F0D70", + "aliases": [ + "customer-service", + "support", + "emoji-agent", + "emoticon-agent" + ], + "tags": [], + "author": "Mark Joseph Monserrat", + "version": "3.4.93" + }, + { + "id": "D41E7F40-FF48-422F-A64B-4908C6C10F00", + "name": "face-man", + "codepoint": "F0643", + "aliases": [ + "face-male", + "emoji-man", + "emoticon-man" + ], + "tags": [ + "People \/ Family" + ], + "author": "Google", + "version": "1.6.50" + }, + { + "id": "CFDA13BC-C61A-4FE0-8094-7B51E8EB3F82", + "name": "face-man-outline", + "codepoint": "F0B96", + "aliases": [ + "face-male-outline", + "emoji-man-outline", + "emoticon-man-outline" + ], + "tags": [ + "People \/ Family" + ], + "author": "Google", + "version": "3.0.39" + }, + { + "id": "97E9CDDB-45B3-4592-8E1F-0DB66E16E1A3", + "name": "face-man-profile", + "codepoint": "F0644", + "aliases": [ + "face-male-profile", + "emoji-man-profile", + "emoticon-man-profile" + ], + "tags": [ + "People \/ Family" + ], + "author": "Google", + "version": "1.6.50" + }, + { + "id": "4680BCD4-CD85-45A0-9F1C-FB367E768664", + "name": "face-man-shimmer", + "codepoint": "F15CC", + "aliases": [ + "face-retouching-natural", + "face-male-shimmer", + "emoji-man-shimmer", + "emoticon-man-shimmer" + ], + "tags": [ + "Photography", + "Account \/ User", + "Health \/ Beauty", + "People \/ Family" + ], + "author": "Google", + "version": "5.6.55" + }, + { + "id": "CC7A66A4-2118-4635-B227-C184D8903867", + "name": "face-man-shimmer-outline", + "codepoint": "F15CD", + "aliases": [ + "face-retouching-natural-outline", + "face-male-shimmer-outline", + "emoji-man-shimmer-outline", + "emoticon-man-shimmer-outline" + ], + "tags": [ + "People \/ Family", + "Photography", + "Health \/ Beauty", + "Account \/ User" + ], + "author": "Simran", + "version": "5.6.55" + }, + { + "id": "8E3EC802-4BC1-44CA-83AB-9A43E55E238C", + "name": "face-mask", + "codepoint": "F1586", + "aliases": [], + "tags": [ + "Medical \/ Hospital", + "Clothing" + ], + "author": "Michael Irigoyen", + "version": "5.5.55" + }, + { + "id": "0143A0CC-E3FA-485F-B3CA-6B61EE86F066", + "name": "face-mask-outline", + "codepoint": "F1587", + "aliases": [], + "tags": [ + "Medical \/ Hospital", + "Clothing" + ], + "author": "Michael Irigoyen", + "version": "5.5.55" + }, + { + "id": "FDC4CFE0-5CA9-4F8E-A126-EC98BF900228", + "name": "face-recognition", + "codepoint": "F0C7B", + "aliases": [ + "facial-recognition", + "scan" + ], + "tags": [ + "Photography" + ], + "author": "Michael Richins", + "version": "3.2.89" + }, + { + "id": "C591017E-E3D0-48CA-A517-86B21DE853A0", + "name": "face-woman", + "codepoint": "F1077", + "aliases": [ + "face-female", + "emoji-woman", + "emoticon-woman" + ], + "tags": [ + "People \/ Family" + ], + "author": "Michael Irigoyen", + "version": "4.2.95" + }, + { + "id": "F8B0D936-DFD2-469C-B671-599D3B277B51", + "name": "face-woman-outline", + "codepoint": "F1078", + "aliases": [ + "face-female-outline", + "emoji-woman-outline", + "emoticon-woman-outline" + ], + "tags": [ + "People \/ Family" + ], + "author": "Michael Irigoyen", + "version": "4.2.95" + }, + { + "id": "144C6FB3-DBAC-4CA7-B07C-51265D8EE619", + "name": "face-woman-profile", + "codepoint": "F1076", + "aliases": [ + "face-female-profile", + "emoji-woman-profile", + "emoticon-woman-profile" + ], + "tags": [ + "People \/ Family" + ], + "author": "Michael Irigoyen", + "version": "4.2.95" + }, + { + "id": "97F4C885-AB98-45C3-85C7-E5DA25ECD271", + "name": "face-woman-shimmer", + "codepoint": "F15CE", + "aliases": [ + "face-retouching-natural-woman", + "face-female-shimmer", + "emoji-woman-shimmer", + "emoticon-woman-shimmer" + ], + "tags": [ + "People \/ Family", + "Photography", + "Health \/ Beauty", + "Account \/ User" + ], + "author": "Simran", + "version": "5.6.55" + }, + { + "id": "43851D4C-D310-45C3-9A86-6BF5DFD51055", + "name": "face-woman-shimmer-outline", + "codepoint": "F15CF", + "aliases": [ + "face-retouching-natural-woman-outline", + "face-female-shimmer-outline", + "emoji-woman-shimmer-outline", + "emoticon-woman-shimmer-outline" + ], + "tags": [ + "People \/ Family", + "Photography", + "Health \/ Beauty", + "Account \/ User" + ], + "author": "Simran", + "version": "5.6.55" + }, + { + "id": "95CC9E46-A553-42B3-B44E-2E88DB13C1E1", + "name": "facebook", + "codepoint": "F020C", + "aliases": [], + "tags": [ + "Brand \/ Logo", + "Social Media" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "62F96579-80AE-4827-9C18-1C1FD239DE49", + "name": "facebook-gaming", + "codepoint": "F07DD", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "2.0.46" + }, + { + "id": "1989DA16-DAA9-4C95-A61F-BA512FE5592D", + "name": "facebook-messenger", + "codepoint": "F020E", + "aliases": [], + "tags": [ + "Brand \/ Logo", + "Social Media" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "767ACA6B-1ECD-4D4E-AE5D-4E1EB3C87D72", + "name": "facebook-workplace", + "codepoint": "F0B31", + "aliases": [], + "tags": [ + "Brand \/ Logo", + "Social Media" + ], + "author": "Contributors", + "version": "2.8.94" + }, + { + "id": "B74F1DE6-5DEC-4866-AEED-DE85FE09C52F", + "name": "factory", + "codepoint": "F020F", + "aliases": [ + "industrial" + ], + "tags": [ + "Places" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "AB0F3BD7-1D6E-4ED6-8CC4-28E5ECCEF017", + "name": "family-tree", + "codepoint": "F160E", + "aliases": [], + "tags": [ + "People \/ Family" + ], + "author": "Simran", + "version": "5.6.55" + }, + { + "id": "2606F8A3-AFD7-41EB-BD2D-C3546FEADB2F", + "name": "fan", + "codepoint": "F0210", + "aliases": [], + "tags": [ + "Home Automation", + "Automotive" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "94B156B3-7C70-4C0A-B1A8-99BEEA9C6357", + "name": "fan-alert", + "codepoint": "F146C", + "aliases": [], + "tags": [ + "Home Automation", + "Alert \/ Error" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "E695511A-9F45-44DC-9F98-9E946CC02ECC", + "name": "fan-auto", + "codepoint": "F171D", + "aliases": [], + "tags": [], + "author": "Hans B\u00f6hm", + "version": "5.9.55" + }, + { + "id": "33DAA830-9E16-4AF0-A1B8-F44EA4EF9787", + "name": "fan-chevron-down", + "codepoint": "F146D", + "aliases": [ + "fan-speed-down" + ], + "tags": [ + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "5.2.45" + }, + { + "id": "1FC6584B-6B87-40C8-BA9D-C18E221A247D", + "name": "fan-chevron-up", + "codepoint": "F146E", + "aliases": [ + "fan-speed-up" + ], + "tags": [ + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "5.2.45" + }, + { + "id": "FB53FDB5-A8D0-42F6-882F-63C1A683577E", + "name": "fan-minus", + "codepoint": "F1470", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "BB761A30-6F3C-484D-A0C9-501972F544AB", + "name": "fan-off", + "codepoint": "F081D", + "aliases": [], + "tags": [ + "Home Automation", + "Automotive" + ], + "author": "GreenTurtwig", + "version": "2.1.19" + }, + { + "id": "DD3CD93C-5877-4234-9944-61C10457FDCE", + "name": "fan-plus", + "codepoint": "F146F", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "3E4A1DFD-92C2-4CA0-BD74-A98496721825", + "name": "fan-remove", + "codepoint": "F1471", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "F01D5822-D36A-4A41-9544-3B1E8702582F", + "name": "fan-speed-1", + "codepoint": "F1472", + "aliases": [ + "fan-speed-low" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "AFC8D4DB-4196-41E6-8EBC-A6509F96EA71", + "name": "fan-speed-2", + "codepoint": "F1473", + "aliases": [ + "fan-speed-medium" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "0EA7825B-6236-40D5-A8D9-858B2B4DB595", + "name": "fan-speed-3", + "codepoint": "F1474", + "aliases": [ + "fan-speed-high" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "98B9D071-70A9-422B-BCC1-55DC4C2E0744", + "name": "fast-forward", + "codepoint": "F0211", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "960E88C3-D86B-4A9A-8581-799816D12194", + "name": "fast-forward-10", + "codepoint": "F0D71", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "3.4.93" + }, + { + "id": "5C0FCEDF-44B3-4F3A-8D6A-6AB54EBC55F6", + "name": "fast-forward-15", + "codepoint": "F193A", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "23895783-905C-45DE-BF43-D58214199B75", + "name": "fast-forward-30", + "codepoint": "F0D06", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "3.3.92" + }, + { + "id": "C57CDDE7-5F5E-44B4-B1E2-E5FEFBB17A85", + "name": "fast-forward-5", + "codepoint": "F11F8", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "4.6.95" + }, + { + "id": "CF6C15FF-1B2F-4E4B-AE45-C1487815CA07", + "name": "fast-forward-60", + "codepoint": "F160B", + "aliases": [], + "tags": [], + "author": "Terren", + "version": "5.6.55" + }, + { + "id": "05435BA8-4BB4-4581-A2BA-D2D7679B831F", + "name": "fast-forward-outline", + "codepoint": "F06D2", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.8.36" + }, + { + "id": "2C398569-5DBF-4405-AF73-6F5CA629AEE1", + "name": "fax", + "codepoint": "F0212", + "aliases": [], + "tags": [ + "Printer", + "Cellphone \/ Phone" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "A0C975EA-A25D-4882-96DE-39CB72DAC2CA", + "name": "feather", + "codepoint": "F06D3", + "aliases": [ + "quill" + ], + "tags": [ + "Nature" + ], + "author": "Simran", + "version": "1.8.36" + }, + { + "id": "FC8210F4-FE5E-4A83-86DE-DA1B19739118", + "name": "feature-search", + "codepoint": "F0A49", + "aliases": [ + "box", + "box-search" + ], + "tags": [], + "author": "Simran", + "version": "2.6.95" + }, + { + "id": "AE8C42B6-43EE-433C-83A3-83CE7464240E", + "name": "feature-search-outline", + "codepoint": "F0A4A", + "aliases": [ + "box", + "box-outline", + "box-search-outline" + ], + "tags": [], + "author": "Simran", + "version": "2.6.95" + }, + { + "id": "15F2366C-5930-4473-B298-A5B952F07D59", + "name": "fedora", + "codepoint": "F08DB", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "2.3.50" + }, + { + "id": "CAFE2FF6-D1D5-4411-9AA1-33C5076F0E4E", + "name": "fence", + "codepoint": "F179A", + "aliases": [ + "railway", + "train-track" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "9B54CB49-9186-4EB1-80D2-A92E616B9603", + "name": "fence-electric", + "codepoint": "F17F6", + "aliases": [ + "railway-electric", + "train-track-electric" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "325210DA-E889-4CBD-B0A7-8A32D706322B", + "name": "fencing", + "codepoint": "F14C1", + "aliases": [ + "sword-fight" + ], + "tags": [ + "Sport" + ], + "author": "Google", + "version": "5.3.45" + }, + { + "id": "AD285056-9A97-4C52-8D7D-06D4D1DA4213", + "name": "ferris-wheel", + "codepoint": "F0EA4", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.7.94" + }, + { + "id": "F138AC6A-406B-4EB0-BB85-0FDB5415B6F8", + "name": "ferry", + "codepoint": "F0213", + "aliases": [ + "cargo-ship", + "boat", + "ship", + "directions-boat", + "directions-ferry" + ], + "tags": [ + "Transportation + Water", + "Navigation" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "BFF59001-B52D-47E6-A217-C9095F81C3B8", + "name": "file", + "codepoint": "F0214", + "aliases": [ + "insert-drive-file", + "draft", + "paper" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "94A8A0E0-B69E-4099-A32E-34B83449AFBC", + "name": "file-account", + "codepoint": "F073B", + "aliases": [ + "file-user", + "resume" + ], + "tags": [ + "Account \/ User", + "Files \/ Folders" + ], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "E0043E71-ED74-419B-82A9-10D678DF74B3", + "name": "file-account-outline", + "codepoint": "F1028", + "aliases": [], + "tags": [ + "Files \/ Folders", + "Account \/ User" + ], + "author": "Terren", + "version": "4.1.95" + }, + { + "id": "33050FDD-7F04-44B1-AF59-BFED56FE34CF", + "name": "file-alert", + "codepoint": "F0A4B", + "aliases": [ + "file-warning" + ], + "tags": [ + "Files \/ Folders", + "Alert \/ Error" + ], + "author": "Michael Irigoyen", + "version": "2.6.95" + }, + { + "id": "0FF64B42-C9F6-4A0A-B09D-38D2AED8C81C", + "name": "file-alert-outline", + "codepoint": "F0A4C", + "aliases": [ + "file-warning-outline" + ], + "tags": [ + "Files \/ Folders", + "Alert \/ Error" + ], + "author": "Michael Irigoyen", + "version": "2.6.95" + }, + { + "id": "1B650467-2000-4A2D-B16D-9BD8A8F32B85", + "name": "file-cabinet", + "codepoint": "F0AB6", + "aliases": [ + "filing-cabinet" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Irigoyen", + "version": "2.7.94" + }, + { + "id": "AA9999FD-3434-42B9-B589-606EF1D563EA", + "name": "file-cad", + "codepoint": "F0EEB", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "GreenTurtwig", + "version": "3.8.95" + }, + { + "id": "7FF119BB-AE68-49A0-8104-0C4CA4FE829F", + "name": "file-cad-box", + "codepoint": "F0EEC", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "GreenTurtwig", + "version": "3.8.95" + }, + { + "id": "1C9C326F-B0B6-41A9-825D-83A458689345", + "name": "file-cancel", + "codepoint": "F0DC6", + "aliases": [ + "ban", + "forbid" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Irigoyen", + "version": "3.5.94" + }, + { + "id": "1DCEA17F-A76F-412E-8C25-52C9F3D63B48", + "name": "file-cancel-outline", + "codepoint": "F0DC7", + "aliases": [ + "ban", + "forbid" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Irigoyen", + "version": "3.5.94" + }, + { + "id": "5BEF006A-53C0-4401-87DB-F21642667712", + "name": "file-certificate", + "codepoint": "F1186", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Richins", + "version": "4.4.95" + }, + { + "id": "06595A20-8863-4B8C-B74D-C1DA1D32D88F", + "name": "file-certificate-outline", + "codepoint": "F1187", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Richins", + "version": "4.4.95" + }, + { + "id": "303BB890-634F-405C-B77C-4AC831BCAEC4", + "name": "file-chart", + "codepoint": "F0215", + "aliases": [ + "file-report", + "file-graph" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "B7778AA5-6982-4820-A733-996314D07B82", + "name": "file-chart-check", + "codepoint": "F19C6", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Simran", + "version": "6.6.95" + }, + { + "id": "8051BED5-0582-4A3A-91F3-E29484840427", + "name": "file-chart-check-outline", + "codepoint": "F19C7", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Simran", + "version": "6.6.95" + }, + { + "id": "E8F550E7-DE55-47CE-B548-4B6987B9FDE7", + "name": "file-chart-outline", + "codepoint": "F1029", + "aliases": [ + "file-graph-outline", + "file-report-outline" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Terren", + "version": "4.1.95" + }, + { + "id": "9E66E6CF-74AD-4DB5-953B-DC135B4AD44C", + "name": "file-check", + "codepoint": "F0216", + "aliases": [ + "file-tick" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "8F78A49B-57D2-4DCC-8A49-8E07F3F5C0D5", + "name": "file-check-outline", + "codepoint": "F0E29", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Terren", + "version": "3.6.95" + }, + { + "id": "AA0F1B90-E844-4BE2-BD8F-6D7AAB2451AB", + "name": "file-clock", + "codepoint": "F12E1", + "aliases": [], + "tags": [ + "Files \/ Folders", + "Date \/ Time" + ], + "author": "Simran", + "version": "4.8.95" + }, + { + "id": "90AB6510-AEEC-4C00-BCFD-71B3F6E591CC", + "name": "file-clock-outline", + "codepoint": "F12E2", + "aliases": [], + "tags": [ + "Files \/ Folders", + "Date \/ Time" + ], + "author": "Simran", + "version": "4.8.95" + }, + { + "id": "452A53B0-3718-4483-ABB0-2897EBE97312", + "name": "file-cloud", + "codepoint": "F0217", + "aliases": [], + "tags": [ + "Cloud", + "Files \/ Folders" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "99B45E9A-4FCA-429F-B98D-1E9C0EAAE0CF", + "name": "file-cloud-outline", + "codepoint": "F102A", + "aliases": [], + "tags": [ + "Files \/ Folders", + "Cloud" + ], + "author": "Terren", + "version": "4.1.95" + }, + { + "id": "F11E3989-CBFD-4431-BDC1-44AEBBCDD8F6", + "name": "file-code", + "codepoint": "F022E", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "B226F0F1-F2C9-45C1-A940-2517FAC9F623", + "name": "file-code-outline", + "codepoint": "F102B", + "aliases": [], + "tags": [ + "Files \/ Folders", + "Developer \/ Languages" + ], + "author": "Terren", + "version": "4.1.95" + }, + { + "id": "73890E82-6C92-4578-B1D4-51D83CB5DDDE", + "name": "file-cog", + "codepoint": "F107B", + "aliases": [ + "file-settings-cog" + ], + "tags": [ + "Settings", + "Files \/ Folders" + ], + "author": "Simran", + "version": "4.2.95" + }, + { + "id": "6ABE5D01-4204-46C0-B0D8-B3904C2E64C2", + "name": "file-cog-outline", + "codepoint": "F107C", + "aliases": [ + "file-settings-cog-outline" + ], + "tags": [ + "Settings", + "Files \/ Folders" + ], + "author": "Simran", + "version": "4.2.95" + }, + { + "id": "2169C66B-967F-4AB4-9123-A8A2C6129D6C", + "name": "file-compare", + "codepoint": "F08AA", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Irigoyen", + "version": "2.2.43" + }, + { + "id": "46650D6B-318F-4202-AB77-79A113EC77AA", + "name": "file-delimited", + "codepoint": "F0218", + "aliases": [ + "file-csv" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "35CE4750-7CA9-4C9B-AB11-5C1F2A092C9C", + "name": "file-delimited-outline", + "codepoint": "F0EA5", + "aliases": [ + "file-csv-outline" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Terren", + "version": "3.7.94" + }, + { + "id": "B8F65B26-E57F-4879-852E-D894E4ACAB65", + "name": "file-document", + "codepoint": "F0219", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "83E06672-D36B-41FF-8463-080EB639F00F", + "name": "file-document-edit", + "codepoint": "F0DC8", + "aliases": [ + "contract" + ], + "tags": [ + "Edit \/ Modify", + "Files \/ Folders" + ], + "author": "GreenTurtwig", + "version": "3.5.94" + }, + { + "id": "E33F3608-CA6A-4BC3-BA3B-16AC369F10FD", + "name": "file-document-edit-outline", + "codepoint": "F0DC9", + "aliases": [ + "contract-outline" + ], + "tags": [ + "Edit \/ Modify", + "Files \/ Folders" + ], + "author": "Michael Irigoyen", + "version": "3.5.94" + }, + { + "id": "05A5AF1D-055E-4FBB-BDD4-D20F3EF105DC", + "name": "file-document-multiple", + "codepoint": "F1517", + "aliases": [], + "tags": [], + "author": "Robbert Gurdeep Singh", + "version": "5.4.55" + }, + { + "id": "F0545588-B29A-454E-B023-4FC4ED30BCDD", + "name": "file-document-multiple-outline", + "codepoint": "F1518", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.4.55" + }, + { + "id": "5CB4D11F-6B3A-465D-A2CD-F4172AD287B0", + "name": "file-document-outline", + "codepoint": "F09EE", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Google", + "version": "2.5.94" + }, + { + "id": "305DC085-34BD-4CC1-8943-E8A3B64FD110", + "name": "file-download", + "codepoint": "F0965", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Irigoyen", + "version": "2.4.85" + }, + { + "id": "50DFA593-C997-41BD-B77E-2468649E2C1B", + "name": "file-download-outline", + "codepoint": "F0966", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Irigoyen", + "version": "2.4.85" + }, + { + "id": "65092A6A-E7E4-42BF-91F7-9AE7F50727D4", + "name": "file-edit", + "codepoint": "F11E7", + "aliases": [], + "tags": [ + "Edit \/ Modify", + "Files \/ Folders" + ], + "author": "frankgrinaert", + "version": "4.5.95" + }, + { + "id": "2EE03BED-7F6F-422E-9AAE-AAED4B591266", + "name": "file-edit-outline", + "codepoint": "F11E8", + "aliases": [], + "tags": [ + "Edit \/ Modify", + "Files \/ Folders" + ], + "author": "frankgrinaert", + "version": "4.5.95" + }, + { + "id": "C3AADE94-4136-4D8E-8DFE-9AA7C88EE5D5", + "name": "file-excel", + "codepoint": "F021B", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "A2FE83DC-3544-4D13-85BD-2C54CDC1A460", + "name": "file-excel-box", + "codepoint": "F021C", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "0C257A18-698B-4FF4-BC68-828FFF2A9C34", + "name": "file-excel-box-outline", + "codepoint": "F102C", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Terren", + "version": "4.1.95" + }, + { + "id": "73706EB5-5497-459A-B9C7-1C64089F31CE", + "name": "file-excel-outline", + "codepoint": "F102D", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Terren", + "version": "4.1.95" + }, + { + "id": "5693BB52-A00A-45E6-8DDD-C84FE3D9D440", + "name": "file-export", + "codepoint": "F021D", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "25475106-D60D-4D23-BF07-4BAADB0EA9AA", + "name": "file-export-outline", + "codepoint": "F102E", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Terren", + "version": "4.1.95" + }, + { + "id": "1417ADBB-4A11-448B-A6BA-E5D4B5A20BFF", + "name": "file-eye", + "codepoint": "F0DCA", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Irigoyen", + "version": "3.5.94" + }, + { + "id": "A2B55937-B45F-441A-802F-4FAD69EB2144", + "name": "file-eye-outline", + "codepoint": "F0DCB", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Irigoyen", + "version": "3.5.94" + }, + { + "id": "A9D2E13D-A9F6-48AC-9998-22756DA6C709", + "name": "file-find", + "codepoint": "F021E", + "aliases": [ + "print-preview", + "find-in-page" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "6CB8D807-BD25-4270-80F7-F71A8D4D57C7", + "name": "file-find-outline", + "codepoint": "F0B97", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Google", + "version": "3.0.39" + }, + { + "id": "7FCFB449-8096-408A-88E4-B73343DB201F", + "name": "file-gif-box", + "codepoint": "F0D78", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.4.93" + }, + { + "id": "22033CAF-C8AF-4C33-9FCD-9D6FC4EE7EAF", + "name": "file-hidden", + "codepoint": "F0613", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "2318EAB3-F03A-40C3-A245-668B244A9AC1", + "name": "file-image", + "codepoint": "F021F", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "5E5F502C-C492-45EC-886C-CC55C6E4C504", + "name": "file-image-marker", + "codepoint": "F1772", + "aliases": [ + "file-image-location" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "BE46BBCE-2872-4DBE-976E-AC9BC2CE19D3", + "name": "file-image-marker-outline", + "codepoint": "F1773", + "aliases": [ + "file-image-location-outline" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "C287BF1A-101C-42E3-BD19-3F1D8D3FDAA6", + "name": "file-image-minus", + "codepoint": "F193B", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "533EE300-7DC5-4F89-898D-E1E005303AFD", + "name": "file-image-minus-outline", + "codepoint": "F193C", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "C86DDD85-B79F-43C4-9497-839FF4BD7526", + "name": "file-image-outline", + "codepoint": "F0EB0", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Terren", + "version": "3.7.94" + }, + { + "id": "687ED5E3-8466-48F0-A5D3-1D5EBB95B9F4", + "name": "file-image-plus", + "codepoint": "F193D", + "aliases": [ + "file-image-add" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "0D25D768-827E-4FE8-9A45-67D883E3B6FA", + "name": "file-image-plus-outline", + "codepoint": "F193E", + "aliases": [ + "file-image-add-outline" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "EB4547CB-7AEA-4FB0-B840-5ABA6FA4F1F8", + "name": "file-image-remove", + "codepoint": "F193F", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "472463C9-3A6A-47E9-9ED9-9DEF17C3ACDA", + "name": "file-image-remove-outline", + "codepoint": "F1940", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "1294020B-960A-4390-916F-BF8118A6E7C6", + "name": "file-import", + "codepoint": "F0220", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "EA70B568-90C1-4512-BF97-00F4AD27F459", + "name": "file-import-outline", + "codepoint": "F102F", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Terren", + "version": "4.1.95" + }, + { + "id": "D5A23F56-0398-40EF-8B0D-640CD1F39669", + "name": "file-jpg-box", + "codepoint": "F0225", + "aliases": [ + "file-jpeg-box", + "image-jpg-box", + "image-jpeg-box" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Irigoyen", + "version": "1.5.54" + }, + { + "id": "E854DC61-449E-4BA2-BAC7-656A3BB3D775", + "name": "file-key", + "codepoint": "F1184", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Richins", + "version": "4.4.95" + }, + { + "id": "4E2214AD-9EB5-498C-BA9B-38072C463B43", + "name": "file-key-outline", + "codepoint": "F1185", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Richins", + "version": "4.4.95" + }, + { + "id": "AD9A7D67-1BCF-42D6-8321-AFE1705DE2A6", + "name": "file-link", + "codepoint": "F1177", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "337D2BB6-6230-4896-B51B-9A8527FF3DFA", + "name": "file-link-outline", + "codepoint": "F1178", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "1D017133-E895-4103-98C1-E90D26126003", + "name": "file-lock", + "codepoint": "F0221", + "aliases": [], + "tags": [ + "Lock", + "Files \/ Folders" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "E59676A5-2E82-4B91-8887-4ADDEB5E2204", + "name": "file-lock-open", + "codepoint": "F19C8", + "aliases": [], + "tags": [ + "Lock", + "Files \/ Folders" + ], + "author": "Simran", + "version": "6.6.95" + }, + { + "id": "D94F03DE-9FA8-4AF4-AB95-3EDB4DB97522", + "name": "file-lock-open-outline", + "codepoint": "F19C9", + "aliases": [], + "tags": [ + "Lock", + "Files \/ Folders" + ], + "author": "Simran", + "version": "6.6.95" + }, + { + "id": "658B01A1-E16D-4D8E-B274-C66465BF1CE3", + "name": "file-lock-outline", + "codepoint": "F1030", + "aliases": [], + "tags": [ + "Files \/ Folders", + "Lock" + ], + "author": "Simran", + "version": "4.1.95" + }, + { + "id": "C6C876E6-1A2C-4776-9A4C-5114EF50D3DA", + "name": "file-marker", + "codepoint": "F1774", + "aliases": [ + "file-location" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "96A7C92B-3EDA-40C8-B21D-45355968345C", + "name": "file-marker-outline", + "codepoint": "F1775", + "aliases": [ + "file-location-outline" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "BB72067F-4002-409B-BD46-6FD6F9CEBA51", + "name": "file-move", + "codepoint": "F0AB9", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Austin Andrews", + "version": "2.7.94" + }, + { + "id": "B1BE9CC2-F8BF-4EB9-94BB-0B3041D0FBB4", + "name": "file-move-outline", + "codepoint": "F1031", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Terren", + "version": "4.1.95" + }, + { + "id": "7696AF65-B943-4BA3-94DB-5E85077F7BA9", + "name": "file-multiple", + "codepoint": "F0222", + "aliases": [ + "files" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "13BC9B18-661D-4517-84E9-756EC2536F4E", + "name": "file-multiple-outline", + "codepoint": "F1032", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Terren", + "version": "4.1.95" + }, + { + "id": "C6CD26A5-C5F6-4C5D-AF2C-919E8ED4166C", + "name": "file-music", + "codepoint": "F0223", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "C40C225E-F046-442C-BA4D-0531B626609F", + "name": "file-music-outline", + "codepoint": "F0E2A", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Terren", + "version": "3.6.95" + }, + { + "id": "36FCB7D4-D7DE-4B44-BD28-53615689D2C6", + "name": "file-outline", + "codepoint": "F0224", + "aliases": [ + "paper-outline" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "C09B20B5-3650-4F36-AC40-540ACE36EB6E", + "name": "file-pdf-box", + "codepoint": "F0226", + "aliases": [ + "file-acrobat-box", + "adobe-acrobat" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "267C5350-A0FC-4683-9FA1-30CD64AAA7E5", + "name": "file-percent", + "codepoint": "F081E", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Richins", + "version": "2.1.19" + }, + { + "id": "5ED4C3D2-3E7E-4C28-8FC7-63DE741E186A", + "name": "file-percent-outline", + "codepoint": "F1033", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Terren", + "version": "4.1.95" + }, + { + "id": "DA6C6F33-3262-442B-8E07-C22ACA9F3F94", + "name": "file-phone", + "codepoint": "F1179", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Victor", + "version": "4.4.95" + }, + { + "id": "2ED01F6A-EC44-442B-925B-F3A194574EBA", + "name": "file-phone-outline", + "codepoint": "F117A", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Victor", + "version": "4.4.95" + }, + { + "id": "9C42F83F-4C75-4E0A-A1C2-F10FA032E495", + "name": "file-plus", + "codepoint": "F0752", + "aliases": [ + "note-add" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "3BC5B0CB-8FEA-4C63-A9E3-59471DF11FA1", + "name": "file-plus-outline", + "codepoint": "F0EED", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Terren", + "version": "3.8.95" + }, + { + "id": "4DEDCDD8-4C71-46DA-A8C6-04B424DF621C", + "name": "file-png-box", + "codepoint": "F0E2D", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Irigoyen", + "version": "3.6.95" + }, + { + "id": "62D44147-9B6F-4B4A-A06B-1AF92C2E7F3E", + "name": "file-powerpoint", + "codepoint": "F0227", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "2C917F0E-C35E-45B2-9E60-0C3D7C2630CF", + "name": "file-powerpoint-box", + "codepoint": "F0228", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "1620AEF6-DDC2-4FC0-9117-6A3DC4C80FEB", + "name": "file-powerpoint-box-outline", + "codepoint": "F1034", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Terren", + "version": "4.1.95" + }, + { + "id": "6A605E14-B9F9-4753-A439-C9F38C0B561D", + "name": "file-powerpoint-outline", + "codepoint": "F1035", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Terren", + "version": "4.1.95" + }, + { + "id": "A7F6B3BE-8D61-4AF3-BBFC-15A795254F6A", + "name": "file-presentation-box", + "codepoint": "F0229", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "C5EBED58-BD25-4E0C-AEB8-C6316B88B620", + "name": "file-question", + "codepoint": "F086F", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "GreenTurtwig", + "version": "2.1.99" + }, + { + "id": "B2E908FB-D29C-4F80-BD90-B1F6676C6337", + "name": "file-question-outline", + "codepoint": "F1036", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Terren", + "version": "4.1.95" + }, + { + "id": "6AAC6C2E-4B51-4A21-8CDC-BA516D7BAB6B", + "name": "file-refresh", + "codepoint": "F0918", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "2.3.50" + }, + { + "id": "B48358A6-983D-4E15-8FE1-905D706A4A4B", + "name": "file-refresh-outline", + "codepoint": "F0541", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "1D2987A7-950D-45DF-AF0C-F465350C6374", + "name": "file-remove", + "codepoint": "F0B98", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Richins", + "version": "3.0.39" + }, + { + "id": "26E534DA-72D9-48CD-8748-4E3924E0A974", + "name": "file-remove-outline", + "codepoint": "F1037", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Terren", + "version": "4.1.95" + }, + { + "id": "8C05288A-4D13-4252-ABD1-CB288AFE9B4E", + "name": "file-replace", + "codepoint": "F0B32", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Richins", + "version": "2.8.94" + }, + { + "id": "C47F7F19-362E-49BA-8BC4-2FE6161AD44D", + "name": "file-replace-outline", + "codepoint": "F0B33", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Richins", + "version": "2.8.94" + }, + { + "id": "EE0E5547-D368-43CB-8BDD-7F3774985BEF", + "name": "file-restore", + "codepoint": "F0670", + "aliases": [ + "restore-page" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Google", + "version": "1.6.50" + }, + { + "id": "3D9EE6A3-0ECC-49C6-84E1-438D2CF2C053", + "name": "file-restore-outline", + "codepoint": "F1038", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Terren", + "version": "4.1.95" + }, + { + "id": "8FA2DBB9-E874-4CBB-A466-2691223D0FEF", + "name": "file-search", + "codepoint": "F0C7C", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Richins", + "version": "3.2.89" + }, + { + "id": "499004C4-2F88-4681-A8AC-EDE9A4ECE922", + "name": "file-search-outline", + "codepoint": "F0C7D", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Richins", + "version": "3.2.89" + }, + { + "id": "CEB97477-6633-4486-BDD4-9E7D7C747805", + "name": "file-send", + "codepoint": "F022A", + "aliases": [ + "file-move" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "B828E75F-BBA9-41F9-B877-CB1F1BF29ECA", + "name": "file-send-outline", + "codepoint": "F1039", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Terren", + "version": "4.1.95" + }, + { + "id": "DAD983AE-28E9-481D-B0F0-38E1EFD0CAFE", + "name": "file-settings", + "codepoint": "F1079", + "aliases": [], + "tags": [ + "Settings", + "Files \/ Folders" + ], + "author": "Simran", + "version": "4.2.95" + }, + { + "id": "6F77BE81-0AD4-4886-93FF-0FA1382B8501", + "name": "file-settings-outline", + "codepoint": "F107A", + "aliases": [], + "tags": [ + "Settings", + "Files \/ Folders" + ], + "author": "Simran", + "version": "4.2.95" + }, + { + "id": "F6BB607C-B55A-4E62-8C45-490F6AE9F0A2", + "name": "file-sign", + "codepoint": "F19C3", + "aliases": [ + "contract-sign", + "document-sign" + ], + "tags": [ + "Banking" + ], + "author": "Michael Irigoyen", + "version": "6.5.95" + }, + { + "id": "E7E04B34-BC51-466F-92A1-78C8A00DDC9D", + "name": "file-star", + "codepoint": "F103A", + "aliases": [ + "file-favorite" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Irigoyen", + "version": "4.1.95" + }, + { + "id": "B418C938-EE23-4073-B10C-C1D93D54B288", + "name": "file-star-outline", + "codepoint": "F103B", + "aliases": [ + "file-favorite-outline" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Miday", + "version": "4.1.95" + }, + { + "id": "01893B96-44C2-43EF-B979-5768B6AF7695", + "name": "file-swap", + "codepoint": "F0FB4", + "aliases": [ + "file-transfer" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Richins", + "version": "4.0.96" + }, + { + "id": "22D7F491-0873-43A4-9EE1-330F5BDC0829", + "name": "file-swap-outline", + "codepoint": "F0FB5", + "aliases": [ + "file-transfer-outline" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Richins", + "version": "4.0.96" + }, + { + "id": "C17D4D8C-F028-4EED-9C77-B9E1A66FE372", + "name": "file-sync", + "codepoint": "F1216", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.6.95" + }, + { + "id": "F642DE27-0183-4EF7-87FD-70A1D8E031D4", + "name": "file-sync-outline", + "codepoint": "F1217", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.6.95" + }, + { + "id": "663EC5E6-16C5-4075-AB5C-1215864F3B2B", + "name": "file-table", + "codepoint": "F0C7E", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Richins", + "version": "3.2.89" + }, + { + "id": "7CBD5B51-1AE9-4FCA-905F-719540F0EA40", + "name": "file-table-box", + "codepoint": "F10E1", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Irigoyen", + "version": "4.3.95" + }, + { + "id": "6847431F-22A9-4EAD-A9C6-645C6694D050", + "name": "file-table-box-multiple", + "codepoint": "F10E2", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Irigoyen", + "version": "4.3.95" + }, + { + "id": "1C6DE56C-E364-4D47-BA2F-4CE1DF34ACF4", + "name": "file-table-box-multiple-outline", + "codepoint": "F10E3", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Irigoyen", + "version": "4.3.95" + }, + { + "id": "3598E989-EAC7-4255-A78F-BB1914D3153F", + "name": "file-table-box-outline", + "codepoint": "F10E4", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Irigoyen", + "version": "4.3.95" + }, + { + "id": "D365B2EB-0B21-42D3-BC9E-7A51DE5F0A57", + "name": "file-table-outline", + "codepoint": "F0C7F", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Richins", + "version": "3.2.89" + }, + { + "id": "FE2B1AE3-7158-473B-B1EE-45FB9CAE1137", + "name": "file-tree", + "codepoint": "F0645", + "aliases": [ + "subtasks" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Kai Faust", + "version": "1.6.50" + }, + { + "id": "86EB0B3A-E46E-4439-B7BA-67A88B280961", + "name": "file-tree-outline", + "codepoint": "F13D2", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "5CCC54A4-04AF-4241-80AB-177C8365A905", + "name": "file-undo", + "codepoint": "F08DC", + "aliases": [ + "file-revert", + "file-discard" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Richins", + "version": "2.3.50" + }, + { + "id": "6B690FE5-C7C6-49FE-90C1-B021BDB1B2A6", + "name": "file-undo-outline", + "codepoint": "F103C", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Terren", + "version": "4.1.95" + }, + { + "id": "38FC6E1D-C2F0-4B73-BA30-2C7FAFC0C48E", + "name": "file-upload", + "codepoint": "F0A4D", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Richins", + "version": "2.6.95" + }, + { + "id": "0719AAB6-7E18-402E-9E27-C51D44C0A856", + "name": "file-upload-outline", + "codepoint": "F0A4E", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Richins", + "version": "2.6.95" + }, + { + "id": "7BEB068A-898D-43FF-AAA6-BC239FBA74F2", + "name": "file-video", + "codepoint": "F022B", + "aliases": [], + "tags": [ + "Video \/ Movie", + "Files \/ Folders" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "6F2D3BA3-B23D-4476-B3D8-920033F6B68B", + "name": "file-video-outline", + "codepoint": "F0E2C", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Peter Noble", + "version": "3.6.95" + }, + { + "id": "05004893-1DB7-4A34-AC50-D4B46133A603", + "name": "file-word", + "codepoint": "F022C", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "AE6B9B24-DD1E-4896-B385-8DBB9D21C9E7", + "name": "file-word-box", + "codepoint": "F022D", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "09E0675C-053B-4548-9FC1-2F8DC3B49364", + "name": "file-word-box-outline", + "codepoint": "F103D", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Terren", + "version": "4.1.95" + }, + { + "id": "C261E28B-72D8-4D0E-B74A-93333AE4EF4D", + "name": "file-word-outline", + "codepoint": "F103E", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Terren", + "version": "4.1.95" + }, + { + "id": "2EFEE436-9663-4C09-AD65-6727A0ED2AFD", + "name": "film", + "codepoint": "F022F", + "aliases": [ + "camera-roll" + ], + "tags": [ + "Photography", + "Video \/ Movie" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "10A06B6D-A551-425C-B084-DA3F2239DFA1", + "name": "filmstrip", + "codepoint": "F0230", + "aliases": [ + "local-movies", + "theaters" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "FB635DB5-18DA-448E-81C7-0602181EE21A", + "name": "filmstrip-box", + "codepoint": "F0332", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "392DCBD5-0766-4719-B198-42A9A66C18B4", + "name": "filmstrip-box-multiple", + "codepoint": "F0D18", + "aliases": [ + "library-movie" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Google", + "version": "3.3.92" + }, + { + "id": "CB040E6C-85FD-4C09-9ACD-C41EE5FB770E", + "name": "filmstrip-off", + "codepoint": "F0231", + "aliases": [], + "tags": [ + "Video \/ Movie" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "39CAC4E6-CC95-42C8-94E9-E29089F1E91E", + "name": "filter", + "codepoint": "F0232", + "aliases": [ + "funnel" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "176E2D7F-C16A-4941-9A42-3DBE264E4148", + "name": "filter-check", + "codepoint": "F18EC", + "aliases": [ + "funnel-check" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.3.95" + }, + { + "id": "FFDED2FF-7CB6-4D02-BEE6-A82C16625386", + "name": "filter-check-outline", + "codepoint": "F18ED", + "aliases": [ + "funnel-check-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.3.95" + }, + { + "id": "36805F11-BE23-49C3-8D72-682859DD5551", + "name": "filter-menu", + "codepoint": "F10E5", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "4.3.95" + }, + { + "id": "18CFDA0C-648C-4513-AE67-F5BB93817E0B", + "name": "filter-menu-outline", + "codepoint": "F10E6", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "4.3.95" + }, + { + "id": "BCA7EE0A-BADF-441A-B660-C37C0DFEF83A", + "name": "filter-minus", + "codepoint": "F0EEE", + "aliases": [ + "funnel-minus" + ], + "tags": [], + "author": "GreenTurtwig", + "version": "3.8.95" + }, + { + "id": "7AB99674-5A9A-40BE-94B4-B8CFA4A97434", + "name": "filter-minus-outline", + "codepoint": "F0EEF", + "aliases": [ + "funnel-minus-outline" + ], + "tags": [], + "author": "GreenTurtwig", + "version": "3.8.95" + }, + { + "id": "049BC23B-DE87-4AB6-AFC3-38AC296045A3", + "name": "filter-off", + "codepoint": "F14EF", + "aliases": [], + "tags": [], + "author": "kikuchan", + "version": "5.4.55" + }, + { + "id": "156D4779-7EC6-4BD9-A7B1-F123A387B109", + "name": "filter-off-outline", + "codepoint": "F14F0", + "aliases": [], + "tags": [], + "author": "kikuchan", + "version": "5.4.55" + }, + { + "id": "524BE3DE-F5C8-4E2E-A329-8480136DCBDB", + "name": "filter-outline", + "codepoint": "F0233", + "aliases": [ + "funnel-outline" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "3587C73B-5120-4206-9036-2FA87974681B", + "name": "filter-plus", + "codepoint": "F0EF0", + "aliases": [ + "funnel-plus" + ], + "tags": [], + "author": "GreenTurtwig", + "version": "3.8.95" + }, + { + "id": "69D6704C-5371-48C4-AAE1-A53EB581CF72", + "name": "filter-plus-outline", + "codepoint": "F0EF1", + "aliases": [ + "funnel-plus-outline" + ], + "tags": [], + "author": "GreenTurtwig", + "version": "3.8.95" + }, + { + "id": "F0D392A7-69A4-4301-8E3B-46A8FC7C3DF9", + "name": "filter-remove", + "codepoint": "F0234", + "aliases": [ + "funnel-remove" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "C6DD0143-A7E3-464D-B0AC-F97E5C51F74C", + "name": "filter-remove-outline", + "codepoint": "F0235", + "aliases": [ + "funnel-remove-outline" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "AECECEA4-9E56-4B4B-ACD6-2C85AB09788A", + "name": "filter-variant", + "codepoint": "F0236", + "aliases": [ + "filter-list" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "10D650FB-B7AA-4439-A3BF-3F5DE934A22C", + "name": "filter-variant-minus", + "codepoint": "F1112", + "aliases": [], + "tags": [], + "author": "Fran\u00e7ois Risoud", + "version": "4.3.95" + }, + { + "id": "5F4F40C3-F04B-47BE-BB4F-13F080A81C6A", + "name": "filter-variant-plus", + "codepoint": "F1113", + "aliases": [], + "tags": [], + "author": "Fran\u00e7ois Risoud", + "version": "4.3.95" + }, + { + "id": "AE1B79F5-59D9-4FA4-8006-CE60BB5F5207", + "name": "filter-variant-remove", + "codepoint": "F103F", + "aliases": [], + "tags": [], + "author": "David Jackson", + "version": "4.1.95" + }, + { + "id": "C39421CD-2A2D-4D92-B59B-69D70A328DF4", + "name": "finance", + "codepoint": "F081F", + "aliases": [ + "chart-finance", + "report-finance", + "graph-bar" + ], + "tags": [ + "Banking", + "Math" + ], + "author": "Google", + "version": "2.1.19" + }, + { + "id": "D093813C-B59B-42BD-B6C7-B451FA51E87E", + "name": "find-replace", + "codepoint": "F06D4", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.8.36" + }, + { + "id": "F71C897D-9858-40AE-8DB4-253CE675D823", + "name": "fingerprint", + "codepoint": "F0237", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "EC570B4F-91D7-4478-9B9F-4C61BC709652", + "name": "fingerprint-off", + "codepoint": "F0EB1", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "3.7.94" + }, + { + "id": "5259DBA5-B2FB-4112-B1F2-5DC17002205C", + "name": "fire", + "codepoint": "F0238", + "aliases": [ + "whatshot", + "flame", + "gas", + "natural-gas", + "hot" + ], + "tags": [ + "Home Automation" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "69B65938-BBEB-4E19-9D12-3924EEAAACF0", + "name": "fire-alert", + "codepoint": "F15D7", + "aliases": [ + "flame-alert" + ], + "tags": [ + "Alert \/ Error" + ], + "author": "Colton Wiscombe", + "version": "5.6.55" + }, + { + "id": "942AE48C-F54D-4CD3-87A0-DC8DDDAD6F44", + "name": "fire-circle", + "codepoint": "F1807", + "aliases": [ + "flame-circle", + "hot-circle", + "gas-circle", + "natural-gas-circle" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "D056C9A3-AA4C-4220-BEE7-79E189C12711", + "name": "fire-extinguisher", + "codepoint": "F0EF2", + "aliases": [], + "tags": [ + "Hardware \/ Tools" + ], + "author": "Simran", + "version": "3.8.95" + }, + { + "id": "78842C69-653C-40B5-BA05-578361EA0620", + "name": "fire-hydrant", + "codepoint": "F1137", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "506CEB31-5A28-4D8F-947E-A0B0B5211DA1", + "name": "fire-hydrant-alert", + "codepoint": "F1138", + "aliases": [], + "tags": [ + "Alert \/ Error" + ], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "B09CB3ED-6B3A-4B3D-B795-92E96DE01F4B", + "name": "fire-hydrant-off", + "codepoint": "F1139", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "DAB67757-2065-4741-A03A-563D0EA202E0", + "name": "fire-off", + "codepoint": "F1722", + "aliases": [ + "flame-off" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.9.55" + }, + { + "id": "1C8EC9A6-0545-4A59-B9F8-5E498E40529D", + "name": "fire-truck", + "codepoint": "F08AB", + "aliases": [ + "fire-engine" + ], + "tags": [ + "Transportation + Road" + ], + "author": "Nick", + "version": "2.2.43" + }, + { + "id": "3A3D9EFD-ABA4-444F-9CB5-A2D8C1322B2C", + "name": "firebase", + "codepoint": "F0967", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Google", + "version": "2.4.85" + }, + { + "id": "2A7EE574-62BE-4000-B8D8-B601C29D2960", + "name": "firefox", + "codepoint": "F0239", + "aliases": [ + "mozilla-firefox" + ], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "B69CC506-E44A-4B60-A170-F4FFD53C67A6", + "name": "fireplace", + "codepoint": "F0E2E", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "3.6.95" + }, + { + "id": "E2D6EF7A-6C31-4DCD-B385-FC8C9B113538", + "name": "fireplace-off", + "codepoint": "F0E2F", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "3.6.95" + }, + { + "id": "5415674F-E6F6-433D-9A9F-E976FD7245F8", + "name": "firewire", + "codepoint": "F05BE", + "aliases": [], + "tags": [], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "6385008C-99E4-4459-8B18-0CD594EC5C7E", + "name": "firework", + "codepoint": "F0E30", + "aliases": [ + "bottle-rocket" + ], + "tags": [ + "Holiday" + ], + "author": "Augustin Ursu", + "version": "3.6.95" + }, + { + "id": "16CFC5D9-C749-4148-BF17-D002AFFF9D09", + "name": "firework-off", + "codepoint": "F1723", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.9.55" + }, + { + "id": "91D8C321-95BC-4AC6-9B3E-D38D457BFF75", + "name": "fish", + "codepoint": "F023A", + "aliases": [], + "tags": [ + "Animal", + "Food \/ Drink" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "4F854008-B48E-4134-829A-9D3086C8F1E9", + "name": "fish-off", + "codepoint": "F13F3", + "aliases": [], + "tags": [ + "Food \/ Drink" + ], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "50A773A8-4349-4B7F-A211-6CB14E9C090B", + "name": "fishbowl", + "codepoint": "F0EF3", + "aliases": [ + "aquarium" + ], + "tags": [ + "Animal" + ], + "author": "Michael Irigoyen", + "version": "3.8.95" + }, + { + "id": "860D1C47-AD7E-4424-9CB7-BA9D2F86C129", + "name": "fishbowl-outline", + "codepoint": "F0EF4", + "aliases": [ + "aquarium-outline" + ], + "tags": [ + "Animal" + ], + "author": "Michael Irigoyen", + "version": "3.8.95" + }, + { + "id": "05E31726-71FE-41C1-B2CC-93E5B4DF25CE", + "name": "fit-to-page", + "codepoint": "F0EF5", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format", + "Arrow" + ], + "author": "Michael Irigoyen", + "version": "3.8.95" + }, + { + "id": "0DB84D18-659E-4E93-A078-B3822742C0D4", + "name": "fit-to-page-outline", + "codepoint": "F0EF6", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format", + "Arrow" + ], + "author": "Michael Irigoyen", + "version": "3.8.95" + }, + { + "id": "2491A740-6415-4CDB-805F-675D8EBF89A3", + "name": "fit-to-screen", + "codepoint": "F18F4", + "aliases": [], + "tags": [], + "author": "Google", + "version": "6.3.95" + }, + { + "id": "E7D43483-A3ED-4B9B-AEB8-72BF8BC189E4", + "name": "fit-to-screen-outline", + "codepoint": "F18F5", + "aliases": [], + "tags": [], + "author": "Google", + "version": "6.3.95" + }, + { + "id": "55271063-77EF-43FA-917C-657E57135A24", + "name": "flag", + "codepoint": "F023B", + "aliases": [ + "assistant-photo" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "B7386AC8-4DBF-4948-AD45-49234A8A019B", + "name": "flag-checkered", + "codepoint": "F023C", + "aliases": [ + "goal" + ], + "tags": [ + "Sport" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "55982621-FCB3-4A76-8F8C-50E7B6B1C93D", + "name": "flag-minus", + "codepoint": "F0B99", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "3.0.39" + }, + { + "id": "370C68CC-A001-4368-9617-B7D683361B27", + "name": "flag-minus-outline", + "codepoint": "F10B2", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "4.2.95" + }, + { + "id": "D670073A-229E-474A-BDF8-ED5F07C1FC41", + "name": "flag-off", + "codepoint": "F18EE", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.3.95" + }, + { + "id": "07AE6191-FF49-4F10-A6E1-F4BD0E6C9029", + "name": "flag-off-outline", + "codepoint": "F18EF", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.3.95" + }, + { + "id": "3C0BD546-A778-4BDC-A30A-A627D61CBA47", + "name": "flag-outline", + "codepoint": "F023D", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "EF2E3070-75EC-44C3-9ECE-780BB330D51B", + "name": "flag-plus", + "codepoint": "F0B9A", + "aliases": [ + "flag-add" + ], + "tags": [], + "author": "Michael Richins", + "version": "3.0.39" + }, + { + "id": "32EF248B-1462-486E-AEF1-A0ED29670568", + "name": "flag-plus-outline", + "codepoint": "F10B3", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "4.2.95" + }, + { + "id": "D0FB8B1E-3270-4562-A660-968995E1B9A9", + "name": "flag-remove", + "codepoint": "F0B9B", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "3.0.39" + }, + { + "id": "65132686-1842-48E2-9AD3-17FEB5EA56F5", + "name": "flag-remove-outline", + "codepoint": "F10B4", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "4.2.95" + }, + { + "id": "3E14D0C4-25AA-405E-89A7-37E9A224BA93", + "name": "flag-triangle", + "codepoint": "F023F", + "aliases": [ + "milestone" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "9A9DB93D-CE2E-4887-B648-9C70E1922092", + "name": "flag-variant", + "codepoint": "F0240", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "756B772A-F638-48EB-918C-2FA4237C7767", + "name": "flag-variant-outline", + "codepoint": "F023E", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "8F4F8B2A-9E7D-432F-978E-F3F108DA701B", + "name": "flare", + "codepoint": "F0D72", + "aliases": [ + "star" + ], + "tags": [], + "author": "Google", + "version": "3.4.93" + }, + { + "id": "EF3D6923-793B-410C-B349-90A6A338F06C", + "name": "flash", + "codepoint": "F0241", + "aliases": [ + "lightning-bolt", + "flash-on", + "electricity" + ], + "tags": [ + "Weather" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "59E94B6E-589B-4DB9-AAB7-397E17E2B272", + "name": "flash-alert", + "codepoint": "F0EF7", + "aliases": [ + "lightning-alert", + "storm-advisory" + ], + "tags": [ + "Weather", + "Alert \/ Error" + ], + "author": "Michael Irigoyen", + "version": "3.8.95" + }, + { + "id": "2770517A-B0A3-4AC5-A6E6-6EFD9DA2C3E5", + "name": "flash-alert-outline", + "codepoint": "F0EF8", + "aliases": [ + "lightning-alert-outline", + "storm-advisory-outline" + ], + "tags": [ + "Weather", + "Alert \/ Error" + ], + "author": "Michael Irigoyen", + "version": "3.8.95" + }, + { + "id": "D3251831-8AEF-420A-9AA8-2BA0A0621538", + "name": "flash-auto", + "codepoint": "F0242", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "A6D1B09D-EDB0-4241-B42D-E56052A070DE", + "name": "flash-off", + "codepoint": "F0243", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "088BF56F-9281-43DB-879E-EB5158428EB7", + "name": "flash-outline", + "codepoint": "F06D5", + "aliases": [ + "lightning-bolt-outline" + ], + "tags": [ + "Weather" + ], + "author": "Michael Irigoyen", + "version": "1.8.36" + }, + { + "id": "C25CEF12-DF9C-45A4-8399-3102B79BDF14", + "name": "flash-red-eye", + "codepoint": "F067B", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.7.12" + }, + { + "id": "0EC7CDC8-86F4-4C72-AC2E-1DEDB196043F", + "name": "flashlight", + "codepoint": "F0244", + "aliases": [ + "torch" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "043DEA8B-1F5B-49CE-BC9F-AA3FC802A58A", + "name": "flashlight-off", + "codepoint": "F0245", + "aliases": [ + "torch-off" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "5E171637-949C-4091-9A6E-1A56C1DC8347", + "name": "flask", + "codepoint": "F0093", + "aliases": [], + "tags": [ + "Science", + "Gaming \/ RPG" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "D036C297-DB1B-42F5-A856-13EEBDB48613", + "name": "flask-empty", + "codepoint": "F0094", + "aliases": [], + "tags": [ + "Science", + "Gaming \/ RPG" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "845569FD-A57A-4F03-9048-707A046521E9", + "name": "flask-empty-minus", + "codepoint": "F123A", + "aliases": [], + "tags": [ + "Science" + ], + "author": "Austin Andrews", + "version": "4.6.95" + }, + { + "id": "500AF1DD-69C7-4C42-AE74-B6AC589BA8A8", + "name": "flask-empty-minus-outline", + "codepoint": "F123B", + "aliases": [], + "tags": [ + "Science" + ], + "author": "Austin Andrews", + "version": "4.6.95" + }, + { + "id": "26005876-74DC-411D-BB27-557623A42F8A", + "name": "flask-empty-off", + "codepoint": "F13F4", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "E04A35A9-0B00-4FCF-A524-CB3331FFA346", + "name": "flask-empty-off-outline", + "codepoint": "F13F5", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "E9FFE6A9-C641-47BE-988B-A94B34A90CED", + "name": "flask-empty-outline", + "codepoint": "F0095", + "aliases": [], + "tags": [ + "Science", + "Gaming \/ RPG" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "716D7945-ED6F-40B5-890A-18A1F93247B0", + "name": "flask-empty-plus", + "codepoint": "F123C", + "aliases": [], + "tags": [ + "Science" + ], + "author": "Austin Andrews", + "version": "4.6.95" + }, + { + "id": "DD0BAE86-6060-4A90-8A57-32CCFBC7D617", + "name": "flask-empty-plus-outline", + "codepoint": "F123D", + "aliases": [], + "tags": [ + "Science" + ], + "author": "Austin Andrews", + "version": "4.6.95" + }, + { + "id": "64BC4DF4-E408-446C-975F-20A2F1646F1F", + "name": "flask-empty-remove", + "codepoint": "F123E", + "aliases": [], + "tags": [ + "Science" + ], + "author": "Austin Andrews", + "version": "4.6.95" + }, + { + "id": "5B25EC76-4EB5-46AC-9445-7411CD0567DD", + "name": "flask-empty-remove-outline", + "codepoint": "F123F", + "aliases": [], + "tags": [ + "Science" + ], + "author": "Austin Andrews", + "version": "4.6.95" + }, + { + "id": "E4673F66-5785-4A63-855D-92A9F6B0E4AE", + "name": "flask-minus", + "codepoint": "F1240", + "aliases": [], + "tags": [ + "Science" + ], + "author": "Austin Andrews", + "version": "4.6.95" + }, + { + "id": "B8EB4BF1-B423-4C0D-9DE5-24D691E9EAF3", + "name": "flask-minus-outline", + "codepoint": "F1241", + "aliases": [], + "tags": [ + "Science" + ], + "author": "Austin Andrews", + "version": "4.6.95" + }, + { + "id": "D886A9E0-E952-4DF0-97B0-0C630E956766", + "name": "flask-off", + "codepoint": "F13F6", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "4AA0C752-79B8-4EF6-A4E2-7B610599DEE3", + "name": "flask-off-outline", + "codepoint": "F13F7", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "14C068EE-90AC-42DA-AA1E-D24F74EE7263", + "name": "flask-outline", + "codepoint": "F0096", + "aliases": [], + "tags": [ + "Science", + "Gaming \/ RPG" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "6FA94A7A-788F-44B6-90A7-B4EACF9B6FD3", + "name": "flask-plus", + "codepoint": "F1242", + "aliases": [], + "tags": [ + "Science" + ], + "author": "Austin Andrews", + "version": "4.6.95" + }, + { + "id": "AE491BF6-EA26-4732-AF63-8A3D83379CC6", + "name": "flask-plus-outline", + "codepoint": "F1243", + "aliases": [], + "tags": [ + "Science" + ], + "author": "Austin Andrews", + "version": "4.6.95" + }, + { + "id": "ED698844-E3E9-4FD3-89F2-A41163ACD80A", + "name": "flask-remove", + "codepoint": "F1244", + "aliases": [], + "tags": [ + "Science" + ], + "author": "Austin Andrews", + "version": "4.6.95" + }, + { + "id": "67E2EA68-867E-4514-A952-2E0A90D5C2AC", + "name": "flask-remove-outline", + "codepoint": "F1245", + "aliases": [], + "tags": [ + "Science" + ], + "author": "Austin Andrews", + "version": "4.6.95" + }, + { + "id": "E7D0BD51-A831-4355-AE75-1D903C121D3F", + "name": "flask-round-bottom", + "codepoint": "F124B", + "aliases": [], + "tags": [ + "Science" + ], + "author": "Austin Andrews", + "version": "4.6.95" + }, + { + "id": "A08CBFD8-DD21-47F9-B213-7EF3AD89EDAD", + "name": "flask-round-bottom-empty", + "codepoint": "F124C", + "aliases": [], + "tags": [ + "Science" + ], + "author": "Austin Andrews", + "version": "4.6.95" + }, + { + "id": "2BD05FF6-4E09-40EC-9D34-59FB9CCD09FF", + "name": "flask-round-bottom-empty-outline", + "codepoint": "F124D", + "aliases": [], + "tags": [ + "Science" + ], + "author": "Austin Andrews", + "version": "4.6.95" + }, + { + "id": "383DEA4E-9820-4C4C-A5FD-05C151C7B82A", + "name": "flask-round-bottom-outline", + "codepoint": "F124E", + "aliases": [], + "tags": [ + "Science" + ], + "author": "Austin Andrews", + "version": "4.6.95" + }, + { + "id": "1BB3488A-A7B4-4DA5-99A2-AD23A184606B", + "name": "fleur-de-lis", + "codepoint": "F1303", + "aliases": [], + "tags": [], + "author": "Nick", + "version": "4.8.95" + }, + { + "id": "9D29290D-A243-4C72-BC8C-ABCDFB4448B2", + "name": "flip-horizontal", + "codepoint": "F10E7", + "aliases": [], + "tags": [ + "Arrange" + ], + "author": "Google", + "version": "4.3.95" + }, + { + "id": "F9DD0BF3-1CF8-456E-A542-2D22131A5761", + "name": "flip-to-back", + "codepoint": "F0247", + "aliases": [], + "tags": [ + "Arrange" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "6CEAE4F9-F6CB-4DA8-A25C-1F41494C6DD5", + "name": "flip-to-front", + "codepoint": "F0248", + "aliases": [], + "tags": [ + "Arrange" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "D5DC28B3-CD69-465C-9333-9463A75072DC", + "name": "flip-vertical", + "codepoint": "F10E8", + "aliases": [], + "tags": [ + "Arrange" + ], + "author": "Google", + "version": "4.3.95" + }, + { + "id": "BEF1218E-7AF7-45F9-930E-915791D51EDC", + "name": "floor-lamp", + "codepoint": "F08DD", + "aliases": [ + "floor-light" + ], + "tags": [ + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "2.3.50" + }, + { + "id": "08F74DD4-A57F-4CC8-9568-88E826BE71E5", + "name": "floor-lamp-dual", + "codepoint": "F1040", + "aliases": [ + "floor-light-dual" + ], + "tags": [ + "Home Automation" + ], + "author": "Borre Haugen", + "version": "4.1.95" + }, + { + "id": "E53D8FB5-A010-4EFA-91EB-731E8C6B7321", + "name": "floor-lamp-dual-outline", + "codepoint": "F17CE", + "aliases": [ + "floor-light-dual-outline" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "9768571C-CF87-4146-A9AF-A4E76BBD9248", + "name": "floor-lamp-outline", + "codepoint": "F17C8", + "aliases": [ + "floor-light-outline" + ], + "tags": [ + "Home Automation" + ], + "author": "Teodor Sandu", + "version": "6.1.95" + }, + { + "id": "9042476D-79AC-4D50-AA53-EE71D3416BF3", + "name": "floor-lamp-torchiere", + "codepoint": "F1747", + "aliases": [ + "floor-light-torchiere" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "F2BD0434-FE75-43EB-BA3A-AFCE445DE335", + "name": "floor-lamp-torchiere-outline", + "codepoint": "F17D6", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "85969E2D-500B-4565-8B80-A59FB6C8A73B", + "name": "floor-lamp-torchiere-variant", + "codepoint": "F1041", + "aliases": [ + "floor-light-torchiere-variant" + ], + "tags": [ + "Home Automation" + ], + "author": "Borre Haugen", + "version": "4.1.95" + }, + { + "id": "03B09B13-4FA7-46CD-9E3B-48D460AB3986", + "name": "floor-lamp-torchiere-variant-outline", + "codepoint": "F17CF", + "aliases": [ + "floor-light-torchiere-variant-outline" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "131D3C5D-880D-486B-A041-039B1F1E5284", + "name": "floor-plan", + "codepoint": "F0821", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "james-fry", + "version": "2.1.19" + }, + { + "id": "B4AC5BF4-AF66-4DC5-9743-F62A80489149", + "name": "floppy", + "codepoint": "F0249", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "8A4453F7-03E3-4F10-B93F-3213645300F8", + "name": "floppy-variant", + "codepoint": "F09EF", + "aliases": [], + "tags": [], + "author": "GreenTurtwig", + "version": "2.5.94" + }, + { + "id": "D73BB486-A112-48C1-A4EE-993825164C43", + "name": "flower", + "codepoint": "F024A", + "aliases": [ + "local-florist", + "plant" + ], + "tags": [ + "Nature" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "0BF283D1-7C12-4E5F-B136-558BE534AC8D", + "name": "flower-outline", + "codepoint": "F09F0", + "aliases": [ + "local-florist-outline", + "plant" + ], + "tags": [ + "Nature" + ], + "author": "Google", + "version": "2.5.94" + }, + { + "id": "00031D77-25BC-41B3-A6A3-F83EF92743A5", + "name": "flower-pollen", + "codepoint": "F1885", + "aliases": [ + "allergy" + ], + "tags": [ + "Nature" + ], + "author": "Colton Wiscombe", + "version": "6.2.95" + }, + { + "id": "24A80A28-E963-4E59-BA21-9D97C0434950", + "name": "flower-pollen-outline", + "codepoint": "F1886", + "aliases": [ + "allergy-outline" + ], + "tags": [ + "Nature" + ], + "author": "Colton Wiscombe", + "version": "6.2.95" + }, + { + "id": "9C310133-C0AC-4456-B8A0-9ED17F2C08BA", + "name": "flower-poppy", + "codepoint": "F0D08", + "aliases": [ + "plant" + ], + "tags": [ + "Nature" + ], + "author": "Colton Wiscombe", + "version": "3.3.92" + }, + { + "id": "4CD0F242-7779-4B61-B13C-876236FE92B4", + "name": "flower-tulip", + "codepoint": "F09F1", + "aliases": [ + "plant" + ], + "tags": [ + "Nature" + ], + "author": "Michael Richins", + "version": "2.5.94" + }, + { + "id": "D6449362-3D4B-42FB-BD25-020B104B4602", + "name": "flower-tulip-outline", + "codepoint": "F09F2", + "aliases": [ + "plant" + ], + "tags": [ + "Nature" + ], + "author": "Michael Richins", + "version": "2.5.94" + }, + { + "id": "F04E0123-6365-491F-9A98-1D634D2F3071", + "name": "focus-auto", + "codepoint": "F0F4E", + "aliases": [], + "tags": [ + "Photography" + ], + "author": "Simran", + "version": "3.9.97" + }, + { + "id": "4B35FE7D-BD1E-46D1-9C4C-DCCFC3DCEC44", + "name": "focus-field", + "codepoint": "F0F4F", + "aliases": [], + "tags": [ + "Photography" + ], + "author": "Simran", + "version": "3.9.97" + }, + { + "id": "B7F6C8DE-200D-4BCA-9E71-2AF633968C43", + "name": "focus-field-horizontal", + "codepoint": "F0F50", + "aliases": [], + "tags": [ + "Photography" + ], + "author": "Simran", + "version": "3.9.97" + }, + { + "id": "CC4C833A-A1B9-4847-9BCB-3EAC3CCF15F5", + "name": "focus-field-vertical", + "codepoint": "F0F51", + "aliases": [], + "tags": [ + "Photography" + ], + "author": "Simran", + "version": "3.9.97" + }, + { + "id": "9D8C1CEE-19BE-4B0B-85CC-DEB829F9F045", + "name": "folder", + "codepoint": "F024B", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "0C56278E-06DE-4D32-BA08-C78F3EB572CC", + "name": "folder-account", + "codepoint": "F024C", + "aliases": [ + "folder-user", + "folder-shared" + ], + "tags": [ + "Account \/ User", + "Files \/ Folders" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "B905BF65-7312-4F62-8979-EDB2906B38E6", + "name": "folder-account-outline", + "codepoint": "F0B9C", + "aliases": [ + "folder-user-outline", + "folder-shared-outline" + ], + "tags": [ + "Files \/ Folders", + "Account \/ User" + ], + "author": "Google", + "version": "3.0.39" + }, + { + "id": "D26F1A90-B76E-4C13-A956-2EBA33493563", + "name": "folder-alert", + "codepoint": "F0DCC", + "aliases": [ + "folder-warning" + ], + "tags": [ + "Files \/ Folders", + "Alert \/ Error" + ], + "author": "Michael Irigoyen", + "version": "3.5.94" + }, + { + "id": "9CF67925-5A21-47F8-8EF5-F567D902C1D2", + "name": "folder-alert-outline", + "codepoint": "F0DCD", + "aliases": [ + "folder-warning-outline" + ], + "tags": [ + "Files \/ Folders", + "Alert \/ Error" + ], + "author": "Michael Irigoyen", + "version": "3.5.94" + }, + { + "id": "B231DD3B-3FD4-4D82-9BD4-329B5A1F59A5", + "name": "folder-check", + "codepoint": "F197E", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Irigoyen", + "version": "6.5.95" + }, + { + "id": "87616DE6-0ADE-412A-B67F-C115DF131B06", + "name": "folder-check-outline", + "codepoint": "F197F", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Irigoyen", + "version": "6.5.95" + }, + { + "id": "A3CB34A0-7E6E-4DF8-B17A-20C9180B3C76", + "name": "folder-clock", + "codepoint": "F0ABA", + "aliases": [], + "tags": [ + "Files \/ Folders", + "Date \/ Time" + ], + "author": "GreenTurtwig", + "version": "2.7.94" + }, + { + "id": "3EC459AC-889B-4D24-A6E2-978BA7A908BB", + "name": "folder-clock-outline", + "codepoint": "F0ABB", + "aliases": [], + "tags": [ + "Files \/ Folders", + "Date \/ Time" + ], + "author": "Austin Andrews", + "version": "2.7.94" + }, + { + "id": "C5113090-DFDF-461C-BD5F-885DF9938A9E", + "name": "folder-cog", + "codepoint": "F107F", + "aliases": [ + "folder-cog" + ], + "tags": [ + "Settings", + "Files \/ Folders" + ], + "author": "Simran", + "version": "4.2.95" + }, + { + "id": "FDC5F42F-066B-4833-B8E9-E2E245FC80F6", + "name": "folder-cog-outline", + "codepoint": "F1080", + "aliases": [ + "folder-cog-outline" + ], + "tags": [ + "Settings", + "Files \/ Folders" + ], + "author": "Simran", + "version": "4.2.95" + }, + { + "id": "E10E0982-353D-484A-886B-30D343261422", + "name": "folder-download", + "codepoint": "F024D", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "20FEED41-F560-4872-82F4-4ED5D01EA474", + "name": "folder-download-outline", + "codepoint": "F10E9", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Richins", + "version": "4.3.95" + }, + { + "id": "1C40CBC9-118F-4145-B0A5-B10007870272", + "name": "folder-edit", + "codepoint": "F08DE", + "aliases": [], + "tags": [ + "Files \/ Folders", + "Edit \/ Modify" + ], + "author": "GreenTurtwig", + "version": "2.3.50" + }, + { + "id": "A990E58F-2E88-4293-892E-F58252416749", + "name": "folder-edit-outline", + "codepoint": "F0DCE", + "aliases": [], + "tags": [ + "Edit \/ Modify", + "Files \/ Folders" + ], + "author": "Michael Irigoyen", + "version": "3.5.94" + }, + { + "id": "D36D03A5-01AD-4F0B-9C63-ACA149117B73", + "name": "folder-eye", + "codepoint": "F178A", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "7589978B-4D0B-4C1E-965A-38B5077BB7E1", + "name": "folder-eye-outline", + "codepoint": "F178B", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "B8ACEEFF-E80A-42A9-BCAE-A804D47D8929", + "name": "folder-google-drive", + "codepoint": "F024E", + "aliases": [ + "folder-mydrive" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "E67BA814-6FCF-48CB-BBB3-359070145BCF", + "name": "folder-heart", + "codepoint": "F10EA", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Irigoyen", + "version": "4.3.95" + }, + { + "id": "B8BBFB97-F4D8-4FE1-B2CE-6590CBA2A337", + "name": "folder-heart-outline", + "codepoint": "F10EB", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Irigoyen", + "version": "4.3.95" + }, + { + "id": "95C4CD8D-86FA-4F13-91AA-3AAEF0CD5CEE", + "name": "folder-hidden", + "codepoint": "F179E", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "EF46E7D8-3062-41E5-8FC6-92D66DEF7603", + "name": "folder-home", + "codepoint": "F10B5", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Mitch Berninger", + "version": "4.2.95" + }, + { + "id": "5CFE89BB-F160-4C01-95C8-CFDF3D2099DA", + "name": "folder-home-outline", + "codepoint": "F10B6", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Mitch Berninger", + "version": "4.2.95" + }, + { + "id": "726DE98D-9BA1-4E73-8632-FF3F3768A3B3", + "name": "folder-image", + "codepoint": "F024F", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "A2C97734-F322-430B-BA09-02B0EB2D2CB5", + "name": "folder-information", + "codepoint": "F10B7", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Irigoyen", + "version": "4.2.95" + }, + { + "id": "C31ED401-6424-4436-84A8-3E82C95B1E79", + "name": "folder-information-outline", + "codepoint": "F10B8", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Irigoyen", + "version": "4.2.95" + }, + { + "id": "30D99FD0-397C-49B6-A5CE-B9D6CFD7E66E", + "name": "folder-key", + "codepoint": "F08AC", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Simran", + "version": "2.2.43" + }, + { + "id": "0C6934F1-2CC9-4689-B388-B3F2A78E026A", + "name": "folder-key-network", + "codepoint": "F08AD", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Simran", + "version": "2.2.43" + }, + { + "id": "59629095-DF90-4405-8164-0EFB00808958", + "name": "folder-key-network-outline", + "codepoint": "F0C80", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "DE3EB621-D1A5-4F61-96F4-C8794191D34F", + "name": "folder-key-outline", + "codepoint": "F10EC", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Irigoyen", + "version": "4.3.95" + }, + { + "id": "FABB67CE-5F69-4D45-95B9-02D7BFC9EABD", + "name": "folder-lock", + "codepoint": "F0250", + "aliases": [], + "tags": [ + "Lock", + "Files \/ Folders" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "F89AD3B3-DD09-44F7-81A7-0433ECD44A8F", + "name": "folder-lock-open", + "codepoint": "F0251", + "aliases": [], + "tags": [ + "Lock", + "Files \/ Folders" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "00FD0F50-240F-4654-9712-C219B0FF9A97", + "name": "folder-marker", + "codepoint": "F126D", + "aliases": [ + "folder-location" + ], + "tags": [ + "Geographic Information System", + "Files \/ Folders" + ], + "author": "Andrea Antonello", + "version": "4.7.95" + }, + { + "id": "A542AF06-5931-4B8A-8DE0-777F11304ACC", + "name": "folder-marker-outline", + "codepoint": "F126E", + "aliases": [ + "folder-location-outline" + ], + "tags": [ + "Geographic Information System", + "Files \/ Folders" + ], + "author": "Andrea Antonello", + "version": "4.7.95" + }, + { + "id": "B7AD0302-5738-4474-9679-AC118E566A7E", + "name": "folder-move", + "codepoint": "F0252", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "F3985E52-B82C-4008-98E3-48DCDBC21749", + "name": "folder-move-outline", + "codepoint": "F1246", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Sascha Wohlgemuth", + "version": "4.6.95" + }, + { + "id": "7116841C-C243-4A44-8C68-267048AAF939", + "name": "folder-multiple", + "codepoint": "F0253", + "aliases": [ + "folders" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "29BE785E-BAAB-4824-A0BF-6892D8027B1E", + "name": "folder-multiple-image", + "codepoint": "F0254", + "aliases": [ + "perm-media", + "folders-image" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "F91AD38D-33E3-46A4-83BC-17B671750D6C", + "name": "folder-multiple-outline", + "codepoint": "F0255", + "aliases": [ + "folders-outline" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "C7BBAA2A-AE24-41E9-AED3-6932D2D0CCAF", + "name": "folder-multiple-plus", + "codepoint": "F147E", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Terren", + "version": "5.3.45" + }, + { + "id": "CF776532-C79F-4319-B2FB-F9EDD407E063", + "name": "folder-multiple-plus-outline", + "codepoint": "F147F", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Terren", + "version": "5.3.45" + }, + { + "id": "4D36C1AA-F109-485C-8D3C-EDDD054057AF", + "name": "folder-music", + "codepoint": "F1359", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "\u00d6zg\u00fcr G\u00f6rg\u00fcl\u00fc", + "version": "4.9.95" + }, + { + "id": "629FB453-89C2-4B3F-A12E-2FDC427FCD0D", + "name": "folder-music-outline", + "codepoint": "F135A", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "\u00d6zg\u00fcr G\u00f6rg\u00fcl\u00fc", + "version": "4.9.95" + }, + { + "id": "7C4EED9D-D897-4B8C-9C0B-FE9A9D820A2D", + "name": "folder-network", + "codepoint": "F0870", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Simran", + "version": "2.1.99" + }, + { + "id": "1C9D27B7-BBF8-45BD-AF63-200A7E67E8DA", + "name": "folder-network-outline", + "codepoint": "F0C81", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "7BBC57AE-0EBA-4198-8B85-5082A38522DE", + "name": "folder-open", + "codepoint": "F0770", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "DFC9E65E-7019-4520-9797-418E410FEABC", + "name": "folder-open-outline", + "codepoint": "F0DCF", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Irigoyen", + "version": "3.5.94" + }, + { + "id": "0524FF60-B273-4675-9B69-043730244645", + "name": "folder-outline", + "codepoint": "F0256", + "aliases": [ + "folder-open" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "BAE32170-6509-4D1F-A6A5-A2FD1A0C679B", + "name": "folder-plus", + "codepoint": "F0257", + "aliases": [ + "create-new-folder", + "folder-add" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "5615B9DB-A490-4977-9513-B21B086BB542", + "name": "folder-plus-outline", + "codepoint": "F0B9D", + "aliases": [ + "create-new-folder-outline", + "folder-add-outline" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Google", + "version": "3.0.39" + }, + { + "id": "FEA28688-AA8C-4CEE-937C-9110076B3214", + "name": "folder-pound", + "codepoint": "F0D09", + "aliases": [ + "folder-hash" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Irigoyen", + "version": "3.3.92" + }, + { + "id": "AA3153A7-917B-4D2B-9D8E-297AE296F195", + "name": "folder-pound-outline", + "codepoint": "F0D0A", + "aliases": [ + "folder-hash-outline" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Irigoyen", + "version": "3.3.92" + }, + { + "id": "772568CD-A665-4EBA-ACEA-6D6D5D23CDFB", + "name": "folder-question", + "codepoint": "F19CA", + "aliases": [ + "folder-help" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Irigoyen", + "version": "6.6.95" + }, + { + "id": "DF184C5C-BF3B-47C7-8E37-6992E1E7480E", + "name": "folder-question-outline", + "codepoint": "F19CB", + "aliases": [ + "folder-help-outline" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Irigoyen", + "version": "6.6.95" + }, + { + "id": "9B23FB77-FAF2-4F8E-B071-D23726EA8632", + "name": "folder-refresh", + "codepoint": "F0749", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "DBC01AAD-8FE1-4668-9E76-7AF716D30C32", + "name": "folder-refresh-outline", + "codepoint": "F0542", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "3FF41316-69DC-4913-A299-84206E12FE42", + "name": "folder-remove", + "codepoint": "F0258", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "1990909C-A843-4BE0-83B9-83FB51707CAD", + "name": "folder-remove-outline", + "codepoint": "F0B9E", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Austin Andrews", + "version": "3.0.39" + }, + { + "id": "8F02F34C-2C77-43BF-BF20-5EDCA4C37A85", + "name": "folder-search", + "codepoint": "F0968", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "GreenTurtwig", + "version": "2.4.85" + }, + { + "id": "05CF7DE7-1D45-45C3-9BCC-363735A36550", + "name": "folder-search-outline", + "codepoint": "F0969", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "GreenTurtwig", + "version": "2.4.85" + }, + { + "id": "E9863879-31CD-48D3-B40B-FD49B692A787", + "name": "folder-settings", + "codepoint": "F107D", + "aliases": [], + "tags": [ + "Settings", + "Files \/ Folders" + ], + "author": "Simran", + "version": "4.2.95" + }, + { + "id": "BE00F5DD-75FB-43C5-BE8F-56117E1EC823", + "name": "folder-settings-outline", + "codepoint": "F107E", + "aliases": [], + "tags": [ + "Settings", + "Files \/ Folders" + ], + "author": "Simran", + "version": "4.2.95" + }, + { + "id": "58C8B00C-897C-4381-9AD2-33B754B96865", + "name": "folder-star", + "codepoint": "F069D", + "aliases": [ + "folder-special", + "folder-favorite" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Google", + "version": "1.7.12" + }, + { + "id": "407F7D88-25F6-4EDF-8489-3F8B7996F704", + "name": "folder-star-multiple", + "codepoint": "F13D3", + "aliases": [ + "folder-favorite-multiple" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "C7DD0CB0-EEA4-4D24-BCE2-8184382EF419", + "name": "folder-star-multiple-outline", + "codepoint": "F13D4", + "aliases": [ + "folder-favorite-multiple-outline" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "3CE11413-D500-4DFA-8913-A22A16D6DAD5", + "name": "folder-star-outline", + "codepoint": "F0B9F", + "aliases": [ + "folder-special-outline", + "folder-favorite-outline" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Google", + "version": "3.0.39" + }, + { + "id": "B8D54537-7FBC-44B4-8091-2F85D8ACF05B", + "name": "folder-swap", + "codepoint": "F0FB6", + "aliases": [ + "folder-transfer" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Richins", + "version": "4.0.96" + }, + { + "id": "EE80C9C6-6C17-4049-9C87-B6E7E3D956EA", + "name": "folder-swap-outline", + "codepoint": "F0FB7", + "aliases": [ + "folder-transfer-outline" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Richins", + "version": "4.0.96" + }, + { + "id": "8E493781-E2CB-48C6-8C07-24BD1F5F3BF0", + "name": "folder-sync", + "codepoint": "F0D0B", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Austin Andrews", + "version": "3.3.92" + }, + { + "id": "AE853799-5608-4541-BD65-C7AC6AD09256", + "name": "folder-sync-outline", + "codepoint": "F0D0C", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Austin Andrews", + "version": "3.3.92" + }, + { + "id": "58AC43F6-6A0B-43AC-B681-A68B6714B4F1", + "name": "folder-table", + "codepoint": "F12E3", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Simran", + "version": "4.8.95" + }, + { + "id": "1C994AC5-D1CA-457D-8A8C-F6E40821815F", + "name": "folder-table-outline", + "codepoint": "F12E4", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Simran", + "version": "4.8.95" + }, + { + "id": "2A24B473-B162-4B0E-9723-6867EEA702A9", + "name": "folder-text", + "codepoint": "F0C82", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Richins", + "version": "3.2.89" + }, + { + "id": "D80E4CB4-F5E6-4BA8-A8C9-B24A3C31E56F", + "name": "folder-text-outline", + "codepoint": "F0C83", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Richins", + "version": "3.2.89" + }, + { + "id": "9F84EC25-D8C7-4BB0-B39F-E71919F4EE6D", + "name": "folder-upload", + "codepoint": "F0259", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "841EF884-AC6E-4930-8DEA-6C87F91BE11F", + "name": "folder-upload-outline", + "codepoint": "F10ED", + "aliases": [], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Richins", + "version": "4.3.95" + }, + { + "id": "1573C575-7FBA-4BCD-A960-02D42043FE6F", + "name": "folder-zip", + "codepoint": "F06EB", + "aliases": [ + "compressed-folder" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Irigoyen", + "version": "1.8.36" + }, + { + "id": "55AE86E1-C6DB-4F41-BC21-1750DB608D23", + "name": "folder-zip-outline", + "codepoint": "F07B9", + "aliases": [ + "compressed-folder-outline" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Irigoyen", + "version": "2.0.46" + }, + { + "id": "0D7EBC60-1884-41C7-B37E-E0EED68E896E", + "name": "font-awesome", + "codepoint": "F003A", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "140954DE-20F5-4A8B-BFC3-DB8E49922AF3", + "name": "food", + "codepoint": "F025A", + "aliases": [ + "fast-food", + "burger", + "cup", + "drink", + "hamburger" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "D5B1A45F-8C43-4E3B-8E75-09EAF1984021", + "name": "food-apple", + "codepoint": "F025B", + "aliases": [], + "tags": [ + "Food \/ Drink", + "Agriculture" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "F1E2E692-7E18-4D28-8F6C-6E6D16161CF2", + "name": "food-apple-outline", + "codepoint": "F0C84", + "aliases": [], + "tags": [ + "Food \/ Drink", + "Agriculture" + ], + "author": "Michael Richins", + "version": "3.2.89" + }, + { + "id": "28363B2E-72C8-481E-B702-7DE52F72717C", + "name": "food-croissant", + "codepoint": "F07C8", + "aliases": [], + "tags": [ + "Food \/ Drink" + ], + "author": "Alex Efremo", + "version": "2.0.46" + }, + { + "id": "83BA130B-E603-4455-B7C6-EDE9BE1FCC7E", + "name": "food-drumstick", + "codepoint": "F141F", + "aliases": [ + "chicken-leg", + "turkey-leg", + "meat" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "BC4982E1-86E2-48A1-AE1B-8FD95D6BA850", + "name": "food-drumstick-off", + "codepoint": "F1468", + "aliases": [ + "chicken-leg-off", + "turkey-leg-off", + "meat-off" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "CC221369-59E9-45B7-9CBD-79AB2828689A", + "name": "food-drumstick-off-outline", + "codepoint": "F1469", + "aliases": [ + "chicken-leg-off-outline", + "turkey-leg-off-outline", + "meat-off-outline" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "D60C4F90-EE53-4A92-84F7-076DAC23FD31", + "name": "food-drumstick-outline", + "codepoint": "F1420", + "aliases": [ + "chicken-leg-outline", + "turkey-leg-outline", + "meat-outline" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "4CE93EC4-0938-4CB2-AB0E-0DCA0AF27B91", + "name": "food-fork-drink", + "codepoint": "F05F2", + "aliases": [ + "food-fork-cup" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "F576B145-F06D-49FA-9616-2423C5D322AD", + "name": "food-halal", + "codepoint": "F1572", + "aliases": [ + "food-muslim", + "dietary-restriction" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Haley Halcyon", + "version": "5.5.55" + }, + { + "id": "71DB0C17-56B2-4664-9AD2-BF6EDB375D59", + "name": "food-hot-dog", + "codepoint": "F184B", + "aliases": [ + "food-weiner", + "food-frankfurter" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Michael Irigoyen", + "version": "6.2.95" + }, + { + "id": "BC887CBF-E298-4E05-8C7D-B13539C4BA15", + "name": "food-kosher", + "codepoint": "F1573", + "aliases": [ + "food-jewish", + "dietary-restriction" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Haley Halcyon", + "version": "5.5.55" + }, + { + "id": "3731F58E-CAEA-4B54-87A6-7F4E039F2B31", + "name": "food-off", + "codepoint": "F05F3", + "aliases": [ + "fast-food-off", + "burger-off", + "cup-off", + "drink-off", + "hamburger-off" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "339A2EDA-7C62-4D1F-AB2E-2E5F7F5200FC", + "name": "food-off-outline", + "codepoint": "F1915", + "aliases": [], + "tags": [ + "Food \/ Drink" + ], + "author": "Google", + "version": "6.4.95" + }, + { + "id": "7E16BC17-6002-4EB2-A8FA-7982CF05426E", + "name": "food-outline", + "codepoint": "F1916", + "aliases": [], + "tags": [ + "Food \/ Drink" + ], + "author": "Google", + "version": "6.4.95" + }, + { + "id": "1A357DD0-01F0-4FF9-83D3-41B9AA22E5D1", + "name": "food-steak", + "codepoint": "F146A", + "aliases": [ + "meat", + "beef" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "A0482E2B-FA1E-4478-BA16-A7EF749920B3", + "name": "food-steak-off", + "codepoint": "F146B", + "aliases": [ + "meat-off", + "beef-off" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "12052E35-8005-45AD-8901-7861C8404EF8", + "name": "food-takeout-box", + "codepoint": "F1836", + "aliases": [], + "tags": [ + "Food \/ Drink" + ], + "author": "Google", + "version": "6.2.95" + }, + { + "id": "BEF6335C-F745-472D-9C83-F0ED033B38B6", + "name": "food-takeout-box-outline", + "codepoint": "F1837", + "aliases": [], + "tags": [ + "Food \/ Drink" + ], + "author": "Google", + "version": "6.2.95" + }, + { + "id": "D5900301-8742-4D92-8E56-525DCDE97E0F", + "name": "food-turkey", + "codepoint": "F171C", + "aliases": [ + "dinner", + "thanksgiving" + ], + "tags": [ + "Food \/ Drink", + "Holiday" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "1D25DDEC-2656-4729-BEBD-BB17F972DD09", + "name": "food-variant", + "codepoint": "F025C", + "aliases": [], + "tags": [ + "Food \/ Drink" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "C24FE6CB-D1AA-4BAB-BB6B-956307D28D1D", + "name": "food-variant-off", + "codepoint": "F13E5", + "aliases": [], + "tags": [ + "Food \/ Drink" + ], + "author": "Simran", + "version": "5.1.45" + }, + { + "id": "DAAA09E2-055A-4D74-BF60-C46DC6019035", + "name": "foot-print", + "codepoint": "F0F52", + "aliases": [], + "tags": [], + "author": "aardloper", + "version": "3.9.97" + }, + { + "id": "3C0488C6-E807-401D-9689-7770550EC2E7", + "name": "football", + "codepoint": "F025D", + "aliases": [ + "football-american" + ], + "tags": [ + "Sport" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "97B1FB51-7C30-4B83-AEED-95700B38F65F", + "name": "football-australian", + "codepoint": "F025E", + "aliases": [], + "tags": [ + "Sport" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "8F719D4B-9A91-46E1-81B0-00C23AA0D313", + "name": "football-helmet", + "codepoint": "F025F", + "aliases": [], + "tags": [ + "Sport" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "70EFA358-6CE3-4CC1-9F46-6283D491F2E2", + "name": "forest", + "codepoint": "F1897", + "aliases": [ + "pine-tree" + ], + "tags": [ + "Nature" + ], + "author": "Google", + "version": "6.2.95" + }, + { + "id": "9CB941AF-8C23-4201-B891-A23521B011CD", + "name": "forklift", + "codepoint": "F07C9", + "aliases": [], + "tags": [ + "Transportation + Road" + ], + "author": "GreenTurtwig", + "version": "2.0.46" + }, + { + "id": "34C52C66-C35A-470B-A618-303A8B0DBD17", + "name": "form-dropdown", + "codepoint": "F1400", + "aliases": [], + "tags": [ + "Form" + ], + "author": "Charlie Davis", + "version": "5.1.45" + }, + { + "id": "09F44862-B3EA-4F67-8C4F-67C830FC8CF3", + "name": "form-select", + "codepoint": "F1401", + "aliases": [], + "tags": [ + "Form" + ], + "author": "Charlie Davis", + "version": "5.1.45" + }, + { + "id": "9C901687-3535-4B54-B963-7E92EB9CE229", + "name": "form-textarea", + "codepoint": "F1095", + "aliases": [], + "tags": [ + "Form" + ], + "author": "Michael Richins", + "version": "4.2.95" + }, + { + "id": "BB7E18FD-F473-4A80-B6A9-A17D3648E0A4", + "name": "form-textbox", + "codepoint": "F060E", + "aliases": [ + "rename" + ], + "tags": [ + "Form" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "32C3C391-9B80-4659-BCB3-6653FE4E5108", + "name": "form-textbox-lock", + "codepoint": "F135D", + "aliases": [], + "tags": [ + "Form", + "Lock" + ], + "author": "Austin Andrews", + "version": "4.9.95" + }, + { + "id": "F35B5B3C-762F-473C-B229-B6818D50E045", + "name": "form-textbox-password", + "codepoint": "F07F5", + "aliases": [], + "tags": [ + "Form" + ], + "author": "Michael Richins", + "version": "2.0.46" + }, + { + "id": "CF22AACF-228D-4C3A-9BE7-D5DE853A0139", + "name": "format-align-bottom", + "codepoint": "F0753", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "9B295DCA-8352-407E-84F1-34890975D010", + "name": "format-align-center", + "codepoint": "F0260", + "aliases": [ + "format-align-centre" + ], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "521B67DD-EC96-4B1D-B884-BE155D850F85", + "name": "format-align-justify", + "codepoint": "F0261", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "56F0424F-3D53-486E-BC4C-0738457ACBA8", + "name": "format-align-left", + "codepoint": "F0262", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "59384E78-B7EF-4BDA-B537-35E537C00130", + "name": "format-align-middle", + "codepoint": "F0754", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "7289388F-3768-4833-B282-0662FD9B9A73", + "name": "format-align-right", + "codepoint": "F0263", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "71140AD8-A0A6-45DD-9414-5DB2FBC875F1", + "name": "format-align-top", + "codepoint": "F0755", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "55770606-AFB4-441F-B3AA-2CDE46136F4B", + "name": "format-annotation-minus", + "codepoint": "F0ABC", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Michael Irigoyen", + "version": "2.7.94" + }, + { + "id": "591A45AB-511C-4791-957C-303186C666AA", + "name": "format-annotation-plus", + "codepoint": "F0646", + "aliases": [ + "format-annotation-add" + ], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Kai Faust", + "version": "1.6.50" + }, + { + "id": "2107C153-0FEC-4171-8602-6549ACABA768", + "name": "format-bold", + "codepoint": "F0264", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "D5213C5D-AC53-40A5-BBCC-C8B3F849D6B4", + "name": "format-clear", + "codepoint": "F0265", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "C4E2DE69-EC92-490F-814A-5D8A20E7E595", + "name": "format-color-fill", + "codepoint": "F0266", + "aliases": [ + "format-colour-fill", + "paint", + "paint-bucket", + "ink-color", + "ink-colour" + ], + "tags": [ + "Text \/ Content \/ Format", + "Color" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "3681D567-0B40-47FF-843A-3258A16F935B", + "name": "format-color-highlight", + "codepoint": "F0E31", + "aliases": [ + "format-colour-highlight" + ], + "tags": [ + "Color", + "Text \/ Content \/ Format" + ], + "author": "Austin Andrews", + "version": "3.6.95" + }, + { + "id": "C6D32152-B2F3-43D3-A78E-D69CBDC5E054", + "name": "format-color-marker-cancel", + "codepoint": "F1313", + "aliases": [ + "format-color-redact" + ], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "D28EF658-3CE7-4F5B-99B3-50F60F5B0BA0", + "name": "format-color-text", + "codepoint": "F069E", + "aliases": [ + "format-colour-text" + ], + "tags": [ + "Text \/ Content \/ Format", + "Color" + ], + "author": "Google", + "version": "1.7.12" + }, + { + "id": "FB93EA15-A9E8-432C-BC34-419DDCE44E3B", + "name": "format-columns", + "codepoint": "F08DF", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Peter Noble", + "version": "2.3.50" + }, + { + "id": "3BC78F10-A7C3-4F15-9328-138E35CFC259", + "name": "format-float-center", + "codepoint": "F0267", + "aliases": [ + "format-float-centre" + ], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Andreas Gohr", + "version": "1.5.54" + }, + { + "id": "E595D32A-5108-4E9A-BF98-52DEFC1A50EE", + "name": "format-float-left", + "codepoint": "F0268", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Andreas Gohr", + "version": "1.5.54" + }, + { + "id": "22DE1517-7E6C-43B9-B0E1-F3EDAEFE6398", + "name": "format-float-none", + "codepoint": "F0269", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Andreas Gohr", + "version": "1.5.54" + }, + { + "id": "8F5AF64B-3A3D-449C-9FCC-374EAF6D523C", + "name": "format-float-right", + "codepoint": "F026A", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Andreas Gohr", + "version": "1.5.54" + }, + { + "id": "C7D57EF8-207C-48F9-953A-EAFB03308A1E", + "name": "format-font", + "codepoint": "F06D6", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Haley Halcyon", + "version": "1.8.36" + }, + { + "id": "4FA696A5-8843-4E3F-B9BF-5BCF5B6C4D2C", + "name": "format-font-size-decrease", + "codepoint": "F09F3", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Michael Irigoyen", + "version": "2.5.94" + }, + { + "id": "934DCE7F-D2A8-40F5-B945-A35DBD3F207B", + "name": "format-font-size-increase", + "codepoint": "F09F4", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Michael Irigoyen", + "version": "2.5.94" + }, + { + "id": "F64E046B-8690-4ACF-90F7-98896159BB34", + "name": "format-header-1", + "codepoint": "F026B", + "aliases": [ + "format-heading-1" + ], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "00E2A358-A6A9-493C-BFC2-A259AA0092CF", + "name": "format-header-2", + "codepoint": "F026C", + "aliases": [ + "format-heading-2" + ], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "EE76BE9D-B10D-43C8-9B5A-746BE228C344", + "name": "format-header-3", + "codepoint": "F026D", + "aliases": [ + "format-heading-3" + ], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "CC669D6C-53AD-43C2-A660-EFF783847D6F", + "name": "format-header-4", + "codepoint": "F026E", + "aliases": [ + "format-heading-4" + ], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "FFC1FF08-CEFF-4623-B715-4731CDEF27D4", + "name": "format-header-5", + "codepoint": "F026F", + "aliases": [ + "format-heading-5" + ], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "854D0158-05E0-47A7-8E6E-2F66DCD415EE", + "name": "format-header-6", + "codepoint": "F0270", + "aliases": [ + "format-heading-6" + ], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "CF17BB12-9537-4F2E-9E88-3E1DE3D0DCE6", + "name": "format-header-decrease", + "codepoint": "F0271", + "aliases": [ + "format-heading-decease" + ], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Andreas Gohr", + "version": "1.5.54" + }, + { + "id": "99554AA1-419F-420F-9AEB-0826D411B420", + "name": "format-header-equal", + "codepoint": "F0272", + "aliases": [ + "format-heading-equal" + ], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Andreas Gohr", + "version": "1.5.54" + }, + { + "id": "20BCC8DA-F055-46B0-9C27-68791E3BA80E", + "name": "format-header-increase", + "codepoint": "F0273", + "aliases": [ + "format-heading-increase" + ], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Andreas Gohr", + "version": "1.5.54" + }, + { + "id": "C632F7EE-B560-4FAA-802E-968DAB3EA979", + "name": "format-header-pound", + "codepoint": "F0274", + "aliases": [ + "format-header-hash", + "format-heading-pound", + "format-heading-hash", + "format-heading-markdown" + ], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "83EE24A9-9D1A-45AA-B4CD-F75F1174F0EB", + "name": "format-horizontal-align-center", + "codepoint": "F061E", + "aliases": [ + "format-horizontal-align-centre", + "arrow-horizontal-collapse" + ], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Austin Andrews", + "version": "1.6.50" + }, + { + "id": "AEA5545F-4C74-4A14-8F9E-92CC258216AD", + "name": "format-horizontal-align-left", + "codepoint": "F061F", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Austin Andrews", + "version": "1.6.50" + }, + { + "id": "7EFCB642-F9B5-41C8-B2CF-2566C6AC45C2", + "name": "format-horizontal-align-right", + "codepoint": "F0620", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Austin Andrews", + "version": "1.6.50" + }, + { + "id": "148FD97C-E3C6-4E41-87B8-488036159CC6", + "name": "format-indent-decrease", + "codepoint": "F0275", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "18B9F49B-7A69-4E93-AEA6-8CB30F22E100", + "name": "format-indent-increase", + "codepoint": "F0276", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "F766C5E3-1BBB-4ADE-9D33-170A223DB6F9", + "name": "format-italic", + "codepoint": "F0277", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "B9EB5A17-979C-47C5-8F20-E2436511E0C4", + "name": "format-letter-case", + "codepoint": "F0B34", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Austin Andrews", + "version": "2.8.94" + }, + { + "id": "79F06165-5718-4618-8056-1BEB689BF7CF", + "name": "format-letter-case-lower", + "codepoint": "F0B35", + "aliases": [ + "format-lowercase" + ], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Austin Andrews", + "version": "2.8.94" + }, + { + "id": "0C748102-1ABB-4762-A407-B64C960618D7", + "name": "format-letter-case-upper", + "codepoint": "F0B36", + "aliases": [ + "format-uppercase" + ], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Austin Andrews", + "version": "2.8.94" + }, + { + "id": "B2B22BA8-6F5A-45F8-9A48-B6CC932DFD62", + "name": "format-letter-ends-with", + "codepoint": "F0FB8", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Simran", + "version": "4.0.96" + }, + { + "id": "62D729FA-8643-4FAF-9D2D-176AE4ED3774", + "name": "format-letter-matches", + "codepoint": "F0FB9", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Simran", + "version": "4.0.96" + }, + { + "id": "868506A4-50DB-4C9C-9CEA-278969298EF4", + "name": "format-letter-spacing", + "codepoint": "F1956", + "aliases": [ + "format-kerning" + ], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "870F391E-A069-461E-9296-904B34308D98", + "name": "format-letter-starts-with", + "codepoint": "F0FBA", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Simran", + "version": "4.0.96" + }, + { + "id": "24F69EED-721D-48A1-BA3C-3C1657B65C04", + "name": "format-line-spacing", + "codepoint": "F0278", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "2E9CEB4F-7C1F-4572-9A8E-830A3258407A", + "name": "format-line-style", + "codepoint": "F05C8", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format", + "Drawing \/ Art" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "1BA8A6A0-348E-4268-B02B-6708E1E30373", + "name": "format-line-weight", + "codepoint": "F05C9", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format", + "Drawing \/ Art" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "2FBAE8A7-BAC7-44C8-85DC-EB458871BF29", + "name": "format-list-bulleted", + "codepoint": "F0279", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "4AA98685-EEBB-4816-801E-3B12DCB4413F", + "name": "format-list-bulleted-square", + "codepoint": "F0DD0", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "3.5.94" + }, + { + "id": "C436DF00-A54E-48D1-9A4A-EA21A90E4FF5", + "name": "format-list-bulleted-triangle", + "codepoint": "F0EB2", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Michael Richins", + "version": "3.7.94" + }, + { + "id": "535ABAF7-65D8-4CAB-A3B0-D5B732B6C36F", + "name": "format-list-bulleted-type", + "codepoint": "F027A", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "45A8DC8E-AD79-4205-AC8B-4BCC17B6F465", + "name": "format-list-checkbox", + "codepoint": "F096A", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "2.4.85" + }, + { + "id": "2B19EECF-71BF-41F3-B62A-468607BA0B47", + "name": "format-list-checks", + "codepoint": "F0756", + "aliases": [ + "to-do" + ], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "894BF6B9-23A6-4C91-813C-9867E63DA5AD", + "name": "format-list-group", + "codepoint": "F1860", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Austin Andrews", + "version": "6.2.95" + }, + { + "id": "EFEB4AB3-780B-4C2D-B673-36BB0A4FE0B2", + "name": "format-list-numbered", + "codepoint": "F027B", + "aliases": [ + "format-list-numbers" + ], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "8480FB3F-93B8-4445-BE6D-56A47441D6A6", + "name": "format-list-numbered-rtl", + "codepoint": "F0D0D", + "aliases": [ + "format-list-numbered-right-to-left" + ], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "3.3.92" + }, + { + "id": "5458AB97-471F-4A96-92E0-FB0AE72AFF33", + "name": "format-list-text", + "codepoint": "F126F", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Yaroslav Bandura", + "version": "4.7.95" + }, + { + "id": "5D87D3E1-C59B-47A2-9ADE-C96FF1C7CA21", + "name": "format-overline", + "codepoint": "F0EB3", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Michael", + "version": "3.7.94" + }, + { + "id": "4C2390EF-6AE7-4868-945B-AACD2E581F46", + "name": "format-page-break", + "codepoint": "F06D7", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "1.8.36" + }, + { + "id": "841FF2DA-C31C-48B1-A566-10238590DAF9", + "name": "format-page-split", + "codepoint": "F1917", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "70232BC6-D883-48CD-B992-9EE1DABEBFD7", + "name": "format-paint", + "codepoint": "F027C", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format", + "Color", + "Drawing \/ Art" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "252574CE-020B-461A-995B-D4BA81741BBC", + "name": "format-paragraph", + "codepoint": "F027D", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "9AF465C3-5FEF-48E4-8D38-5A5A3D2A9799", + "name": "format-pilcrow", + "codepoint": "F06D8", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Michael Richins", + "version": "1.8.36" + }, + { + "id": "0450C081-EE6B-4CB1-A7F7-B6F0F524CA99", + "name": "format-quote-close", + "codepoint": "F027E", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "55118B26-26AC-43F3-B85C-1FF22306A77E", + "name": "format-quote-close-outline", + "codepoint": "F11A8", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Simran", + "version": "4.5.95" + }, + { + "id": "CF5D126B-7DC1-4BE7-B5A1-E31B715EDBAA", + "name": "format-quote-open", + "codepoint": "F0757", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "B9143BB9-06E0-40A3-8B38-D0687A1BEA69", + "name": "format-quote-open-outline", + "codepoint": "F11A7", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Simran", + "version": "4.5.95" + }, + { + "id": "99448D5B-50D3-4F49-8E88-DD75F7DFB231", + "name": "format-rotate-90", + "codepoint": "F06AA", + "aliases": [ + "rotate-90-degrees-ccw", + "format-rotate-ninety" + ], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "1.7.12" + }, + { + "id": "6F0198AB-0903-4B36-AC27-B72EBC7A8A83", + "name": "format-section", + "codepoint": "F069F", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Michael Richins", + "version": "1.7.12" + }, + { + "id": "3F6E54F6-CF3E-46C8-BD72-A9BCF6DCF80C", + "name": "format-size", + "codepoint": "F027F", + "aliases": [ + "font-size" + ], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "0BE83BB5-3D22-478D-AAC2-F586A4E5FA69", + "name": "format-strikethrough", + "codepoint": "F0280", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "CB728339-FA66-440F-9E88-8A6FFE827EA1", + "name": "format-strikethrough-variant", + "codepoint": "F0281", + "aliases": [ + "strikethrough-s" + ], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "4765CE92-9095-4C00-9137-1C35761C7B59", + "name": "format-subscript", + "codepoint": "F0282", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "41BF2594-97C2-481A-AA66-029CE1BF4C2D", + "name": "format-superscript", + "codepoint": "F0283", + "aliases": [ + "exponent" + ], + "tags": [ + "Text \/ Content \/ Format", + "Math" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "FE7F03F1-79D3-4113-A35E-088C3F2AB8AD", + "name": "format-text", + "codepoint": "F0284", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "C40131F3-E8A5-44CB-90A0-E230114C0DC3", + "name": "format-text-rotation-angle-down", + "codepoint": "F0FBB", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "4.0.96" + }, + { + "id": "9C650D6F-20FE-4496-8973-B19509A47A18", + "name": "format-text-rotation-angle-up", + "codepoint": "F0FBC", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "4.0.96" + }, + { + "id": "580E85A8-696F-46FE-B141-F13A94078F22", + "name": "format-text-rotation-down", + "codepoint": "F0D73", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "3.4.93" + }, + { + "id": "D6CC1545-8778-4A0D-9B2B-7A34DB91ADD9", + "name": "format-text-rotation-down-vertical", + "codepoint": "F0FBD", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Michael Irigoyen", + "version": "4.0.96" + }, + { + "id": "D5935D28-A7D0-4F35-9917-625E5A9666CD", + "name": "format-text-rotation-none", + "codepoint": "F0D74", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "3.4.93" + }, + { + "id": "2A113842-ED83-4F44-B7DE-A0AFF5DDB452", + "name": "format-text-rotation-up", + "codepoint": "F0FBE", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "4.0.96" + }, + { + "id": "A8232518-D348-46AF-953C-907F7F0F3D51", + "name": "format-text-rotation-vertical", + "codepoint": "F0FBF", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "4.0.96" + }, + { + "id": "E79B26A6-CAA3-4CD8-B5C8-1D5797C4C765", + "name": "format-text-variant", + "codepoint": "F0E32", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Michael Irigoyen", + "version": "3.6.95" + }, + { + "id": "98078792-391E-4CB0-8C7A-8F76868FA289", + "name": "format-text-variant-outline", + "codepoint": "F150F", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Haley Halcyon", + "version": "5.4.55" + }, + { + "id": "DD6BADDA-B656-424C-AF6D-509CB7E382D2", + "name": "format-text-wrapping-clip", + "codepoint": "F0D0E", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "3.3.92" + }, + { + "id": "EF57DF3A-9441-45FD-B124-5247DB8E04C2", + "name": "format-text-wrapping-overflow", + "codepoint": "F0D0F", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "3.3.92" + }, + { + "id": "AB362496-50E2-4978-BA63-41F90057BB64", + "name": "format-text-wrapping-wrap", + "codepoint": "F0D10", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "3.3.92" + }, + { + "id": "8A502343-16E9-4FF5-A0FE-28328B37E7C2", + "name": "format-textbox", + "codepoint": "F0D11", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "3.3.92" + }, + { + "id": "D6B79C3B-22FB-4B52-90B8-6979AB48C3E8", + "name": "format-textdirection-l-to-r", + "codepoint": "F0285", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "C317FCCF-DCDB-4429-B1A7-850FED29F5B3", + "name": "format-textdirection-r-to-l", + "codepoint": "F0286", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "4B4B86CC-C989-4629-9B9D-C31243A29DB9", + "name": "format-title", + "codepoint": "F05F4", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "DD218F3D-C302-477A-9B9F-482813328DE6", + "name": "format-underline", + "codepoint": "F0287", + "aliases": [ + "format-underlined" + ], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "27068E58-4DC3-4C61-96A2-876C621B6039", + "name": "format-underline-wavy", + "codepoint": "F18E9", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Michael Irigoyen", + "version": "6.3.95" + }, + { + "id": "723F4461-61B3-4D53-A03D-302F5D9401E1", + "name": "format-vertical-align-bottom", + "codepoint": "F0621", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "1.6.50" + }, + { + "id": "4C8985BA-B48F-4015-9389-35672ECDE544", + "name": "format-vertical-align-center", + "codepoint": "F0622", + "aliases": [ + "format-vertical-align-centre", + "arrow-vertical-collapse" + ], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "1.6.50" + }, + { + "id": "06A3A04F-F7F7-4707-86FC-5DEBA497B79E", + "name": "format-vertical-align-top", + "codepoint": "F0623", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "1.6.50" + }, + { + "id": "556AFB1F-1857-4CB9-94B8-2E7E8A8DD292", + "name": "format-wrap-inline", + "codepoint": "F0288", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Andreas Gohr", + "version": "1.5.54" + }, + { + "id": "D5787449-1950-4A7C-8CD9-CABC628AFBCE", + "name": "format-wrap-square", + "codepoint": "F0289", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Andreas Gohr", + "version": "1.5.54" + }, + { + "id": "4AA96763-2A6C-4BF0-BA64-32AD08B530F6", + "name": "format-wrap-tight", + "codepoint": "F028A", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Andreas Gohr", + "version": "1.5.54" + }, + { + "id": "0378C7CD-8331-42A0-9C0F-114960FD5966", + "name": "format-wrap-top-bottom", + "codepoint": "F028B", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Andreas Gohr", + "version": "1.5.54" + }, + { + "id": "3AC84477-2308-4445-868C-9666AE25B054", + "name": "forum", + "codepoint": "F028C", + "aliases": [ + "message-group", + "question-answer", + "chat" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "E6469D88-74CE-4242-8226-85BB8F8EFFB0", + "name": "forum-outline", + "codepoint": "F0822", + "aliases": [ + "chat-outline" + ], + "tags": [], + "author": "Google", + "version": "2.1.19" + }, + { + "id": "EAE07425-A6D5-4B33-A9C5-6D7E9E9E1908", + "name": "forward", + "codepoint": "F028D", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "A626AD09-C436-4622-905C-9C7E8164CD54", + "name": "forwardburger", + "codepoint": "F0D75", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.4.93" + }, + { + "id": "9267CA84-62FD-4346-BCA8-42B4617CCB43", + "name": "fountain", + "codepoint": "F096B", + "aliases": [], + "tags": [], + "author": "Augustin Ursu", + "version": "2.4.85" + }, + { + "id": "E7415545-8386-424D-8CF5-933EE43D74CB", + "name": "fountain-pen", + "codepoint": "F0D12", + "aliases": [], + "tags": [ + "Drawing \/ Art" + ], + "author": "Michael Irigoyen", + "version": "3.3.92" + }, + { + "id": "892B5243-DF37-4511-B4A1-1D688A39ED52", + "name": "fountain-pen-tip", + "codepoint": "F0D13", + "aliases": [], + "tags": [ + "Drawing \/ Art" + ], + "author": "Michael Irigoyen", + "version": "3.3.92" + }, + { + "id": "2B87DDFB-9230-4374-BE31-996E5D21639C", + "name": "fraction-one-half", + "codepoint": "F1992", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.5.95" + }, + { + "id": "54CA035A-3BAB-4349-8FD1-D50A1990D301", + "name": "freebsd", + "codepoint": "F08E0", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "2.3.50" + }, + { + "id": "C7BD4B3A-4B63-4FDE-99D5-87B4DA460492", + "name": "french-fries", + "codepoint": "F1957", + "aliases": [ + "chips", + "finger-chips", + "french-fry", + "fried-potatoes", + "fries", + "frites" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Colton Wiscombe", + "version": "6.4.95" + }, + { + "id": "A53E5953-2094-419A-A418-57BE05F751C8", + "name": "frequently-asked-questions", + "codepoint": "F0EB4", + "aliases": [ + "faq" + ], + "tags": [], + "author": "Austin Andrews", + "version": "3.7.94" + }, + { + "id": "148520BB-2172-4261-9336-3E85E5131869", + "name": "fridge", + "codepoint": "F0290", + "aliases": [ + "fridge-filled", + "refrigerator" + ], + "tags": [ + "Home Automation" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "032BF3C7-46C6-40D8-BBD4-4CDE8CBCC48B", + "name": "fridge-alert", + "codepoint": "F11B1", + "aliases": [], + "tags": [ + "Home Automation", + "Alert \/ Error" + ], + "author": "Michael Irigoyen", + "version": "4.5.95" + }, + { + "id": "9BC979D8-9012-4CB1-A041-7A19ADC8E08D", + "name": "fridge-alert-outline", + "codepoint": "F11B2", + "aliases": [], + "tags": [ + "Home Automation", + "Alert \/ Error" + ], + "author": "Michael Irigoyen", + "version": "4.5.95" + }, + { + "id": "F88B80D0-1521-48F8-BC15-94BA5F14BFC1", + "name": "fridge-bottom", + "codepoint": "F0292", + "aliases": [ + "fridge-filled-top", + "refrigerator-bottom" + ], + "tags": [ + "Home Automation" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "48D0CA48-04CB-4C87-8F19-DBD5286A6E7B", + "name": "fridge-industrial", + "codepoint": "F15EE", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Colton Wiscombe", + "version": "5.6.55" + }, + { + "id": "3A45CCD3-F520-4A5D-BF83-2F0C28F66337", + "name": "fridge-industrial-alert", + "codepoint": "F15EF", + "aliases": [], + "tags": [ + "Home Automation", + "Alert \/ Error" + ], + "author": "Colton Wiscombe", + "version": "5.6.55" + }, + { + "id": "8AAF0069-BCC9-4922-A32B-C1625C27AF98", + "name": "fridge-industrial-alert-outline", + "codepoint": "F15F0", + "aliases": [], + "tags": [ + "Home Automation", + "Alert \/ Error" + ], + "author": "Colton Wiscombe", + "version": "5.6.55" + }, + { + "id": "6670F529-AA9D-41B4-9D0B-D435209CE045", + "name": "fridge-industrial-off", + "codepoint": "F15F1", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Colton Wiscombe", + "version": "5.6.55" + }, + { + "id": "5A046326-A491-45B3-A524-E9CA61BC7255", + "name": "fridge-industrial-off-outline", + "codepoint": "F15F2", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Colton Wiscombe", + "version": "5.6.55" + }, + { + "id": "C3B23703-739D-45E6-9FEB-CEB630D638CC", + "name": "fridge-industrial-outline", + "codepoint": "F15F3", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Colton Wiscombe", + "version": "5.6.55" + }, + { + "id": "417BCDA5-DCA7-4EFF-B2BF-670E9DD10961", + "name": "fridge-off", + "codepoint": "F11AF", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "4.5.95" + }, + { + "id": "4430029A-EC83-4078-A287-AD986DE6B2AE", + "name": "fridge-off-outline", + "codepoint": "F11B0", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "4.5.95" + }, + { + "id": "214668FF-C50D-4D69-B916-AE66E73CB3B0", + "name": "fridge-outline", + "codepoint": "F028F", + "aliases": [ + "kitchen", + "refrigerator-outline" + ], + "tags": [ + "Home Automation" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "3D6FCDAF-F7F8-42C2-87C6-6DF36EB8C935", + "name": "fridge-top", + "codepoint": "F0291", + "aliases": [ + "fridge-filled-bottom", + "refrigerator-top" + ], + "tags": [ + "Home Automation" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "3066672D-30F0-44BF-B396-C0A2E5BCC1FF", + "name": "fridge-variant", + "codepoint": "F15F4", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Colton Wiscombe", + "version": "5.6.55" + }, + { + "id": "091DA8FF-AD64-4F13-BF05-E21B39C1E171", + "name": "fridge-variant-alert", + "codepoint": "F15F5", + "aliases": [], + "tags": [ + "Home Automation", + "Alert \/ Error" + ], + "author": "Colton Wiscombe", + "version": "5.6.55" + }, + { + "id": "782A053A-D6FF-4B8E-B3A2-4ADCB6A7BA9A", + "name": "fridge-variant-alert-outline", + "codepoint": "F15F6", + "aliases": [], + "tags": [ + "Home Automation", + "Alert \/ Error" + ], + "author": "Colton Wiscombe", + "version": "5.6.55" + }, + { + "id": "99BB3B9D-0011-4493-B80C-539874638521", + "name": "fridge-variant-off", + "codepoint": "F15F7", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Colton Wiscombe", + "version": "5.6.55" + }, + { + "id": "7B4DCE91-4647-4646-A93C-D7542FEAC5AC", + "name": "fridge-variant-off-outline", + "codepoint": "F15F8", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Colton Wiscombe", + "version": "5.6.55" + }, + { + "id": "B1E31148-2318-459A-AA91-1C87D306D71A", + "name": "fridge-variant-outline", + "codepoint": "F15F9", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Colton Wiscombe", + "version": "5.6.55" + }, + { + "id": "11A7EAA3-B398-4F36-80B0-A4C50965E812", + "name": "fruit-cherries", + "codepoint": "F1042", + "aliases": [], + "tags": [ + "Food \/ Drink", + "Agriculture" + ], + "author": "Michael Irigoyen", + "version": "4.1.95" + }, + { + "id": "693BA957-6E56-406A-B061-CCA1B916E408", + "name": "fruit-cherries-off", + "codepoint": "F13F8", + "aliases": [], + "tags": [ + "Food \/ Drink", + "Agriculture" + ], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "1F2DF3F1-F380-491D-BC09-B3262612DF23", + "name": "fruit-citrus", + "codepoint": "F1043", + "aliases": [ + "fruit-lemon", + "fruit-lime" + ], + "tags": [ + "Food \/ Drink", + "Agriculture" + ], + "author": "Michael Irigoyen", + "version": "4.1.95" + }, + { + "id": "AA24652D-2BA2-4C09-87A4-9E71C1A18CA9", + "name": "fruit-citrus-off", + "codepoint": "F13F9", + "aliases": [], + "tags": [ + "Food \/ Drink", + "Agriculture" + ], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "C2A76F16-19FC-4D88-B131-B90E5B3ED517", + "name": "fruit-grapes", + "codepoint": "F1044", + "aliases": [], + "tags": [ + "Food \/ Drink", + "Agriculture" + ], + "author": "Michael Irigoyen", + "version": "4.1.95" + }, + { + "id": "D2E95893-08FB-4C63-9420-AD5C890EBAE6", + "name": "fruit-grapes-outline", + "codepoint": "F1045", + "aliases": [], + "tags": [ + "Food \/ Drink", + "Agriculture" + ], + "author": "Michael Irigoyen", + "version": "4.1.95" + }, + { + "id": "F28FDEF7-E169-45AA-84E7-13DB0A6CA241", + "name": "fruit-pineapple", + "codepoint": "F1046", + "aliases": [ + "fruit-ananas" + ], + "tags": [ + "Food \/ Drink", + "Agriculture" + ], + "author": "Michael Irigoyen", + "version": "4.1.95" + }, + { + "id": "0219370F-F54F-444F-8312-288CB435784E", + "name": "fruit-watermelon", + "codepoint": "F1047", + "aliases": [], + "tags": [ + "Food \/ Drink", + "Agriculture" + ], + "author": "Michael Irigoyen", + "version": "4.1.95" + }, + { + "id": "8E016660-0C3A-46EA-B3A5-8DC490238EC7", + "name": "fuel", + "codepoint": "F07CA", + "aliases": [ + "petrol", + "gasoline" + ], + "tags": [ + "Automotive" + ], + "author": "Haley Halcyon", + "version": "2.0.46" + }, + { + "id": "AF7C2BB9-3C7B-4309-89BD-58158E0CDF2A", + "name": "fuel-cell", + "codepoint": "F18B5", + "aliases": [ + "battery" + ], + "tags": [ + "Automotive" + ], + "author": "Hans B\u00f6hm", + "version": "6.3.95" + }, + { + "id": "A4F7E2E4-704C-4A71-99D5-4BD19AD8E755", + "name": "fullscreen", + "codepoint": "F0293", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "CE6DC9C1-A636-4B3E-B838-34069330D3B2", + "name": "fullscreen-exit", + "codepoint": "F0294", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "76B75225-53BF-4523-BD48-CB555FFF0C67", + "name": "function", + "codepoint": "F0295", + "aliases": [], + "tags": [ + "Math" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "8424F867-9F66-42FB-92D3-91724FB2CA38", + "name": "function-variant", + "codepoint": "F0871", + "aliases": [], + "tags": [ + "Math" + ], + "author": "Michael Richins", + "version": "2.1.99" + }, + { + "id": "D9CC1449-7E53-4305-A521-C4E705390012", + "name": "furigana-horizontal", + "codepoint": "F1081", + "aliases": [ + "ruby-horizontal" + ], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Haley Halcyon", + "version": "4.2.95" + }, + { + "id": "68042B53-6F94-4EE1-A40D-9415AE0EE14A", + "name": "furigana-vertical", + "codepoint": "F1082", + "aliases": [ + "zhuyin", + "ruby-vertical" + ], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Haley Halcyon", + "version": "4.2.95" + }, + { + "id": "E1A77AA6-9DC6-49C8-8049-89EEE3545A4A", + "name": "fuse", + "codepoint": "F0C85", + "aliases": [], + "tags": [ + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "EDE0F403-427B-468D-9CCA-75608159964C", + "name": "fuse-alert", + "codepoint": "F142D", + "aliases": [], + "tags": [ + "Automotive", + "Alert \/ Error" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "84BD762F-B0EC-4195-A6E2-7BF1E9386AE6", + "name": "fuse-blade", + "codepoint": "F0C86", + "aliases": [], + "tags": [ + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "174BB611-F232-474B-B563-DCC770985930", + "name": "fuse-off", + "codepoint": "F142C", + "aliases": [], + "tags": [ + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "5C29EFA9-0FF3-4101-BC87-C9C15ACBA7AB", + "name": "gamepad", + "codepoint": "F0296", + "aliases": [ + "games", + "controller" + ], + "tags": [ + "Home Automation", + "Gaming \/ RPG" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "C2CE3BF5-B623-4170-AD29-CAC89C4EBB93", + "name": "gamepad-circle", + "codepoint": "F0E33", + "aliases": [ + "controller-circle" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Haley Halcyon", + "version": "3.6.95" + }, + { + "id": "A7E881F0-76BD-4711-A238-5ECAEA02EAFC", + "name": "gamepad-circle-down", + "codepoint": "F0E34", + "aliases": [ + "controller-circle-down" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Haley Halcyon", + "version": "3.6.95" + }, + { + "id": "AE90913A-5172-4699-98FC-7B935C753E1E", + "name": "gamepad-circle-left", + "codepoint": "F0E35", + "aliases": [ + "controller-circle-left" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Haley Halcyon", + "version": "3.6.95" + }, + { + "id": "D227F063-202F-4B7D-9175-790055F07506", + "name": "gamepad-circle-outline", + "codepoint": "F0E36", + "aliases": [ + "controller-circle-outline" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Haley Halcyon", + "version": "3.6.95" + }, + { + "id": "97C7D65D-6073-473D-9D21-7DCB3CA7556D", + "name": "gamepad-circle-right", + "codepoint": "F0E37", + "aliases": [ + "controller-circle-right" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Haley Halcyon", + "version": "3.6.95" + }, + { + "id": "233618F0-A837-4938-AEF8-93DA6A92A70E", + "name": "gamepad-circle-up", + "codepoint": "F0E38", + "aliases": [ + "controller-circle-up" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Haley Halcyon", + "version": "3.6.95" + }, + { + "id": "E007AB79-ED6E-4746-9D55-A35F6BD2C93C", + "name": "gamepad-down", + "codepoint": "F0E39", + "aliases": [ + "controller-down" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "GreenTurtwig", + "version": "3.6.95" + }, + { + "id": "D8A2D400-73A0-467E-9144-581D51735E0F", + "name": "gamepad-left", + "codepoint": "F0E3A", + "aliases": [ + "controller-left" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "GreenTurtwig", + "version": "3.6.95" + }, + { + "id": "57E03360-C609-4F40-85D0-10A2019A1EE4", + "name": "gamepad-outline", + "codepoint": "F1919", + "aliases": [ + "controller-outline", + "games-outline" + ], + "tags": [ + "Gaming \/ RPG", + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "D513E54E-6492-4C2A-99E9-3E50C5662B88", + "name": "gamepad-right", + "codepoint": "F0E3B", + "aliases": [ + "controller-right" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "GreenTurtwig", + "version": "3.6.95" + }, + { + "id": "3AD46D54-4369-483C-A0B5-E03D7CF62F3B", + "name": "gamepad-round", + "codepoint": "F0E3C", + "aliases": [ + "controller-round" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Haley Halcyon", + "version": "3.6.95" + }, + { + "id": "ABC572E9-CE00-450F-A1E0-E59BCF0C3DC3", + "name": "gamepad-round-down", + "codepoint": "F0E3D", + "aliases": [ + "controller-round-down" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Haley Halcyon", + "version": "3.6.95" + }, + { + "id": "07D26BD5-0B09-4FAF-9710-DA1F19C40C39", + "name": "gamepad-round-left", + "codepoint": "F0E3E", + "aliases": [ + "controller-round-left" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Haley Halcyon", + "version": "3.6.95" + }, + { + "id": "808C141C-877E-49D3-93D6-A69F985A7881", + "name": "gamepad-round-outline", + "codepoint": "F0E3F", + "aliases": [ + "controller-round-outline" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Haley Halcyon", + "version": "3.6.95" + }, + { + "id": "4D10A9D6-5E25-457D-B4ED-25BCC647E62E", + "name": "gamepad-round-right", + "codepoint": "F0E40", + "aliases": [ + "controller-round-right" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Haley Halcyon", + "version": "3.6.95" + }, + { + "id": "D3C1F57B-FF1A-4CD9-AD39-E3F3AB752779", + "name": "gamepad-round-up", + "codepoint": "F0E41", + "aliases": [ + "controller-round-up" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Haley Halcyon", + "version": "3.6.95" + }, + { + "id": "0FE0FB42-286B-4D56-AE93-6D93EA514C4B", + "name": "gamepad-square", + "codepoint": "F0EB5", + "aliases": [ + "controller-square" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Google", + "version": "3.7.94" + }, + { + "id": "1370B995-F9FF-4B39-9414-055908214152", + "name": "gamepad-square-outline", + "codepoint": "F0EB6", + "aliases": [ + "controller-square-outline" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Google", + "version": "3.7.94" + }, + { + "id": "56D5F5A6-18F7-4FA5-8D16-48058EBD98D3", + "name": "gamepad-up", + "codepoint": "F0E42", + "aliases": [ + "controller-up" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "GreenTurtwig", + "version": "3.6.95" + }, + { + "id": "A4DB98F5-FFD6-4F36-BB90-1B06AB202096", + "name": "gamepad-variant", + "codepoint": "F0297", + "aliases": [ + "controller-variant" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "25A261F0-9C5E-4103-88C8-70CEBA27270D", + "name": "gamepad-variant-outline", + "codepoint": "F0EB7", + "aliases": [ + "controller-variant-outline" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Michael Richins", + "version": "3.7.94" + }, + { + "id": "9D9227EC-5170-4765-832D-CDCF4AD79CAE", + "name": "gamma", + "codepoint": "F10EE", + "aliases": [], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Sascha Wohlgemuth", + "version": "4.3.95" + }, + { + "id": "CB6D190E-D7B6-4B40-804A-B868BE682C4D", + "name": "gantry-crane", + "codepoint": "F0DD1", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "3.5.94" + }, + { + "id": "FC744BA5-2E98-459F-BBD6-60788B23D93E", + "name": "garage", + "codepoint": "F06D9", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Alex Efremo", + "version": "1.8.36" + }, + { + "id": "03ED4E2F-41CE-47D7-ABB4-C8515C202499", + "name": "garage-alert", + "codepoint": "F0872", + "aliases": [ + "garage-warning" + ], + "tags": [ + "Home Automation", + "Alert \/ Error" + ], + "author": "Michael Richins", + "version": "2.1.99" + }, + { + "id": "25425A4D-48BD-4139-BA72-81D0DAB54020", + "name": "garage-alert-variant", + "codepoint": "F12D5", + "aliases": [], + "tags": [ + "Home Automation", + "Alert \/ Error" + ], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "E0AE077B-AE61-4760-95DD-7ACC9423327B", + "name": "garage-lock", + "codepoint": "F17FB", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "6B34986A-5D17-4C64-9840-994B66EC00AB", + "name": "garage-open", + "codepoint": "F06DA", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Alex Efremo", + "version": "1.8.36" + }, + { + "id": "8AE7213F-00BD-40D9-A524-2CCB60511BBA", + "name": "garage-open-variant", + "codepoint": "F12D4", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "11A3EA2E-E0A4-435D-B53D-55EB0E8A5F10", + "name": "garage-variant", + "codepoint": "F12D3", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "53BD8FE6-E6BE-48B5-A68C-3064A5C0710E", + "name": "garage-variant-lock", + "codepoint": "F17FC", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "7CEC48C5-3A70-4BA2-9FB8-A383387DC4A1", + "name": "gas-cylinder", + "codepoint": "F0647", + "aliases": [ + "tank", + "oxygen-tank" + ], + "tags": [], + "author": "Simran", + "version": "1.6.50" + }, + { + "id": "50E30598-BCD8-4167-BDAC-FF6971E745D7", + "name": "gas-station", + "codepoint": "F0298", + "aliases": [ + "gas-pump", + "petrol-pump", + "petrol-station", + "local-gas-station", + "fuel-station", + "fuel-pump" + ], + "tags": [ + "Places", + "Automotive" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "7ED35A9C-D8FD-4892-84E5-3700C907AE28", + "name": "gas-station-off", + "codepoint": "F1409", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.1.45" + }, + { + "id": "7C77CE4A-4C13-4853-8F4D-0F6F99EC0248", + "name": "gas-station-off-outline", + "codepoint": "F140A", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.1.45" + }, + { + "id": "E489326F-90B9-43E6-91CF-9123E914E84F", + "name": "gas-station-outline", + "codepoint": "F0EB8", + "aliases": [ + "gas-pump-outline", + "petrol-pump-outline", + "petrol-station-outline", + "fuel-station-outline", + "fuel-pump-outline" + ], + "tags": [], + "author": "Google", + "version": "3.7.94" + }, + { + "id": "340B7941-DB9B-40A2-9968-100AB599F204", + "name": "gate", + "codepoint": "F0299", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "C9B04A2B-FB69-4F05-B2E9-32468822F4DD", + "name": "gate-alert", + "codepoint": "F17F8", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "01E01742-E5ED-4E63-9F19-48CBE619C7A5", + "name": "gate-and", + "codepoint": "F08E1", + "aliases": [ + "logic-gate-and" + ], + "tags": [], + "author": "Nick", + "version": "2.3.50" + }, + { + "id": "1D07255B-B5EF-4715-9926-B91757893552", + "name": "gate-arrow-left", + "codepoint": "F17F7", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "314B9DB4-1D98-4394-BAD4-8FA5FB2EA160", + "name": "gate-arrow-right", + "codepoint": "F1169", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Simran", + "version": "4.4.95" + }, + { + "id": "FF2BA1EF-7AAE-4271-B799-6A51FE84427E", + "name": "gate-nand", + "codepoint": "F08E2", + "aliases": [ + "logic-gate-nand" + ], + "tags": [], + "author": "Nick", + "version": "2.3.50" + }, + { + "id": "9BFED3B5-B327-480D-BFCD-18F9CC52D82A", + "name": "gate-nor", + "codepoint": "F08E3", + "aliases": [ + "logic-gate-nor" + ], + "tags": [], + "author": "Nick", + "version": "2.3.50" + }, + { + "id": "3A4475B4-3774-4A2A-B672-59DAF8AE3398", + "name": "gate-not", + "codepoint": "F08E4", + "aliases": [ + "logic-gate-not" + ], + "tags": [], + "author": "Nick", + "version": "2.3.50" + }, + { + "id": "F5A29B6C-A003-423D-912A-A23D40E51D3C", + "name": "gate-open", + "codepoint": "F116A", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Simran", + "version": "4.4.95" + }, + { + "id": "13B88427-8795-48CF-B647-597997C6C541", + "name": "gate-or", + "codepoint": "F08E5", + "aliases": [ + "logic-gate-or" + ], + "tags": [], + "author": "Nick", + "version": "2.3.50" + }, + { + "id": "DA573FDA-7BEE-4B80-90BA-AA04932B43C6", + "name": "gate-xnor", + "codepoint": "F08E6", + "aliases": [ + "logic-gate-xnor" + ], + "tags": [], + "author": "Nick", + "version": "2.3.50" + }, + { + "id": "AFA3ABA2-1237-417E-8277-8509C7A58C1C", + "name": "gate-xor", + "codepoint": "F08E7", + "aliases": [ + "logic-gate-xor" + ], + "tags": [], + "author": "Nick", + "version": "2.3.50" + }, + { + "id": "2D5D41CF-9332-42E5-B6E9-C3A62E3A8135", + "name": "gatsby", + "codepoint": "F0E43", + "aliases": [], + "tags": [ + "Developer \/ Languages", + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "3.6.95" + }, + { + "id": "EC7B7499-25F1-43D4-9A09-9742F5B6D3F2", + "name": "gauge", + "codepoint": "F029A", + "aliases": [ + "swap-driving-apps-wheel", + "barometer" + ], + "tags": [ + "Home Automation", + "Automotive" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "2ED34069-D2CE-427F-8E96-C493C3D9DC5D", + "name": "gauge-empty", + "codepoint": "F0873", + "aliases": [], + "tags": [ + "Automotive" + ], + "author": "GreenTurtwig", + "version": "2.1.99" + }, + { + "id": "3AA721AB-566F-461F-812B-CC6652E9E800", + "name": "gauge-full", + "codepoint": "F0874", + "aliases": [], + "tags": [ + "Automotive" + ], + "author": "GreenTurtwig", + "version": "2.1.99" + }, + { + "id": "BFF1F377-BBAF-4354-A914-D0FD1BC9DA22", + "name": "gauge-low", + "codepoint": "F0875", + "aliases": [], + "tags": [ + "Automotive" + ], + "author": "GreenTurtwig", + "version": "2.1.99" + }, + { + "id": "AB600896-534E-4A82-8E7F-99E0F22B54AE", + "name": "gavel", + "codepoint": "F029B", + "aliases": [ + "court-hammer" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "0441EBEF-476C-420E-A04E-58367F99BD93", + "name": "gender-female", + "codepoint": "F029C", + "aliases": [ + "venus" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "78C91AE2-F79B-48EF-9CCD-5E6874BA20CA", + "name": "gender-male", + "codepoint": "F029D", + "aliases": [ + "mars" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "9B06F269-893F-4F1C-910D-D26578C6D976", + "name": "gender-male-female", + "codepoint": "F029E", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "1599350F-AA11-47A2-8D1C-B60DF1A0A5AD", + "name": "gender-male-female-variant", + "codepoint": "F113F", + "aliases": [ + "mercury" + ], + "tags": [], + "author": "Simran", + "version": "4.4.95" + }, + { + "id": "85F577F7-626B-4D2D-A392-2671C979BEF3", + "name": "gender-non-binary", + "codepoint": "F1140", + "aliases": [ + "gender-enby" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "47F759DA-8ECB-4BAA-8102-A843844EEBB3", + "name": "gender-transgender", + "codepoint": "F029F", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "D6664050-0082-4C50-B5AD-D6D0D23B842D", + "name": "gentoo", + "codepoint": "F08E8", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "2.3.50" + }, + { + "id": "FFC2833D-65AB-47BB-AC7C-8CFA41DF9250", + "name": "gesture", + "codepoint": "F07CB", + "aliases": [ + "freehand-line" + ], + "tags": [ + "Drawing \/ Art" + ], + "author": "Google", + "version": "2.0.46" + }, + { + "id": "D02C7FA0-E8E6-48B7-BEB7-4678B8D9DCA1", + "name": "gesture-double-tap", + "codepoint": "F073C", + "aliases": [ + "interaction-double-tap", + "hand-double-tap" + ], + "tags": [], + "author": "Michael Richins", + "version": "1.9.32" + }, + { + "id": "17A555A5-0518-42D0-87F8-6C332F81DF18", + "name": "gesture-pinch", + "codepoint": "F0ABD", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "2.7.94" + }, + { + "id": "82C8D8F3-13FE-4B69-A554-1FA74E516480", + "name": "gesture-spread", + "codepoint": "F0ABE", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "2.7.94" + }, + { + "id": "0C51419E-7710-4BE2-B509-425E4E7E2CC5", + "name": "gesture-swipe", + "codepoint": "F0D76", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.4.93" + }, + { + "id": "92FD3A8C-813E-4AC1-8D0B-85B89747C598", + "name": "gesture-swipe-down", + "codepoint": "F073D", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "1.9.32" + }, + { + "id": "5032C271-1D07-4318-9FC6-813C3ECA11FF", + "name": "gesture-swipe-horizontal", + "codepoint": "F0ABF", + "aliases": [], + "tags": [], + "author": "GreenTurtwig", + "version": "2.7.94" + }, + { + "id": "D0887CD1-2BF1-4A5A-B573-2BA6FF8A6129", + "name": "gesture-swipe-left", + "codepoint": "F073E", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "1.9.32" + }, + { + "id": "9B3D3150-CF71-473E-AF65-403C389C308A", + "name": "gesture-swipe-right", + "codepoint": "F073F", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "1.9.32" + }, + { + "id": "CE26D04A-C6AC-4379-AA25-A702F49F1DC2", + "name": "gesture-swipe-up", + "codepoint": "F0740", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "1.9.32" + }, + { + "id": "8883FDF0-A6B8-4252-BC2A-D12F99D20501", + "name": "gesture-swipe-vertical", + "codepoint": "F0AC0", + "aliases": [], + "tags": [], + "author": "GreenTurtwig", + "version": "2.7.94" + }, + { + "id": "D881AFBC-7477-46C2-9269-324676F19E51", + "name": "gesture-tap", + "codepoint": "F0741", + "aliases": [ + "interaction-tap", + "hand-tap" + ], + "tags": [], + "author": "Michael Richins", + "version": "1.9.32" + }, + { + "id": "FC2EE3B3-9885-4278-9BCE-491B27B4666E", + "name": "gesture-tap-box", + "codepoint": "F12A9", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.7.95" + }, + { + "id": "51E5488F-71C4-4E08-950D-EAAAB7B22D53", + "name": "gesture-tap-button", + "codepoint": "F12A8", + "aliases": [ + "call-to-action", + "cta" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.7.95" + }, + { + "id": "B502F4A5-5545-42F7-A0B4-E90BF4421D17", + "name": "gesture-tap-hold", + "codepoint": "F0D77", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.4.93" + }, + { + "id": "96C02705-84D1-4677-9DDE-CCDE1D43FE11", + "name": "gesture-two-double-tap", + "codepoint": "F0742", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "1.9.32" + }, + { + "id": "AA47E759-39DE-4A5C-B3CF-FAEB215EAB91", + "name": "gesture-two-tap", + "codepoint": "F0743", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "1.9.32" + }, + { + "id": "6B39D7DA-255C-4615-84D4-FFCF34D76A4A", + "name": "ghost", + "codepoint": "F02A0", + "aliases": [ + "inky", + "blinky", + "pinky", + "clyde" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "5322EB23-9081-4E99-9735-7C31003C0167", + "name": "ghost-off", + "codepoint": "F09F5", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Michael Richins", + "version": "2.5.94" + }, + { + "id": "9B371D94-3C53-410F-A4A5-024415B30244", + "name": "ghost-off-outline", + "codepoint": "F165C", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "71BF426E-71FE-4AEC-946A-A2CCAC371C31", + "name": "ghost-outline", + "codepoint": "F165D", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "62403C7B-F20E-489B-8835-28F7544D9712", + "name": "gift", + "codepoint": "F0E44", + "aliases": [ + "present", + "package", + "donate" + ], + "tags": [ + "Holiday" + ], + "author": "Simran", + "version": "3.6.95" + }, + { + "id": "17729CE1-90B8-4C63-A142-99056CDDC860", + "name": "gift-off", + "codepoint": "F16EF", + "aliases": [ + "present-off", + "package-off", + "donate-off" + ], + "tags": [ + "Holiday" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "E1260280-2F0F-4D7D-AA15-0322C8699541", + "name": "gift-off-outline", + "codepoint": "F16F0", + "aliases": [ + "present-off-outline", + "package-off-outline", + "donate-off-outline" + ], + "tags": [ + "Holiday" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "04D976AC-875C-42F1-A9F6-B86FDAAD6990", + "name": "gift-open", + "codepoint": "F16F1", + "aliases": [ + "present-open", + "package-open" + ], + "tags": [ + "Holiday" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "64BCFFC7-8E6B-4644-B14D-5B1F9EF16899", + "name": "gift-open-outline", + "codepoint": "F16F2", + "aliases": [ + "present-open-outline", + "package-open-outline" + ], + "tags": [ + "Holiday" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "22D0C782-CD05-4FEB-845F-BBA7126C7326", + "name": "gift-outline", + "codepoint": "F02A1", + "aliases": [ + "donate-outline", + "present-outline", + "package-outline" + ], + "tags": [ + "Shopping", + "Holiday" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "4CB8AF2D-5373-4247-AB9D-3B28B72EB7BC", + "name": "git", + "codepoint": "F02A2", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "5C6175DD-8549-4004-AB77-A545D721A0DE", + "name": "github", + "codepoint": "F02A4", + "aliases": [ + "microsoft-github" + ], + "tags": [ + "Developer \/ Languages", + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "6C0EA9E0-8F4F-40CB-A2B2-A2D84C97EE6A", + "name": "gitlab", + "codepoint": "F0BA0", + "aliases": [], + "tags": [], + "author": "Contributors", + "version": "3.0.39" + }, + { + "id": "9291BDB1-CE57-4802-8CD2-7AD2ED9D9959", + "name": "glass-cocktail", + "codepoint": "F0356", + "aliases": [ + "local-bar", + "cocktail", + "martini", + "alcohol", + "bar", + "cup", + "drink" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "5CB87909-09B4-47FD-B4BF-EB4A949F3CA2", + "name": "glass-cocktail-off", + "codepoint": "F15E6", + "aliases": [], + "tags": [ + "Food \/ Drink" + ], + "author": "Colton Wiscombe", + "version": "5.6.55" + }, + { + "id": "CD1215BB-D889-4A86-8944-AF724C71DF21", + "name": "glass-flute", + "codepoint": "F02A5", + "aliases": [ + "alcohol", + "cocktail", + "cup", + "drink" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "8D20FB31-71AC-4697-899B-2156B6193F75", + "name": "glass-fragile", + "codepoint": "F1873", + "aliases": [ + "glass-broken" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Colton Wiscombe", + "version": "6.2.95" + }, + { + "id": "9081982B-5EB6-47C1-A1F3-A83A0ED1B609", + "name": "glass-mug", + "codepoint": "F02A6", + "aliases": [ + "pub", + "bar", + "beer", + "alcohol", + "cup", + "drink", + "local-bar" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "BEAE85BE-708C-4D0D-82AE-370BB43B3D0D", + "name": "glass-mug-off", + "codepoint": "F15E7", + "aliases": [], + "tags": [ + "Food \/ Drink" + ], + "author": "Colton Wiscombe", + "version": "5.6.55" + }, + { + "id": "04D0C33A-12E7-4DC1-96FA-A83A481962D4", + "name": "glass-mug-variant", + "codepoint": "F1116", + "aliases": [ + "pub", + "bar", + "beer", + "drink", + "alcohol", + "cup", + "local-bar" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Simran", + "version": "4.3.95" + }, + { + "id": "61B2CF99-322E-448E-A1DB-E27B94600BC4", + "name": "glass-mug-variant-off", + "codepoint": "F15E8", + "aliases": [], + "tags": [ + "Food \/ Drink" + ], + "author": "Colton Wiscombe", + "version": "5.6.55" + }, + { + "id": "AFF2782E-A558-40EF-9B8C-787BAE055D57", + "name": "glass-pint-outline", + "codepoint": "F130D", + "aliases": [], + "tags": [ + "Food \/ Drink" + ], + "author": "Simran", + "version": "4.8.95" + }, + { + "id": "E26942A0-61AE-4D1A-941C-895D92E94C5D", + "name": "glass-stange", + "codepoint": "F02A7", + "aliases": [ + "alcohol", + "bar", + "cocktail", + "cup", + "drink" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "43E8B624-633D-472F-991E-4AEDB20A5454", + "name": "glass-tulip", + "codepoint": "F02A8", + "aliases": [ + "bar", + "alcohol", + "cocktail", + "cup", + "drink" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "0AF778AB-1048-4307-84AD-CB88D259DC02", + "name": "glass-wine", + "codepoint": "F0876", + "aliases": [ + "bar", + "alcohol", + "cocktail", + "cup", + "drink" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Michael Richins", + "version": "2.1.99" + }, + { + "id": "BE4C1227-C47E-4839-85AA-4EA6928BAAAE", + "name": "glasses", + "codepoint": "F02AA", + "aliases": [], + "tags": [ + "Clothing" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "A498671D-3C09-4874-B7BA-3F371208F4A0", + "name": "globe-light", + "codepoint": "F12D7", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "3E5EE2B1-AE6A-4675-BBAB-1D6B70FBFC36", + "name": "globe-model", + "codepoint": "F08E9", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "2.3.50" + }, + { + "id": "259F5EC9-395F-40C8-9389-6B6A82D9997C", + "name": "gmail", + "codepoint": "F02AB", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "2C4AF25A-8EC5-4B3B-BBCD-60F801F553B8", + "name": "gnome", + "codepoint": "F02AC", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "9E6D217A-874E-4295-9F85-9490FF14201C", + "name": "go-kart", + "codepoint": "F0D79", + "aliases": [ + "cart" + ], + "tags": [ + "Sport" + ], + "author": "Michael Richins", + "version": "3.4.93" + }, + { + "id": "04D32441-2FD3-4273-8C9A-D5C7BD1F261E", + "name": "go-kart-track", + "codepoint": "F0D7A", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "3.4.93" + }, + { + "id": "3B6D59D1-6329-4453-A11D-FB1D53B745F9", + "name": "gog", + "codepoint": "F0BA1", + "aliases": [ + "gog-com" + ], + "tags": [ + "Brand \/ Logo", + "Gaming \/ RPG" + ], + "author": "Contributors", + "version": "3.0.39" + }, + { + "id": "8B0AC7A2-11DB-43DF-96AF-D6193A2DCEFE", + "name": "gold", + "codepoint": "F124F", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "4.6.95" + }, + { + "id": "80A4F47A-3512-4C76-AA10-C0232C57E624", + "name": "golf", + "codepoint": "F0823", + "aliases": [ + "golf-course" + ], + "tags": [ + "Sport" + ], + "author": "Google", + "version": "2.1.19" + }, + { + "id": "70C7E562-43DC-4F7A-BF4C-77162406605A", + "name": "golf-cart", + "codepoint": "F11A4", + "aliases": [], + "tags": [ + "Sport", + "Transportation + Other" + ], + "author": "Michael Richins", + "version": "4.5.95" + }, + { + "id": "A37545D0-964F-4975-A004-8EEF7CE91ED4", + "name": "golf-tee", + "codepoint": "F1083", + "aliases": [], + "tags": [ + "Sport" + ], + "author": "Google", + "version": "4.2.95" + }, + { + "id": "9FE486F5-20A0-4CB5-A820-93AD82F52EB6", + "name": "gondola", + "codepoint": "F0686", + "aliases": [ + "cable-car" + ], + "tags": [ + "Transportation + Other" + ], + "author": "Austin Andrews", + "version": "1.7.12" + }, + { + "id": "DECFD1E8-72A4-41F7-AF7F-68ED710AC1AD", + "name": "goodreads", + "codepoint": "F0D7B", + "aliases": [], + "tags": [], + "author": "Contributors", + "version": "3.4.93" + }, + { + "id": "F787FBCA-3C54-43CC-AE16-E23436AD0720", + "name": "google", + "codepoint": "F02AD", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "300B71B3-499A-4998-BA9D-22F2190229AA", + "name": "google-ads", + "codepoint": "F0C87", + "aliases": [ + "google-adwords" + ], + "tags": [ + "Brand \/ Logo" + ], + "author": "Google", + "version": "3.2.89" + }, + { + "id": "B328003D-F2FD-4C31-8171-BD6EB5A81A8A", + "name": "google-analytics", + "codepoint": "F07CC", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Google", + "version": "2.0.46" + }, + { + "id": "3DD7794E-8603-49D0-B34E-DD0939225AAF", + "name": "google-assistant", + "codepoint": "F07CD", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Google", + "version": "2.0.46" + }, + { + "id": "8CC1E909-6274-4738-AF1D-0E2C3239E853", + "name": "google-cardboard", + "codepoint": "F02AE", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "0B7D7D86-21E1-4759-8E4D-5D2BB291BB3F", + "name": "google-chrome", + "codepoint": "F02AF", + "aliases": [ + "chromecast" + ], + "tags": [ + "Brand \/ Logo" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "FAF03601-DED3-4AD2-B252-DF739AC96986", + "name": "google-circles", + "codepoint": "F02B0", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "073A8D2A-C834-4655-AA4F-792D7ADD7E6E", + "name": "google-circles-communities", + "codepoint": "F02B1", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "9ABBC701-54DE-48B3-A579-6FB3503F8929", + "name": "google-circles-extended", + "codepoint": "F02B2", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "00CC15EA-653E-4F50-B681-3176664F9B3C", + "name": "google-circles-group", + "codepoint": "F02B3", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "432C2FB2-AA01-40F8-AAB1-CB964967D3BD", + "name": "google-classroom", + "codepoint": "F02C0", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "14A23373-DFBF-443C-9143-90E6C78D144C", + "name": "google-cloud", + "codepoint": "F11F6", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Google", + "version": "4.6.95" + }, + { + "id": "605CAD46-2EA0-47AE-8A41-953C1F27F9CD", + "name": "google-controller", + "codepoint": "F02B4", + "aliases": [ + "google-gamepad" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "8C28F332-2037-476E-8FAA-D5E6BC81D8B2", + "name": "google-controller-off", + "codepoint": "F02B5", + "aliases": [ + "google-gamepad-off" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "D9285386-5BA5-423A-8F3B-435E7A57363A", + "name": "google-downasaur", + "codepoint": "F1362", + "aliases": [ + "dinosaur-pixel", + "t-rex", + "tyrannosaurus-rex" + ], + "tags": [ + "Animal", + "Gaming \/ RPG" + ], + "author": "Simran", + "version": "4.9.95" + }, + { + "id": "EE98C0AD-0A55-4A6B-BB7A-01CBD3D819A2", + "name": "google-drive", + "codepoint": "F02B6", + "aliases": [ + "attach-drive" + ], + "tags": [ + "Brand \/ Logo" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "8A61F8F2-511B-45E9-9459-27BBD58936F8", + "name": "google-earth", + "codepoint": "F02B7", + "aliases": [ + "marble" + ], + "tags": [ + "Brand \/ Logo" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "0BBD8E67-124A-4788-B44F-9583BC6E7503", + "name": "google-fit", + "codepoint": "F096C", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Google", + "version": "2.4.85" + }, + { + "id": "6A73A89B-2C02-4DB5-89DF-0449750171BC", + "name": "google-glass", + "codepoint": "F02B8", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "3EA0D516-133D-4A5E-865B-82B7CC2763D5", + "name": "google-hangouts", + "codepoint": "F02C9", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "EEB46F1F-4996-4B65-A1C6-70DC4D38C34E", + "name": "google-home", + "codepoint": "F0824", + "aliases": [], + "tags": [ + "Device \/ Tech" + ], + "author": "Google", + "version": "2.1.19" + }, + { + "id": "73BACA3B-710C-4F23-9730-D88ADA3EA914", + "name": "google-keep", + "codepoint": "F06DC", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Google", + "version": "1.8.36" + }, + { + "id": "BB7275FF-E0B1-4D63-8EF5-467F23BC5D33", + "name": "google-lens", + "codepoint": "F09F6", + "aliases": [], + "tags": [], + "author": "Google", + "version": "2.5.94" + }, + { + "id": "21FBF51C-0081-4987-8129-CFB0BB81729F", + "name": "google-maps", + "codepoint": "F05F5", + "aliases": [], + "tags": [ + "Navigation", + "Brand \/ Logo" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "8DBB2A33-94F4-4676-95F2-F81D87C21FE1", + "name": "google-my-business", + "codepoint": "F1048", + "aliases": [], + "tags": [], + "author": "Google", + "version": "4.1.95" + }, + { + "id": "576EFEB3-D7E0-463F-A783-19A0F97D45EE", + "name": "google-nearby", + "codepoint": "F02B9", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "5FE693A7-2A33-46A5-B502-D42588072E56", + "name": "google-play", + "codepoint": "F02BC", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "0D3A668A-E3B7-4512-B22D-10B13362DC2B", + "name": "google-plus", + "codepoint": "F02BD", + "aliases": [], + "tags": [ + "Brand \/ Logo", + "Social Media" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "2C6E6048-97ED-4CA1-B8CE-31CEB31670C3", + "name": "google-podcast", + "codepoint": "F0EB9", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.7.94" + }, + { + "id": "837DFB0D-633B-4667-9C40-272186D68351", + "name": "google-spreadsheet", + "codepoint": "F09F7", + "aliases": [], + "tags": [], + "author": "Google", + "version": "2.5.94" + }, + { + "id": "EC38CB3D-A8A1-48E8-9A71-9BE93D6847FC", + "name": "google-street-view", + "codepoint": "F0C88", + "aliases": [ + "pegman" + ], + "tags": [], + "author": "Google", + "version": "3.2.89" + }, + { + "id": "DFF485C3-0A13-4546-A267-7687AF1AB82F", + "name": "google-translate", + "codepoint": "F02BF", + "aliases": [ + "g-translate" + ], + "tags": [ + "Brand \/ Logo" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "525D2C64-FE7A-44F8-84E2-B1DDDF3FA668", + "name": "gradient-horizontal", + "codepoint": "F174A", + "aliases": [], + "tags": [ + "Drawing \/ Art" + ], + "author": "Jeff Anders", + "version": "6.1.95" + }, + { + "id": "F10A05F8-FD09-4BDA-B906-747E9A89AB6E", + "name": "gradient-vertical", + "codepoint": "F06A0", + "aliases": [], + "tags": [ + "Drawing \/ Art" + ], + "author": "Google", + "version": "1.7.12" + }, + { + "id": "D1784DB9-E2F2-44AA-AF8D-E562D8E3CBBC", + "name": "grain", + "codepoint": "F0D7C", + "aliases": [], + "tags": [ + "Photography", + "Video \/ Movie" + ], + "author": "Google", + "version": "3.4.93" + }, + { + "id": "76AC59FA-C58D-4A55-AE8F-A351AF2CD43A", + "name": "graph", + "codepoint": "F1049", + "aliases": [ + "dependency", + "dependencies" + ], + "tags": [], + "author": "Simran", + "version": "4.1.95" + }, + { + "id": "2B8A2BB1-0887-493F-A644-88015BFA507A", + "name": "graph-outline", + "codepoint": "F104A", + "aliases": [ + "dependency", + "dependencies" + ], + "tags": [], + "author": "Simran", + "version": "4.1.95" + }, + { + "id": "50FEA1C7-FB0B-4920-BDA4-D56A87928A75", + "name": "graphql", + "codepoint": "F0877", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "2.1.99" + }, + { + "id": "8688646A-F06F-421F-83B1-8AA8FABF7BD8", + "name": "grass", + "codepoint": "F1510", + "aliases": [ + "lawn" + ], + "tags": [ + "Nature", + "Agriculture" + ], + "author": "Google", + "version": "5.4.55" + }, + { + "id": "4986CAC4-4886-4868-8D81-28F00376536A", + "name": "grave-stone", + "codepoint": "F0BA2", + "aliases": [ + "headstone", + "tombstone", + "cemetery", + "graveyard" + ], + "tags": [ + "Holiday" + ], + "author": "Austin Andrews", + "version": "3.0.39" + }, + { + "id": "137F01F1-86AC-4923-A9D7-C72057367BB7", + "name": "grease-pencil", + "codepoint": "F0648", + "aliases": [], + "tags": [ + "Drawing \/ Art" + ], + "author": "Google", + "version": "1.6.50" + }, + { + "id": "8E839EA1-A50F-41C5-BB89-14904048B885", + "name": "greater-than", + "codepoint": "F096D", + "aliases": [], + "tags": [ + "Math" + ], + "author": "Nick", + "version": "2.4.85" + }, + { + "id": "62C57FBE-8457-442F-AD8D-510CF2080FFF", + "name": "greater-than-or-equal", + "codepoint": "F096E", + "aliases": [], + "tags": [ + "Math" + ], + "author": "Nick", + "version": "2.4.85" + }, + { + "id": "9AE6BA3C-694B-47D5-99C3-7D063228F053", + "name": "greenhouse", + "codepoint": "F002D", + "aliases": [ + "glasshouse", + "hothouse" + ], + "tags": [ + "Home Automation", + "Agriculture", + "Nature" + ], + "author": "Jeff Anders", + "version": "1.5.54" + }, + { + "id": "8D4C203D-A1F0-42DA-997A-AB7BAC63D97B", + "name": "grid", + "codepoint": "F02C1", + "aliases": [ + "grid-on" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "4A3863FA-620C-4564-8A7B-57681117B81D", + "name": "grid-large", + "codepoint": "F0758", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "4A8DDCEF-7E60-4864-9CC3-64C9A5B0D6D4", + "name": "grid-off", + "codepoint": "F02C2", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "22C8B00E-9BA8-4C66-994B-A2F0B4D369DD", + "name": "grill", + "codepoint": "F0E45", + "aliases": [ + "bbq", + "barbecue", + "charcoal" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Google", + "version": "3.6.95" + }, + { + "id": "36BD13EA-FFEC-48CF-855C-C30831680961", + "name": "grill-outline", + "codepoint": "F118A", + "aliases": [ + "barbecue-outline", + "bbq-outline", + "charcoal-outline" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Google", + "version": "4.4.95" + }, + { + "id": "D1B31666-9F9A-4CAB-843B-4BFEDBCC5347", + "name": "group", + "codepoint": "F02C3", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "C4015804-7FF3-4483-94CA-CEB79F7B34BC", + "name": "guitar-acoustic", + "codepoint": "F0771", + "aliases": [], + "tags": [ + "Music" + ], + "author": "Haley Halcyon", + "version": "1.9.32" + }, + { + "id": "C2F16EBD-E72B-45E0-9A34-0BAF7ADB87B3", + "name": "guitar-electric", + "codepoint": "F02C4", + "aliases": [], + "tags": [ + "Music" + ], + "author": "Haley Halcyon", + "version": "1.5.54" + }, + { + "id": "68377A86-6428-4553-B768-7E9FC306E962", + "name": "guitar-pick", + "codepoint": "F02C5", + "aliases": [], + "tags": [ + "Music" + ], + "author": "Gabriel", + "version": "1.5.54" + }, + { + "id": "0FA22632-A0B2-49E0-A779-56022111C9D8", + "name": "guitar-pick-outline", + "codepoint": "F02C6", + "aliases": [], + "tags": [ + "Music" + ], + "author": "Gabriel", + "version": "1.5.54" + }, + { + "id": "FDDC802D-37F5-4E15-96DA-8A6D553B1D67", + "name": "guy-fawkes-mask", + "codepoint": "F0825", + "aliases": [], + "tags": [], + "author": "Augustin Ursu", + "version": "2.1.19" + }, + { + "id": "B4AC04DD-9F29-4F55-ABB6-A4AE4F272EC4", + "name": "hail", + "codepoint": "F0AC1", + "aliases": [ + "hail-taxi", + "hail-cab" + ], + "tags": [ + "Transportation + Road", + "Navigation" + ], + "author": "Google", + "version": "2.7.94" + }, + { + "id": "57248AE7-78F7-4493-8909-5EA0A48821ED", + "name": "hair-dryer", + "codepoint": "F10EF", + "aliases": [], + "tags": [ + "Health \/ Beauty" + ], + "author": "Michael Richins", + "version": "4.3.95" + }, + { + "id": "AC508D19-C3A8-4EC3-A46B-21F15DB6A8B1", + "name": "hair-dryer-outline", + "codepoint": "F10F0", + "aliases": [], + "tags": [ + "Health \/ Beauty" + ], + "author": "Michael Richins", + "version": "4.3.95" + }, + { + "id": "CE482051-152D-4A7F-A696-74D8CD398FEF", + "name": "halloween", + "codepoint": "F0BA3", + "aliases": [ + "pumpkin-face", + "pumpkin-carved", + "jack-o-lantern", + "emoji-halloween", + "emoticon-halloween" + ], + "tags": [ + "Holiday" + ], + "author": "Austin Andrews", + "version": "3.0.39" + }, + { + "id": "F5BC2290-D719-4974-9920-DF8E08E5F955", + "name": "hamburger", + "codepoint": "F0685", + "aliases": [ + "burger", + "fast-food", + "food" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Haley Halcyon", + "version": "1.7.12" + }, + { + "id": "15C2280B-B4C8-436A-8D57-80FFD3C4FB62", + "name": "hamburger-check", + "codepoint": "F1776", + "aliases": [ + "burger-check" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "CCD3F888-3CB7-4FB2-AB04-E7D8F803ABE9", + "name": "hamburger-minus", + "codepoint": "F1777", + "aliases": [ + "burger-minus" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "540219BD-FDFC-484B-8ACC-D75760F31FD7", + "name": "hamburger-off", + "codepoint": "F1778", + "aliases": [ + "burger-off", + "fast-food-off", + "food-off" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "AD90D2EE-E142-45C3-977E-4D8299E12930", + "name": "hamburger-plus", + "codepoint": "F1779", + "aliases": [ + "burger-plus", + "burger-add" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "52F5DBCE-78B0-49ED-BBDB-73B8F34084A0", + "name": "hamburger-remove", + "codepoint": "F177A", + "aliases": [ + "burger-remove" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "A3F55E77-82C2-48F6-B1B1-92C9259C9C26", + "name": "hammer", + "codepoint": "F08EA", + "aliases": [], + "tags": [ + "Hardware \/ Tools" + ], + "author": "Google", + "version": "2.3.50" + }, + { + "id": "CDD24BC0-E8F8-4B6E-B160-BC8DABC286A9", + "name": "hammer-screwdriver", + "codepoint": "F1322", + "aliases": [ + "tools" + ], + "tags": [ + "Hardware \/ Tools" + ], + "author": "Google", + "version": "4.9.95" + }, + { + "id": "B990F624-1A91-424E-9AC0-08D95788FC9C", + "name": "hammer-sickle", + "codepoint": "F1887", + "aliases": [ + "communism" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.2.95" + }, + { + "id": "86D5756B-DE86-4273-A475-4E2D9856B0C3", + "name": "hammer-wrench", + "codepoint": "F1323", + "aliases": [ + "tools" + ], + "tags": [ + "Hardware \/ Tools" + ], + "author": "Google", + "version": "4.9.95" + }, + { + "id": "D2652D4F-E184-4BCC-A8A3-E53145D27911", + "name": "hand-back-left", + "codepoint": "F0E46", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.6.95" + }, + { + "id": "FFD6548D-6F8F-4C98-A918-19213C6E30AD", + "name": "hand-back-left-off", + "codepoint": "F1830", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "20F7B0D0-5EB2-4F42-9EFD-2F7CA2C1D49D", + "name": "hand-back-left-off-outline", + "codepoint": "F1832", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "07ED0125-29A3-4DFE-8838-AABAE30A98EE", + "name": "hand-back-left-outline", + "codepoint": "F182C", + "aliases": [], + "tags": [], + "author": "Google", + "version": "6.1.95" + }, + { + "id": "35FBF26D-56C0-4699-A2A8-19BC2C37D6AF", + "name": "hand-back-right", + "codepoint": "F0E47", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.6.95" + }, + { + "id": "B7FB9D4E-CCF7-4368-88FC-5BDDE33E3FAF", + "name": "hand-back-right-off", + "codepoint": "F1831", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "EBFF43CF-9625-46EF-A223-CC17DBF78CBE", + "name": "hand-back-right-off-outline", + "codepoint": "F1833", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "F1DF9FAF-F8B8-4B11-BDFB-EE6BEFAC322A", + "name": "hand-back-right-outline", + "codepoint": "F182D", + "aliases": [], + "tags": [], + "author": "Google", + "version": "6.1.95" + }, + { + "id": "8FEFA10A-395F-47B9-B5B9-0040905E9E1F", + "name": "hand-clap", + "codepoint": "F194B", + "aliases": [ + "applause" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "861C015B-47CA-41A6-8994-E43D980ECD58", + "name": "hand-coin", + "codepoint": "F188F", + "aliases": [ + "charity", + "donation" + ], + "tags": [ + "Banking" + ], + "author": "Jeff Anders", + "version": "6.2.95" + }, + { + "id": "11B36B9E-D054-4A10-996E-62F897EF12C7", + "name": "hand-coin-outline", + "codepoint": "F1890", + "aliases": [ + "charity-outline", + "donation-outline" + ], + "tags": [ + "Banking" + ], + "author": "Jeff Anders", + "version": "6.2.95" + }, + { + "id": "94B9D1E7-C84C-413B-B999-92BD6508D013", + "name": "hand-extended", + "codepoint": "F18B6", + "aliases": [ + "hand-open", + "hand-palm" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.3.95" + }, + { + "id": "F0A0EEAD-9751-407D-87C5-AA9300E15043", + "name": "hand-extended-outline", + "codepoint": "F18B7", + "aliases": [ + "hand-open-outline", + "hand-palm-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.3.95" + }, + { + "id": "9A2B8032-A5D9-4E2A-8865-511EFE742611", + "name": "hand-front-left", + "codepoint": "F182B", + "aliases": [], + "tags": [], + "author": "Google", + "version": "6.1.95" + }, + { + "id": "09E98CF1-3EEC-4A94-B5F1-A6A734631959", + "name": "hand-front-left-outline", + "codepoint": "F182E", + "aliases": [], + "tags": [], + "author": "Google", + "version": "6.1.95" + }, + { + "id": "C30FC465-2DF1-4716-AAC9-F48213F23D65", + "name": "hand-front-right", + "codepoint": "F0A4F", + "aliases": [], + "tags": [], + "author": "Google", + "version": "2.6.95" + }, + { + "id": "EC0CC485-BD34-49FB-AB06-D8244F1B9166", + "name": "hand-front-right-outline", + "codepoint": "F182F", + "aliases": [], + "tags": [], + "author": "Google", + "version": "6.1.95" + }, + { + "id": "5B605565-DBBC-4141-8B07-D8009B74D4E1", + "name": "hand-heart", + "codepoint": "F10F1", + "aliases": [ + "volunteer", + "love", + "hope" + ], + "tags": [], + "author": "Google", + "version": "4.3.95" + }, + { + "id": "169736D6-CE5B-4143-A4A2-5D95088493F3", + "name": "hand-heart-outline", + "codepoint": "F157E", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.5.55" + }, + { + "id": "F81DD09B-46EB-466D-A0E3-DE4CAEC86793", + "name": "hand-okay", + "codepoint": "F0A50", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "2.6.95" + }, + { + "id": "19740ECA-C3A2-49D1-B7BA-91C97EA150D7", + "name": "hand-peace", + "codepoint": "F0A51", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "2.6.95" + }, + { + "id": "1B7E8570-378E-4099-9683-505B4E2744EA", + "name": "hand-peace-variant", + "codepoint": "F0A52", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "2.6.95" + }, + { + "id": "1D015884-E9B8-401E-8931-E2DA1604BF1B", + "name": "hand-pointing-down", + "codepoint": "F0A53", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "2.6.95" + }, + { + "id": "26BC12CA-4558-4C45-BBDB-04BE1E13E814", + "name": "hand-pointing-left", + "codepoint": "F0A54", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "2.6.95" + }, + { + "id": "C18F21E1-2363-42DD-8FFF-3381AC368C23", + "name": "hand-pointing-right", + "codepoint": "F02C7", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "457F3CB5-7B39-417F-A1CE-D1DB5A22159D", + "name": "hand-pointing-up", + "codepoint": "F0A55", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "2.6.95" + }, + { + "id": "A0B645B5-20F6-4682-9E88-96784D8732CF", + "name": "hand-saw", + "codepoint": "F0E48", + "aliases": [], + "tags": [ + "Hardware \/ Tools" + ], + "author": "Michael Irigoyen", + "version": "3.6.95" + }, + { + "id": "4C201756-1101-4C58-9FBE-5F781347F535", + "name": "hand-wash", + "codepoint": "F157F", + "aliases": [], + "tags": [ + "Medical \/ Hospital" + ], + "author": "Google", + "version": "5.5.55" + }, + { + "id": "C5EA3223-8736-4F38-82A1-B3FC5F206879", + "name": "hand-wash-outline", + "codepoint": "F1580", + "aliases": [], + "tags": [ + "Medical \/ Hospital" + ], + "author": "Google", + "version": "5.5.55" + }, + { + "id": "C3BBE9FF-7FF7-4C8F-8185-A8F3825F3CAE", + "name": "hand-water", + "codepoint": "F139F", + "aliases": [ + "hand-wash" + ], + "tags": [ + "Medical \/ Hospital" + ], + "author": "Moma Design Studio", + "version": "5.0.45" + }, + { + "id": "2AE6B41D-EC56-4851-BEB2-B6A22B1E9D44", + "name": "hand-wave", + "codepoint": "F1821", + "aliases": [ + "greeting", + "farewell" + ], + "tags": [], + "author": "Google", + "version": "6.1.95" + }, + { + "id": "0E2992F4-2F2E-4A96-8402-FBA2B9C8675C", + "name": "hand-wave-outline", + "codepoint": "F1822", + "aliases": [ + "greeting-outline", + "farewell-outline" + ], + "tags": [], + "author": "Google", + "version": "6.1.95" + }, + { + "id": "845C7000-7198-490F-8043-EC1F61CE4F53", + "name": "handball", + "codepoint": "F0F53", + "aliases": [ + "volleyball" + ], + "tags": [ + "Sport" + ], + "author": "Google", + "version": "3.9.97" + }, + { + "id": "1451F3F4-D421-4A26-A22D-0ED80A815DF6", + "name": "handcuffs", + "codepoint": "F113E", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "9098736F-D298-4724-AE04-6BEA124F3854", + "name": "hands-pray", + "codepoint": "F0579", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "1.5.54" + }, + { + "id": "A41E35E2-6756-46D9-BE48-4DFA705A6A6A", + "name": "handshake", + "codepoint": "F1218", + "aliases": [ + "business", + "deal", + "help", + "partnership" + ], + "tags": [], + "author": "Michael Richins", + "version": "4.6.95" + }, + { + "id": "11A33144-9847-4ED2-A429-682B79AAE06F", + "name": "handshake-outline", + "codepoint": "F15A1", + "aliases": [ + "business-outline", + "deal-outline", + "help-outline", + "partnership-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.5.55" + }, + { + "id": "2FB0994B-BBA8-4F59-93AF-87F2065F34EA", + "name": "hanger", + "codepoint": "F02C8", + "aliases": [ + "coat-hanger", + "clothes-hanger" + ], + "tags": [ + "Clothing" + ], + "author": "Moma Design Studio", + "version": "1.5.54" + }, + { + "id": "C0F69308-03DA-446D-9B7F-A5B2B5BF1D90", + "name": "hard-hat", + "codepoint": "F096F", + "aliases": [ + "helmet" + ], + "tags": [ + "Hardware \/ Tools", + "Clothing" + ], + "author": "Michael Richins", + "version": "2.4.85" + }, + { + "id": "6CBB2398-E7ED-4A08-8489-1FFF87D0605C", + "name": "harddisk", + "codepoint": "F02CA", + "aliases": [ + "hdd" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "C4EE3559-8772-4A8D-A549-A1A11DEEC830", + "name": "harddisk-plus", + "codepoint": "F104B", + "aliases": [ + "hdd-plus" + ], + "tags": [], + "author": "Michael Richins", + "version": "4.1.95" + }, + { + "id": "07449A81-73AE-484C-8739-E008C38502F1", + "name": "harddisk-remove", + "codepoint": "F104C", + "aliases": [ + "hdd-remove" + ], + "tags": [], + "author": "Michael Richins", + "version": "4.1.95" + }, + { + "id": "65EED4C7-8306-4688-83ED-7D1D527B39AB", + "name": "hat-fedora", + "codepoint": "F0BA4", + "aliases": [], + "tags": [ + "Clothing" + ], + "author": "Google", + "version": "3.0.39" + }, + { + "id": "AEB30C8D-5159-4897-8D17-6EFB9715D3CD", + "name": "hazard-lights", + "codepoint": "F0C89", + "aliases": [ + "warning-lights" + ], + "tags": [ + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "81182C14-380B-4F56-AFF9-EF636EC7BF7E", + "name": "hdr", + "codepoint": "F0D7D", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.4.93" + }, + { + "id": "D0ACA2D8-09A4-4C13-81FE-26F7D9C617E5", + "name": "hdr-off", + "codepoint": "F0D7E", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.4.93" + }, + { + "id": "6C83ACD1-95E8-4DE0-837A-4C66E07533DD", + "name": "head", + "codepoint": "F135E", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.9.95" + }, + { + "id": "783B2BB8-1ECA-4E19-8F45-9FCC8D749F99", + "name": "head-alert", + "codepoint": "F1338", + "aliases": [], + "tags": [ + "Alert \/ Error" + ], + "author": "Michael Irigoyen", + "version": "4.9.95" + }, + { + "id": "BF11BF96-445C-478B-8A66-ECBD839415EA", + "name": "head-alert-outline", + "codepoint": "F1339", + "aliases": [], + "tags": [ + "Alert \/ Error" + ], + "author": "Michael Irigoyen", + "version": "4.9.95" + }, + { + "id": "E10C1F47-D7CB-458A-A374-467CF9462045", + "name": "head-check", + "codepoint": "F133A", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.9.95" + }, + { + "id": "0A0ADE26-77AE-4BC3-8F9D-3D25669197FE", + "name": "head-check-outline", + "codepoint": "F133B", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.9.95" + }, + { + "id": "58C540DF-30BA-449B-8426-61AD2C43959D", + "name": "head-cog", + "codepoint": "F133C", + "aliases": [ + "psychology" + ], + "tags": [ + "Settings" + ], + "author": "Google", + "version": "4.9.95" + }, + { + "id": "C4C50873-9844-42F6-A37B-16FE905873D9", + "name": "head-cog-outline", + "codepoint": "F133D", + "aliases": [ + "psychology-outline" + ], + "tags": [ + "Settings" + ], + "author": "Michael Irigoyen", + "version": "4.9.95" + }, + { + "id": "DE191219-96D0-4189-8BE1-8F24A5E3E492", + "name": "head-dots-horizontal", + "codepoint": "F133E", + "aliases": [ + "head-thinking" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.9.95" + }, + { + "id": "E07B33BA-5E14-45A2-AE38-EA80CE0ED909", + "name": "head-dots-horizontal-outline", + "codepoint": "F133F", + "aliases": [ + "head-thinking-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.9.95" + }, + { + "id": "86AC6B0F-62ED-4691-88DB-A95DF86CBFF9", + "name": "head-flash", + "codepoint": "F1340", + "aliases": [ + "head-ache" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.9.95" + }, + { + "id": "28D19749-AD74-4017-B4B1-AFA65AA7B47F", + "name": "head-flash-outline", + "codepoint": "F1341", + "aliases": [ + "head-ache-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.9.95" + }, + { + "id": "619BBE2E-46B1-4FC8-91CF-13FE138FC601", + "name": "head-heart", + "codepoint": "F1342", + "aliases": [ + "head-love" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.9.95" + }, + { + "id": "0DA85FAF-88F1-4DF1-8DA6-CB3CEFA2A505", + "name": "head-heart-outline", + "codepoint": "F1343", + "aliases": [ + "head-love-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.9.95" + }, + { + "id": "A94C16AE-DBA8-4DC4-B52E-589D1605C765", + "name": "head-lightbulb", + "codepoint": "F1344", + "aliases": [ + "head-idea", + "head-bulb" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.9.95" + }, + { + "id": "A7FCF7AB-00BF-404B-8AF6-B384B034B6F7", + "name": "head-lightbulb-outline", + "codepoint": "F1345", + "aliases": [ + "head-idea-outline", + "head-bulb-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.9.95" + }, + { + "id": "ACE0E86B-603A-4B3A-9AF5-D6C2F3B4F121", + "name": "head-minus", + "codepoint": "F1346", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.9.95" + }, + { + "id": "9550EB76-4099-4179-9310-339C2D7B0358", + "name": "head-minus-outline", + "codepoint": "F1347", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.9.95" + }, + { + "id": "FC339D79-C2E3-4F70-BDEE-E8DB99E06050", + "name": "head-outline", + "codepoint": "F135F", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.9.95" + }, + { + "id": "84EDC185-89D4-4F6A-9C28-9911ADA41950", + "name": "head-plus", + "codepoint": "F1348", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.9.95" + }, + { + "id": "FDEA8867-C576-4065-87D9-945ADE51C543", + "name": "head-plus-outline", + "codepoint": "F1349", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.9.95" + }, + { + "id": "1E4E72A9-FC83-4971-8B21-4FCACC4DD679", + "name": "head-question", + "codepoint": "F134A", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.9.95" + }, + { + "id": "B396941C-27C0-4386-96AF-D0AB15842EC2", + "name": "head-question-outline", + "codepoint": "F134B", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.9.95" + }, + { + "id": "277090C1-C626-4DA8-B620-1A709668E5BA", + "name": "head-remove", + "codepoint": "F134C", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.9.95" + }, + { + "id": "7BB28522-3861-439B-A804-D86C580A8FCB", + "name": "head-remove-outline", + "codepoint": "F134D", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.9.95" + }, + { + "id": "9EB1D22F-C7FC-43FB-8689-40AB3FFB98E7", + "name": "head-snowflake", + "codepoint": "F134E", + "aliases": [ + "head-freeze", + "brain-freeze" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.9.95" + }, + { + "id": "C7A97A26-B7C3-406A-9087-2463AC624926", + "name": "head-snowflake-outline", + "codepoint": "F134F", + "aliases": [ + "head-freeze-outline", + "brain-freeze-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.9.95" + }, + { + "id": "CB0FD2AA-6EA8-4324-8207-6C4FFCCB5143", + "name": "head-sync", + "codepoint": "F1350", + "aliases": [ + "head-reload", + "head-refresh" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.9.95" + }, + { + "id": "8EC8806B-0E06-4EA4-915E-C061D4930ECC", + "name": "head-sync-outline", + "codepoint": "F1351", + "aliases": [ + "head-reload-outline", + "head-refresh-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.9.95" + }, + { + "id": "51F72F83-1559-4037-8BF9-2D8AE3BCB1A8", + "name": "headphones", + "codepoint": "F02CB", + "aliases": [ + "headset" + ], + "tags": [ + "Audio", + "Device \/ Tech", + "Music" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "B14FD2A1-C292-49CC-B0AC-78E22C2BD611", + "name": "headphones-bluetooth", + "codepoint": "F0970", + "aliases": [], + "tags": [], + "author": "GreenTurtwig", + "version": "2.4.85" + }, + { + "id": "5B608320-1BEB-499C-9CAB-0897D3A2D2B6", + "name": "headphones-box", + "codepoint": "F02CC", + "aliases": [], + "tags": [ + "Audio", + "Music" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "678F779A-DE83-4DC0-A49D-657CBAF631F0", + "name": "headphones-off", + "codepoint": "F07CE", + "aliases": [], + "tags": [ + "Audio", + "Device \/ Tech", + "Music" + ], + "author": "GreenTurtwig", + "version": "2.0.46" + }, + { + "id": "54A22337-9D03-4F52-8D3E-B2A0A32147B7", + "name": "headphones-settings", + "codepoint": "F02CD", + "aliases": [], + "tags": [ + "Audio", + "Settings" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "AFF98802-E02B-4EC8-8AFF-F0F5373D86C5", + "name": "headset", + "codepoint": "F02CE", + "aliases": [ + "headset-mic" + ], + "tags": [ + "Audio", + "Device \/ Tech" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "36F33522-9167-42DD-BA0A-8920F480F38C", + "name": "headset-dock", + "codepoint": "F02CF", + "aliases": [], + "tags": [ + "Audio" + ], + "author": "Chris Litherland", + "version": "1.5.54" + }, + { + "id": "E2A86F6D-6E4D-4C61-B54A-85BEDACA052F", + "name": "headset-off", + "codepoint": "F02D0", + "aliases": [], + "tags": [ + "Audio", + "Device \/ Tech" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "32B56DB2-B6BF-4B54-AD0C-9444106B1C1D", + "name": "heart", + "codepoint": "F02D1", + "aliases": [ + "favorite", + "favourite" + ], + "tags": [ + "Shape", + "Gaming \/ RPG", + "Medical \/ Hospital" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "558E28AE-47E7-4C95-9846-7653C79CBA33", + "name": "heart-box", + "codepoint": "F02D2", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "24811FE6-6C95-4CAB-B708-71862BA40C05", + "name": "heart-box-outline", + "codepoint": "F02D3", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "64D15AD4-07A4-4D43-8730-6C9860C89B44", + "name": "heart-broken", + "codepoint": "F02D4", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "365602DD-C53F-42AC-AE3E-2058F47B5C53", + "name": "heart-broken-outline", + "codepoint": "F0D14", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.3.92" + }, + { + "id": "2EFEF959-D5E7-4E69-863D-4E12C413A6D9", + "name": "heart-circle", + "codepoint": "F0971", + "aliases": [], + "tags": [], + "author": "GreenTurtwig", + "version": "2.4.85" + }, + { + "id": "DD5AC3DA-1CA0-4F53-9A50-C095417D7346", + "name": "heart-circle-outline", + "codepoint": "F0972", + "aliases": [], + "tags": [], + "author": "GreenTurtwig", + "version": "2.4.85" + }, + { + "id": "759FA294-1DB6-4B54-BA13-AD852764E3C9", + "name": "heart-cog", + "codepoint": "F1663", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "A28DF1A9-5A1F-49AB-959D-249313639228", + "name": "heart-cog-outline", + "codepoint": "F1664", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "9B033C3C-210D-4EFD-AD4E-FF9E36E44509", + "name": "heart-flash", + "codepoint": "F0EF9", + "aliases": [ + "aed", + "defibrillator" + ], + "tags": [ + "Medical \/ Hospital" + ], + "author": "Michael Irigoyen", + "version": "3.8.95" + }, + { + "id": "1B01BAE0-095E-424E-9552-6ECEF5E4FC62", + "name": "heart-half", + "codepoint": "F06DF", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Austin Andrews", + "version": "1.8.36" + }, + { + "id": "0FC24699-3C95-4319-A60B-286B0D328D7A", + "name": "heart-half-full", + "codepoint": "F06DE", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Case Sandberg", + "version": "1.8.36" + }, + { + "id": "F4384972-741C-4BB6-91BF-9509E75C8AF8", + "name": "heart-half-outline", + "codepoint": "F06E0", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Austin Andrews", + "version": "1.8.36" + }, + { + "id": "3FD1EF68-1D57-436E-9EF5-D6721DCCF5CF", + "name": "heart-minus", + "codepoint": "F142F", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "12C099C0-0232-49B7-A909-F91594FD7FBA", + "name": "heart-minus-outline", + "codepoint": "F1432", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "BDAF5217-358E-4673-BF16-FFFBD09EAD8F", + "name": "heart-multiple", + "codepoint": "F0A56", + "aliases": [ + "hearts" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "2.6.95" + }, + { + "id": "A4672312-BF75-4CE0-88FF-C7D3BC724AA0", + "name": "heart-multiple-outline", + "codepoint": "F0A57", + "aliases": [ + "hearts-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "2.6.95" + }, + { + "id": "012A92C0-E5DE-4FB4-9AB1-9BD5F53861E0", + "name": "heart-off", + "codepoint": "F0759", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "E84E6A73-A238-4F6D-9A63-658358BB4A06", + "name": "heart-off-outline", + "codepoint": "F1434", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "9BCD22D2-7304-4BB3-9C41-3431ED13542A", + "name": "heart-outline", + "codepoint": "F02D5", + "aliases": [ + "favorite-border", + "favourite-border", + "favorite-outline", + "favourite-outline" + ], + "tags": [ + "Shape", + "Gaming \/ RPG" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "412C8571-A7A4-4029-B5D4-7C67D2B243CC", + "name": "heart-plus", + "codepoint": "F142E", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "5.2.45" + }, + { + "id": "644CF687-E873-46D4-9595-FF3F1C455861", + "name": "heart-plus-outline", + "codepoint": "F1431", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "389486F3-5A73-4C65-8EA6-43D432F6490E", + "name": "heart-pulse", + "codepoint": "F05F6", + "aliases": [ + "heart-vitals" + ], + "tags": [ + "Medical \/ Hospital" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "B01C8EB2-7765-4858-846F-078ADBFDD33B", + "name": "heart-remove", + "codepoint": "F1430", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "3FB606F6-D5C4-4036-80D0-EFD3F8A0E06B", + "name": "heart-remove-outline", + "codepoint": "F1433", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "E0A4635A-2115-425E-8103-4C88CBDB10F3", + "name": "heart-settings", + "codepoint": "F1665", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "9B32C2D5-B2BE-4646-9C41-53F10F7C1628", + "name": "heart-settings-outline", + "codepoint": "F1666", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "47397A0C-273D-4D13-A4FD-61572F3E4953", + "name": "helicopter", + "codepoint": "F0AC2", + "aliases": [], + "tags": [ + "Transportation + Flying" + ], + "author": "Doodlemandk", + "version": "2.7.94" + }, + { + "id": "62675A10-D453-40EB-8AED-A789A39EEF11", + "name": "help", + "codepoint": "F02D6", + "aliases": [ + "question-mark" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "6EFBBE96-37EA-4372-98CC-9B0D84B92C34", + "name": "help-box", + "codepoint": "F078B", + "aliases": [ + "question-mark-box" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "49B41103-DD15-4FF4-A18A-44D8586704B6", + "name": "help-circle", + "codepoint": "F02D7", + "aliases": [ + "question-mark-circle" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "60E15D8D-3956-4461-91D8-E8059D02ECE6", + "name": "help-circle-outline", + "codepoint": "F0625", + "aliases": [ + "help-outline", + "question-mark-circle-outline" + ], + "tags": [], + "author": "Google", + "version": "1.6.50" + }, + { + "id": "FE0A3DAC-0D3D-4D49-A869-F78B44B26E35", + "name": "help-network", + "codepoint": "F06F5", + "aliases": [ + "question-network" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.8.36" + }, + { + "id": "918BA71B-ED4F-4259-9089-0CF2A1EDCFD1", + "name": "help-network-outline", + "codepoint": "F0C8A", + "aliases": [ + "question-network-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "FC7F2A59-0296-45CC-966D-EF69FB042DD9", + "name": "help-rhombus", + "codepoint": "F0BA5", + "aliases": [ + "question-mark-rhombus" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.0.39" + }, + { + "id": "B08F035A-9304-4D3B-AADD-395971E74294", + "name": "help-rhombus-outline", + "codepoint": "F0BA6", + "aliases": [ + "question-mark-rhombus-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.0.39" + }, + { + "id": "4FB1FDA2-96F8-4983-83B9-470C1526042F", + "name": "hexadecimal", + "codepoint": "F12A7", + "aliases": [], + "tags": [ + "Developer \/ Languages" + ], + "author": "Michael Irigoyen", + "version": "4.7.95" + }, + { + "id": "229D267D-F77F-4F33-ADD4-325647EC2662", + "name": "hexagon", + "codepoint": "F02D8", + "aliases": [], + "tags": [ + "Shape" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "60636193-AC27-470B-BCA5-94CEA29719A8", + "name": "hexagon-multiple", + "codepoint": "F06E1", + "aliases": [ + "hexagons" + ], + "tags": [ + "Shape" + ], + "author": "Austin Andrews", + "version": "1.8.36" + }, + { + "id": "D0D73659-5BB0-4109-A7E1-E4B09D31B940", + "name": "hexagon-multiple-outline", + "codepoint": "F10F2", + "aliases": [], + "tags": [ + "Nature" + ], + "author": "Michael Irigoyen", + "version": "4.3.95" + }, + { + "id": "0A85BE3F-ACF1-4D93-A66B-34C7F29D10A3", + "name": "hexagon-outline", + "codepoint": "F02D9", + "aliases": [], + "tags": [ + "Shape" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "6FD9B907-A06F-4923-9ABB-C977E8F14D0E", + "name": "hexagon-slice-1", + "codepoint": "F0AC3", + "aliases": [], + "tags": [], + "author": "SarinManS", + "version": "2.7.94" + }, + { + "id": "B711E5EB-95CC-4835-A18A-066E1A242DB5", + "name": "hexagon-slice-2", + "codepoint": "F0AC4", + "aliases": [], + "tags": [], + "author": "SarinManS", + "version": "2.7.94" + }, + { + "id": "0F1666BA-D919-4230-96C9-6DD64A82EB3D", + "name": "hexagon-slice-3", + "codepoint": "F0AC5", + "aliases": [], + "tags": [], + "author": "SarinManS", + "version": "2.7.94" + }, + { + "id": "4AD333BE-32D1-4EA2-BA76-05896A9D2698", + "name": "hexagon-slice-4", + "codepoint": "F0AC6", + "aliases": [], + "tags": [], + "author": "SarinManS", + "version": "2.7.94" + }, + { + "id": "4DE91E6B-4F94-40E8-BB70-2B54105C67D0", + "name": "hexagon-slice-5", + "codepoint": "F0AC7", + "aliases": [], + "tags": [], + "author": "SarinManS", + "version": "2.7.94" + }, + { + "id": "0EE5E66B-A73E-455F-BF0B-5FEBC93A58E9", + "name": "hexagon-slice-6", + "codepoint": "F0AC8", + "aliases": [], + "tags": [], + "author": "SarinManS", + "version": "2.7.94" + }, + { + "id": "A965D069-BF40-4F96-B64D-6C1C93F0E2E3", + "name": "hexagram", + "codepoint": "F0AC9", + "aliases": [ + "star", + "christmas-star" + ], + "tags": [ + "Shape", + "Holiday" + ], + "author": "Michael Irigoyen", + "version": "2.7.94" + }, + { + "id": "C1F53791-B46C-4327-B355-AF3175766CB8", + "name": "hexagram-outline", + "codepoint": "F0ACA", + "aliases": [ + "star-outline", + "christmas-star-outline" + ], + "tags": [ + "Shape", + "Holiday" + ], + "author": "Michael Irigoyen", + "version": "2.7.94" + }, + { + "id": "8FC812E7-2B7B-412B-9114-1899203DECC4", + "name": "high-definition", + "codepoint": "F07CF", + "aliases": [ + "hd" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Austin Andrews", + "version": "2.0.46" + }, + { + "id": "BD1F0404-AA98-4FCF-8947-D0589C91A610", + "name": "high-definition-box", + "codepoint": "F0878", + "aliases": [ + "hd-box", + "hd" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Google", + "version": "2.1.99" + }, + { + "id": "81E5D79D-2ECD-4040-9B07-3A0C19792348", + "name": "highway", + "codepoint": "F05F7", + "aliases": [ + "autobahn", + "motorway" + ], + "tags": [ + "Transportation + Road" + ], + "author": "Christopher Schreiner", + "version": "1.5.54" + }, + { + "id": "DA3D64F2-C874-420A-917A-0F66C9854D84", + "name": "hiking", + "codepoint": "F0D7F", + "aliases": [], + "tags": [ + "Sport" + ], + "author": "Google", + "version": "3.4.93" + }, + { + "id": "55AF2D53-7FAD-4A1D-8440-10301C95D3B8", + "name": "history", + "codepoint": "F02DA", + "aliases": [ + "recent", + "latest", + "clock-arrow", + "counterclockwise", + "restore-clock" + ], + "tags": [ + "Date \/ Time" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "7A41C6CC-578B-4125-9647-548A298D5B3C", + "name": "hockey-puck", + "codepoint": "F0879", + "aliases": [], + "tags": [ + "Sport" + ], + "author": "Nick", + "version": "2.1.99" + }, + { + "id": "1D4E526E-EA07-4493-AF7D-C9B62B4CBC77", + "name": "hockey-sticks", + "codepoint": "F087A", + "aliases": [], + "tags": [ + "Sport" + ], + "author": "Google", + "version": "2.1.99" + }, + { + "id": "826E9B16-2A0D-4E8C-9C3A-BBBE3319AE4D", + "name": "hololens", + "codepoint": "F02DB", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "5D085274-15B9-42EC-8CCE-2F94C5EC039C", + "name": "home", + "codepoint": "F02DC", + "aliases": [ + "house" + ], + "tags": [ + "Home Automation", + "Places" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "9A7BCD6C-B4FB-4AE5-B22F-C5B8E2FB3B66", + "name": "home-account", + "codepoint": "F0826", + "aliases": [ + "home-user" + ], + "tags": [ + "Account \/ User", + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "2.1.19" + }, + { + "id": "A13368F4-66F6-4014-968E-7A7B2D99F038", + "name": "home-alert", + "codepoint": "F087B", + "aliases": [ + "home-warning" + ], + "tags": [ + "Home Automation", + "Alert \/ Error" + ], + "author": "Michael Richins", + "version": "2.1.99" + }, + { + "id": "0A46973B-0029-4BCF-9728-F3E13DC9FE91", + "name": "home-alert-outline", + "codepoint": "F15D0", + "aliases": [], + "tags": [ + "Home Automation", + "Alert \/ Error" + ], + "author": "Michael Irigoyen", + "version": "5.6.55" + }, + { + "id": "381A61B9-0D73-4CB8-B525-C67697443F43", + "name": "home-analytics", + "codepoint": "F0EBA", + "aliases": [ + "chart-home", + "home-chart", + "home-report" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Richins", + "version": "3.7.94" + }, + { + "id": "80923357-29F3-429E-A186-F3561451398C", + "name": "home-assistant", + "codepoint": "F07D0", + "aliases": [], + "tags": [ + "Brand \/ Logo", + "Home Automation" + ], + "author": "Contributors", + "version": "2.0.46" + }, + { + "id": "FD2567BF-09EC-4871-B3E8-DAE9CDCF3A38", + "name": "home-automation", + "codepoint": "F07D1", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "2.0.46" + }, + { + "id": "3BCACB97-3EEE-453B-81A7-1136F167B23D", + "name": "home-battery", + "codepoint": "F1901", + "aliases": [ + "home-energy", + "home-power", + "home-electricity" + ], + "tags": [ + "Home Automation", + "Battery" + ], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "EFDF1C9C-3566-4312-ACBC-AC5B10EA28DE", + "name": "home-battery-outline", + "codepoint": "F1902", + "aliases": [ + "home-energy-outline", + "home-power-outline", + "home-electricity-outline" + ], + "tags": [ + "Home Automation", + "Battery" + ], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "59CB69E0-6F23-4572-90C7-9B360121C266", + "name": "home-circle", + "codepoint": "F07D2", + "aliases": [ + "house-circle" + ], + "tags": [ + "Home Automation" + ], + "author": "bentraynham", + "version": "2.0.46" + }, + { + "id": "2AD26260-A0C1-42BE-99A2-889F460EF25D", + "name": "home-circle-outline", + "codepoint": "F104D", + "aliases": [ + "house-circle-outline" + ], + "tags": [ + "Home Automation" + ], + "author": "Terren", + "version": "4.1.95" + }, + { + "id": "4D49A420-B80E-48FA-A331-A556002EA46F", + "name": "home-city", + "codepoint": "F0D15", + "aliases": [ + "house-city" + ], + "tags": [], + "author": "Google", + "version": "3.3.92" + }, + { + "id": "69A854BB-0CC9-4E1B-855E-FD26E9E6D119", + "name": "home-city-outline", + "codepoint": "F0D16", + "aliases": [ + "house-city-outline" + ], + "tags": [], + "author": "Google", + "version": "3.3.92" + }, + { + "id": "6D381D99-24F0-46B5-AD04-F527B97830AE", + "name": "home-edit", + "codepoint": "F1159", + "aliases": [], + "tags": [ + "Home Automation", + "Edit \/ Modify" + ], + "author": "Simran", + "version": "4.4.95" + }, + { + "id": "B56AB73F-0A3C-4562-88DF-ED70B51877DE", + "name": "home-edit-outline", + "codepoint": "F115A", + "aliases": [], + "tags": [ + "Home Automation", + "Edit \/ Modify" + ], + "author": "Simran", + "version": "4.4.95" + }, + { + "id": "6D0FFE6B-65D9-4D72-9743-C2537F3E6307", + "name": "home-export-outline", + "codepoint": "F0F9B", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "3.9.97" + }, + { + "id": "AC4506FC-3368-416C-8E9A-BADD6F66E7D5", + "name": "home-flood", + "codepoint": "F0EFA", + "aliases": [], + "tags": [ + "Weather", + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "3.8.95" + }, + { + "id": "6732D314-97CA-4433-9CB5-260359AC131F", + "name": "home-floor-0", + "codepoint": "F0DD2", + "aliases": [ + "house-floor-0", + "home-floor-zero", + "house-floor-zero" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "3.5.94" + }, + { + "id": "B83F1FBD-0D66-4CEE-91FC-640B78AABF4E", + "name": "home-floor-1", + "codepoint": "F0D80", + "aliases": [ + "house-floor-1", + "home-floor-one", + "house-floor-one", + "home-floor-first", + "house-floor-first" + ], + "tags": [ + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "3.4.93" + }, + { + "id": "FB09500A-A871-409C-B7D4-B18BDF0D8511", + "name": "home-floor-2", + "codepoint": "F0D81", + "aliases": [ + "house-floor-2", + "home-floor-two", + "house-floor-two", + "home-floor-second", + "house-floor-second" + ], + "tags": [ + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "3.4.93" + }, + { + "id": "E7714A6B-EE3B-4819-81B8-1E9FF342598F", + "name": "home-floor-3", + "codepoint": "F0D82", + "aliases": [ + "house-floor-3", + "home-floor-three", + "house-floor-three", + "home-floor-third", + "house-floor-third" + ], + "tags": [ + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "3.4.93" + }, + { + "id": "5A227D09-2828-4606-81B8-7622D7C8724C", + "name": "home-floor-a", + "codepoint": "F0D83", + "aliases": [ + "home-floor-attic", + "house-floor-a", + "house-floor-attic" + ], + "tags": [ + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "3.4.93" + }, + { + "id": "004E747A-FD00-4B6E-8AEF-2031D217D035", + "name": "home-floor-b", + "codepoint": "F0D84", + "aliases": [ + "home-floor-basement", + "house-floor-b", + "house-floor-basement" + ], + "tags": [ + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "3.4.93" + }, + { + "id": "B2D19D07-ACC6-462B-BD11-50CC805E104B", + "name": "home-floor-g", + "codepoint": "F0D85", + "aliases": [ + "home-floor-ground", + "house-floor-g", + "house-floor-ground" + ], + "tags": [ + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "3.4.93" + }, + { + "id": "D6B418D4-1B34-4E5C-B406-0E27B72DC0AC", + "name": "home-floor-l", + "codepoint": "F0D86", + "aliases": [ + "home-floor-loft", + "home-floor-lower", + "house-floor-l", + "house-floor-loft", + "house-floor-lower" + ], + "tags": [ + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "3.4.93" + }, + { + "id": "8809DA4E-CB12-48C9-AA91-8E377701862F", + "name": "home-floor-negative-1", + "codepoint": "F0DD3", + "aliases": [ + "house-floor-negative-1", + "home-floor-negative-one", + "home-floor-minus-1", + "home-floor-minus-one", + "house-floor-negative-one", + "house-floor-minus-1", + "house-floor-minus-one" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "3.5.94" + }, + { + "id": "B4E54DBF-164E-41D3-8C9F-D7E67C9F9B10", + "name": "home-group", + "codepoint": "F0DD4", + "aliases": [ + "house-group", + "neighbourhood", + "estate", + "housing-estate" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Richins", + "version": "3.5.94" + }, + { + "id": "786A8373-A89F-4905-9698-B8AD3CF4D230", + "name": "home-group-minus", + "codepoint": "F19C1", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.5.95" + }, + { + "id": "6A0C18F6-510F-4AC3-88FE-6B24C7669BAD", + "name": "home-group-plus", + "codepoint": "F19C0", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "LEANNOVATORS.TECH", + "version": "6.5.95" + }, + { + "id": "A4438B5F-FA4C-4C73-8514-3D0364BBB7A5", + "name": "home-group-remove", + "codepoint": "F19C2", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.5.95" + }, + { + "id": "513D2CF1-31F5-4F3B-8543-2499ABB20924", + "name": "home-heart", + "codepoint": "F0827", + "aliases": [ + "family" + ], + "tags": [ + "Home Automation", + "People \/ Family" + ], + "author": "Google", + "version": "2.1.19" + }, + { + "id": "041C4C4F-6D85-4F8B-90CC-FB17E9202862", + "name": "home-import-outline", + "codepoint": "F0F9C", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "3.9.97" + }, + { + "id": "06C5C86B-2918-4501-B247-890B18874E8E", + "name": "home-lightbulb", + "codepoint": "F1251", + "aliases": [ + "home-bulb" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Richins", + "version": "4.6.95" + }, + { + "id": "5F0E0727-76E9-4793-9406-FD513FF7CB58", + "name": "home-lightbulb-outline", + "codepoint": "F1252", + "aliases": [ + "home-bulb-outline" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Richins", + "version": "4.6.95" + }, + { + "id": "077E7728-7FDE-4846-9F55-9818EB397D58", + "name": "home-lightning-bolt", + "codepoint": "F1903", + "aliases": [ + "home-energy", + "home-power", + "home-electricity", + "home-flash" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "12538408-E644-4222-84BF-9A64670E9187", + "name": "home-lightning-bolt-outline", + "codepoint": "F1904", + "aliases": [ + "home-energy", + "home-power", + "home-electricity", + "home-flash" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "ECB8FF23-47EC-4038-9673-1A3A1619C071", + "name": "home-lock", + "codepoint": "F08EB", + "aliases": [], + "tags": [ + "Home Automation", + "Lock" + ], + "author": "Nick", + "version": "2.3.50" + }, + { + "id": "0E63785D-BB37-4A60-B09D-F985DC4FAD5F", + "name": "home-lock-open", + "codepoint": "F08EC", + "aliases": [], + "tags": [ + "Home Automation", + "Lock" + ], + "author": "Nick", + "version": "2.3.50" + }, + { + "id": "D543BDC6-BC40-4A36-B2F0-60313D8F4EEB", + "name": "home-map-marker", + "codepoint": "F05F8", + "aliases": [ + "house-map-marker", + "home-location" + ], + "tags": [ + "Home Automation", + "Navigation" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "825AF439-6839-48DA-A6D4-B62BB2710103", + "name": "home-minus", + "codepoint": "F0974", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Peter Noble", + "version": "2.4.85" + }, + { + "id": "8DB9C230-99DF-4137-9A32-2D1058D824EA", + "name": "home-minus-outline", + "codepoint": "F13D5", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "6949FE9A-5B8C-4EDF-B74E-E0268A4F69F1", + "name": "home-modern", + "codepoint": "F02DD", + "aliases": [ + "house-modern" + ], + "tags": [ + "Home Automation" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "B4E2287E-8872-48AD-B765-83D82AF66CA3", + "name": "home-outline", + "codepoint": "F06A1", + "aliases": [ + "house-outline" + ], + "tags": [ + "Home Automation" + ], + "author": "Google", + "version": "1.7.12" + }, + { + "id": "E844FA32-E45E-4D71-B74C-34DFAD7F6830", + "name": "home-plus", + "codepoint": "F0975", + "aliases": [ + "home-add" + ], + "tags": [ + "Home Automation" + ], + "author": "Peter Noble", + "version": "2.4.85" + }, + { + "id": "CDAF170C-BB2C-4217-9B96-D99EE9B725F9", + "name": "home-plus-outline", + "codepoint": "F13D6", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "FEF8AC85-F9E6-4C9B-B0C2-A5158AAD8A8B", + "name": "home-remove", + "codepoint": "F1247", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "4.6.95" + }, + { + "id": "CD3129FD-EDCB-4B65-85F8-900E59E308B7", + "name": "home-remove-outline", + "codepoint": "F13D7", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "32EF139A-14EB-4767-ADDD-08120FB530A0", + "name": "home-roof", + "codepoint": "F112B", + "aliases": [ + "home-chimney" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "4.3.95" + }, + { + "id": "156F3CF1-D7CD-487B-AF83-4A7270413A62", + "name": "home-search", + "codepoint": "F13B0", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "5.0.45" + }, + { + "id": "D261AFB1-2C65-41D6-AE5A-E25D2FC120ED", + "name": "home-search-outline", + "codepoint": "F13B1", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "5.0.45" + }, + { + "id": "1DBBF908-7F93-4FAE-8A2A-555851E7C3BE", + "name": "home-switch", + "codepoint": "F1794", + "aliases": [ + "home-swap" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "4C8FD8F1-0690-4B2D-A614-A03F58D48370", + "name": "home-switch-outline", + "codepoint": "F1795", + "aliases": [ + "home-swap-outline" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "833E3484-3C40-4F98-96CB-537FB6225711", + "name": "home-thermometer", + "codepoint": "F0F54", + "aliases": [ + "home-climate", + "home-temperature" + ], + "tags": [ + "Home Automation" + ], + "author": "Tim Grelka", + "version": "3.9.97" + }, + { + "id": "2782AA6E-C46A-4CEC-B753-35768CA30163", + "name": "home-thermometer-outline", + "codepoint": "F0F55", + "aliases": [ + "home-climate-outline", + "home-temperature-outline" + ], + "tags": [ + "Home Automation" + ], + "author": "Hans B\u00f6hm", + "version": "3.9.97" + }, + { + "id": "7AFA8EEF-6A41-4A7D-97D2-F9F03DB24DB0", + "name": "home-variant", + "codepoint": "F02DE", + "aliases": [ + "house-variant" + ], + "tags": [ + "Home Automation" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "5DF1214D-79EC-4EA0-B435-CB73B877DCA9", + "name": "home-variant-outline", + "codepoint": "F0BA7", + "aliases": [ + "house-variant-outline" + ], + "tags": [ + "Home Automation" + ], + "author": "Google", + "version": "3.0.39" + }, + { + "id": "8A2A8364-B33C-4931-BF78-EB171C569D5F", + "name": "hook", + "codepoint": "F06E2", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "1.8.36" + }, + { + "id": "984487C2-EBB2-474C-8914-046E6BDC6EC6", + "name": "hook-off", + "codepoint": "F06E3", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "1.8.36" + }, + { + "id": "088F07BD-BEA9-46D5-A2DF-0B9FA37BBF99", + "name": "hoop-house", + "codepoint": "F0E56", + "aliases": [ + "green-house" + ], + "tags": [ + "Agriculture", + "Home Automation" + ], + "author": "Jeff Anders", + "version": "3.6.95" + }, + { + "id": "E82A026A-DD54-4C5F-8961-A7C97754CF04", + "name": "hops", + "codepoint": "F02DF", + "aliases": [], + "tags": [ + "Food \/ Drink", + "Agriculture" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "7B242778-9748-4E06-8738-E3325EE88F08", + "name": "horizontal-rotate-clockwise", + "codepoint": "F10F3", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.3.95" + }, + { + "id": "C6DC8E07-B9BA-4F4E-B415-40AAD8AE17A4", + "name": "horizontal-rotate-counterclockwise", + "codepoint": "F10F4", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.3.95" + }, + { + "id": "EA8A87CE-C2FE-4C05-8CD0-32C9716737D4", + "name": "horse", + "codepoint": "F15BF", + "aliases": [ + "equestrian" + ], + "tags": [ + "Transportation + Other", + "Animal", + "Agriculture" + ], + "author": "Colton Wiscombe", + "version": "5.6.55" + }, + { + "id": "784CE1E7-3523-4E04-910C-3E969FEA4E55", + "name": "horse-human", + "codepoint": "F15C0", + "aliases": [ + "horseback-riding", + "horse-riding", + "equestrian" + ], + "tags": [ + "Transportation + Other", + "Agriculture" + ], + "author": "Colton Wiscombe", + "version": "5.6.55" + }, + { + "id": "359CB8BA-79AF-43F7-AE85-562432388C2E", + "name": "horse-variant", + "codepoint": "F15C1", + "aliases": [ + "equestrian-variant" + ], + "tags": [ + "Animal", + "Agriculture" + ], + "author": "Colton Wiscombe", + "version": "5.6.55" + }, + { + "id": "B78A53B2-16C0-40FF-8923-9EE03B7D6059", + "name": "horse-variant-fast", + "codepoint": "F186E", + "aliases": [], + "tags": [ + "Animal", + "Agriculture" + ], + "author": "Colton Wiscombe", + "version": "6.2.95" + }, + { + "id": "1955609E-8F53-41B3-9C71-0A71E4FBEED3", + "name": "horseshoe", + "codepoint": "F0A58", + "aliases": [ + "luck" + ], + "tags": [ + "Sport", + "Agriculture" + ], + "author": "Michael Irigoyen", + "version": "2.6.95" + }, + { + "id": "D7402851-FBF5-4861-8B6E-D141EBBDBB70", + "name": "hospital", + "codepoint": "F0FF6", + "aliases": [ + "swiss-cross", + "dispensary" + ], + "tags": [ + "Medical \/ Hospital" + ], + "author": "Michael Irigoyen", + "version": "4.0.96" + }, + { + "id": "83D0E9E7-B196-4515-A9C8-6E6FEB03ADD1", + "name": "hospital-box", + "codepoint": "F02E0", + "aliases": [ + "local-hospital", + "swiss-cross-box", + "dispensary-box" + ], + "tags": [ + "Medical \/ Hospital" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "2D50B6E0-C01B-4EDE-BA85-A14757A27D54", + "name": "hospital-box-outline", + "codepoint": "F0FF7", + "aliases": [ + "swiss-cross-box-outline", + "dispensary-box-outline" + ], + "tags": [ + "Medical \/ Hospital" + ], + "author": "Michael Irigoyen", + "version": "4.0.96" + }, + { + "id": "D4FAA416-4429-451F-B4EE-647CCABDF3EB", + "name": "hospital-building", + "codepoint": "F02E1", + "aliases": [], + "tags": [ + "Places", + "Medical \/ Hospital" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "FA30BC13-BE77-44F6-BEB1-942749E019A7", + "name": "hospital-marker", + "codepoint": "F02E2", + "aliases": [ + "hospital-location" + ], + "tags": [ + "Medical \/ Hospital" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "832FBA55-F65E-4706-93B1-9018D651CAA3", + "name": "hot-tub", + "codepoint": "F0828", + "aliases": [], + "tags": [], + "author": "Google", + "version": "2.1.19" + }, + { + "id": "0AAC6125-3343-4D4A-AF22-69BC930FA96F", + "name": "hours-24", + "codepoint": "F1478", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Haley Halcyon", + "version": "5.2.45" + }, + { + "id": "04125F27-F2CB-4304-8C9D-81E4D72A0B6E", + "name": "hubspot", + "codepoint": "F0D17", + "aliases": [], + "tags": [], + "author": "Contributors", + "version": "3.3.92" + }, + { + "id": "788D7C34-3E50-468B-A205-D953D844F1B7", + "name": "hulu", + "codepoint": "F0829", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "2.1.19" + }, + { + "id": "B05E458D-886A-491D-9969-156562C52105", + "name": "human", + "codepoint": "F02E6", + "aliases": [ + "accessibility" + ], + "tags": [ + "People \/ Family" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "CF40C1CD-0F3A-4BC7-A1D7-7C33C8EFD307", + "name": "human-baby-changing-table", + "codepoint": "F138B", + "aliases": [], + "tags": [ + "People \/ Family", + "Medical \/ Hospital" + ], + "author": "Moma Design Studio", + "version": "5.0.45" + }, + { + "id": "40DD914F-1089-4A7B-AA3D-630C643E8FFF", + "name": "human-cane", + "codepoint": "F1581", + "aliases": [ + "elderly" + ], + "tags": [ + "Medical \/ Hospital" + ], + "author": "Google", + "version": "5.5.55" + }, + { + "id": "98227CA7-A56F-4C3F-85FC-0FAD616B9762", + "name": "human-capacity-decrease", + "codepoint": "F159B", + "aliases": [ + "human-capacity-reduce" + ], + "tags": [ + "Account \/ User", + "Transportation + Other", + "People \/ Family" + ], + "author": "Google", + "version": "5.5.55" + }, + { + "id": "AFFFC442-E5B7-4D2C-9B87-81D2AD52997A", + "name": "human-capacity-increase", + "codepoint": "F159C", + "aliases": [], + "tags": [ + "Account \/ User", + "Transportation + Other", + "People \/ Family" + ], + "author": "Simran", + "version": "5.5.55" + }, + { + "id": "ABBC3761-B437-4800-9C57-BCBE5AC8FA31", + "name": "human-child", + "codepoint": "F02E7", + "aliases": [], + "tags": [ + "People \/ Family" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "24AA9CD4-6B25-4B7C-A3A2-0C1A29DC5E1F", + "name": "human-dolly", + "codepoint": "F1980", + "aliases": [ + "human-hand-truck", + "human-trolley" + ], + "tags": [ + "People \/ Family" + ], + "author": "Michael Irigoyen", + "version": "6.5.95" + }, + { + "id": "1B83707C-D3DF-4181-93D5-5B513B649E1C", + "name": "human-edit", + "codepoint": "F14E8", + "aliases": [], + "tags": [ + "People \/ Family", + "Edit \/ Modify" + ], + "author": "Austin Andrews", + "version": "5.4.55" + }, + { + "id": "059421A9-4F27-493A-8835-4B49B5286366", + "name": "human-female", + "codepoint": "F0649", + "aliases": [ + "woman" + ], + "tags": [ + "People \/ Family" + ], + "author": "Google", + "version": "1.6.50" + }, + { + "id": "6FAD3199-1AC7-4265-84B0-E72818AD2447", + "name": "human-female-boy", + "codepoint": "F0A59", + "aliases": [ + "mother", + "mom", + "woman-child", + "mum" + ], + "tags": [ + "People \/ Family" + ], + "author": "Henrique C\u00e9sar Madeira", + "version": "2.6.95" + }, + { + "id": "DCBC03CA-8A3A-41FD-9C96-BA738EDA9F05", + "name": "human-female-dance", + "codepoint": "F15C9", + "aliases": [ + "ballet" + ], + "tags": [], + "author": "Michael Richins", + "version": "5.6.55" + }, + { + "id": "63BC56A3-B593-4789-BEAE-2696E6DC2CB6", + "name": "human-female-female", + "codepoint": "F0A5A", + "aliases": [ + "woman-woman", + "women" + ], + "tags": [ + "People \/ Family" + ], + "author": "Henrique C\u00e9sar Madeira", + "version": "2.6.95" + }, + { + "id": "0F41B01E-9981-4BF8-8CC9-A44593ECB3BA", + "name": "human-female-girl", + "codepoint": "F0A5B", + "aliases": [ + "mother", + "mom", + "woman-child", + "mum" + ], + "tags": [ + "People \/ Family" + ], + "author": "Henrique C\u00e9sar Madeira", + "version": "2.6.95" + }, + { + "id": "59728070-C172-44A6-9076-5D5C29D08880", + "name": "human-greeting", + "codepoint": "F17C4", + "aliases": [ + "human-hello", + "human-welcome" + ], + "tags": [ + "People \/ Family" + ], + "author": "Google", + "version": "6.1.95" + }, + { + "id": "200F7489-F20F-4506-A27A-081A0CA8A312", + "name": "human-greeting-proximity", + "codepoint": "F159D", + "aliases": [ + "connect-without-contact" + ], + "tags": [ + "Account \/ User", + "People \/ Family" + ], + "author": "Google", + "version": "5.5.55" + }, + { + "id": "1C9856E1-6945-464E-85E7-A46C4A974C9D", + "name": "human-greeting-variant", + "codepoint": "F064A", + "aliases": [ + "human-hello-variant" + ], + "tags": [ + "People \/ Family" + ], + "author": "Google", + "version": "1.6.50" + }, + { + "id": "10E7CAB4-7B15-4F73-82B1-E42562B9103C", + "name": "human-handsdown", + "codepoint": "F064B", + "aliases": [], + "tags": [ + "People \/ Family" + ], + "author": "Google", + "version": "1.6.50" + }, + { + "id": "FA427178-750A-425C-81F2-B46DDC061771", + "name": "human-handsup", + "codepoint": "F064C", + "aliases": [], + "tags": [ + "People \/ Family" + ], + "author": "Google", + "version": "1.6.50" + }, + { + "id": "1369FF9C-0E57-4644-BE89-7B5EED0131B0", + "name": "human-male", + "codepoint": "F064D", + "aliases": [ + "man" + ], + "tags": [ + "People \/ Family" + ], + "author": "Google", + "version": "1.6.50" + }, + { + "id": "A989F68B-23B9-4B50-BE4D-E3DF6E9420C9", + "name": "human-male-board", + "codepoint": "F0890", + "aliases": [ + "teacher", + "teaching", + "lecture", + "college", + "blackboard", + "whiteboard", + "human-man-board" + ], + "tags": [], + "author": "Michael Richins", + "version": "2.1.99" + }, + { + "id": "7016027D-C32A-4462-A9E5-98132FA518B4", + "name": "human-male-board-poll", + "codepoint": "F0846", + "aliases": [ + "teach-poll" + ], + "tags": [], + "author": "MaksUr", + "version": "2.1.19" + }, + { + "id": "07AB2970-AE77-417B-BEB3-8B6FDEF43EDE", + "name": "human-male-boy", + "codepoint": "F0A5C", + "aliases": [ + "father", + "dad", + "man-child" + ], + "tags": [ + "People \/ Family" + ], + "author": "Henrique C\u00e9sar Madeira", + "version": "2.6.95" + }, + { + "id": "4FDB5D5D-02F8-4B99-AA54-C9344F1DB02D", + "name": "human-male-child", + "codepoint": "F138C", + "aliases": [], + "tags": [ + "People \/ Family" + ], + "author": "Moma Design Studio", + "version": "5.0.45" + }, + { + "id": "0FC16450-7A7E-43C5-AED4-E27C4A6BFF99", + "name": "human-male-female", + "codepoint": "F02E8", + "aliases": [ + "wc", + "man-woman" + ], + "tags": [ + "People \/ Family" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "26B43897-F5DF-4CBC-A89F-514E200B5937", + "name": "human-male-female-child", + "codepoint": "F1823", + "aliases": [ + "family", + "mom-dad-child" + ], + "tags": [ + "People \/ Family" + ], + "author": "Google", + "version": "6.1.95" + }, + { + "id": "764B2DA8-53A8-4D7D-A156-D73CDA4F0C63", + "name": "human-male-girl", + "codepoint": "F0A5D", + "aliases": [ + "father", + "dad", + "man-child" + ], + "tags": [ + "People \/ Family" + ], + "author": "Henrique C\u00e9sar Madeira", + "version": "2.6.95" + }, + { + "id": "38807077-1E35-4599-83CA-110DA473794A", + "name": "human-male-height", + "codepoint": "F0EFB", + "aliases": [], + "tags": [ + "Medical \/ Hospital" + ], + "author": "Michael Richins", + "version": "3.8.95" + }, + { + "id": "51DB457C-C26A-4579-8C34-9ED95D270EA4", + "name": "human-male-height-variant", + "codepoint": "F0EFC", + "aliases": [], + "tags": [ + "Medical \/ Hospital" + ], + "author": "Michael Richins", + "version": "3.8.95" + }, + { + "id": "AB5B56A8-CB56-4502-B388-BA02ECEB2D1A", + "name": "human-male-male", + "codepoint": "F0A5E", + "aliases": [ + "man-man", + "men" + ], + "tags": [ + "People \/ Family" + ], + "author": "Henrique C\u00e9sar Madeira", + "version": "2.6.95" + }, + { + "id": "0993FCF5-5C89-4F54-ABFC-310CDF2AED15", + "name": "human-non-binary", + "codepoint": "F1848", + "aliases": [ + "human-genderless", + "human-transgender" + ], + "tags": [ + "People \/ Family" + ], + "author": "Michael Irigoyen", + "version": "6.2.95" + }, + { + "id": "05DB88BC-FA28-4DF1-8308-541E338E0234", + "name": "human-pregnant", + "codepoint": "F05CF", + "aliases": [ + "pregnant-woman" + ], + "tags": [ + "People \/ Family" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "FAD84EF2-E1C0-4834-8FFD-677E424F2693", + "name": "human-queue", + "codepoint": "F1571", + "aliases": [ + "human-line" + ], + "tags": [ + "People \/ Family" + ], + "author": "Haley Halcyon", + "version": "5.5.55" + }, + { + "id": "08B3209B-7D10-4C1C-9962-E4DAC71DD06F", + "name": "human-scooter", + "codepoint": "F11E9", + "aliases": [], + "tags": [ + "Sport", + "Transportation + Other" + ], + "author": "Google", + "version": "4.5.95" + }, + { + "id": "B0529853-AE3D-475C-94EB-0C775E934806", + "name": "human-wheelchair", + "codepoint": "F138D", + "aliases": [], + "tags": [ + "People \/ Family" + ], + "author": "Moma Design Studio", + "version": "5.0.45" + }, + { + "id": "D85C481D-1B39-47A3-92D6-975E862AF70A", + "name": "human-white-cane", + "codepoint": "F1981", + "aliases": [ + "human-blind" + ], + "tags": [ + "People \/ Family" + ], + "author": "Michael Irigoyen", + "version": "6.5.95" + }, + { + "id": "9A2A1178-7E30-49E7-A639-2D16464EA7EA", + "name": "humble-bundle", + "codepoint": "F0744", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.9.32" + }, + { + "id": "EE07113F-BD81-424C-B228-7EC802F7CFB2", + "name": "hvac", + "codepoint": "F1352", + "aliases": [ + "heating", + "ventilation", + "air-conditioning" + ], + "tags": [ + "Home Automation" + ], + "author": "Google", + "version": "4.9.95" + }, + { + "id": "30019019-F955-40EE-B811-C634718E6FAD", + "name": "hvac-off", + "codepoint": "F159E", + "aliases": [ + "heating-off", + "ventilation-off", + "air-conditioning-off" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.5.55" + }, + { + "id": "FBFEC6FC-C311-4B53-8445-18B604AA7C12", + "name": "hydraulic-oil-level", + "codepoint": "F1324", + "aliases": [], + "tags": [ + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "4.9.95" + }, + { + "id": "54AC2207-9F8D-4A1D-B8B4-ED626D0C8C38", + "name": "hydraulic-oil-temperature", + "codepoint": "F1325", + "aliases": [], + "tags": [ + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "4.9.95" + }, + { + "id": "97D5D644-DB37-4DA8-8B37-444B242A88EF", + "name": "hydro-power", + "codepoint": "F12E5", + "aliases": [ + "hydraulic-turbine", + "water-turbine", + "watermill" + ], + "tags": [ + "Device \/ Tech" + ], + "author": "Hans B\u00f6hm", + "version": "4.8.95" + }, + { + "id": "B1407DA8-3E25-4878-A31F-34112A2D586B", + "name": "hydrogen-station", + "codepoint": "F1894", + "aliases": [], + "tags": [ + "Automotive" + ], + "author": "Hans B\u00f6hm", + "version": "6.2.95" + }, + { + "id": "C8D5186F-BF39-40DA-9F7A-747DB166EABD", + "name": "ice-cream", + "codepoint": "F082A", + "aliases": [], + "tags": [ + "Food \/ Drink" + ], + "author": "Google", + "version": "2.1.19" + }, + { + "id": "9620A768-2570-423E-8D3C-D65C9CACA7EC", + "name": "ice-cream-off", + "codepoint": "F0E52", + "aliases": [], + "tags": [ + "Food \/ Drink" + ], + "author": "Simran", + "version": "3.6.95" + }, + { + "id": "58AA127F-3523-4B91-AFED-018FA36D0876", + "name": "ice-pop", + "codepoint": "F0EFD", + "aliases": [ + "popsicle" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Nikos Pappas", + "version": "3.8.95" + }, + { + "id": "44423F53-F28B-49F5-86F1-D71FAC4B4C07", + "name": "id-card", + "codepoint": "F0FC0", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "4.0.96" + }, + { + "id": "58048473-346E-4473-A18D-36C29B789322", + "name": "identifier", + "codepoint": "F0EFE", + "aliases": [ + "key" + ], + "tags": [ + "Developer \/ Languages" + ], + "author": "Austin Andrews", + "version": "3.8.95" + }, + { + "id": "86B5194A-AB94-4C20-8110-FA463B705B39", + "name": "ideogram-cjk", + "codepoint": "F1331", + "aliases": [ + "ideogram-chinese-japanese-korean", + "writing-system-cjk" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Haley Halcyon", + "version": "4.9.95" + }, + { + "id": "1D315F53-EBD0-42C7-89D6-5E682B756B22", + "name": "ideogram-cjk-variant", + "codepoint": "F1332", + "aliases": [ + "ideogram-chinese-japanese-korean-variant", + "writing-system-cjk-variant" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Haley Halcyon", + "version": "4.9.95" + }, + { + "id": "3238BA72-FEE8-4C90-A440-AD701359A7BC", + "name": "image", + "codepoint": "F02E9", + "aliases": [ + "insert-photo" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "DD2262AA-A145-4788-899D-46D807B4FC0D", + "name": "image-album", + "codepoint": "F02EA", + "aliases": [ + "photo-album", + "book-image" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "D23B9039-C6D4-45F8-B625-EEDE883FF5BD", + "name": "image-area", + "codepoint": "F02EB", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "3BE3AA75-C604-45F3-9DD3-5E8731201F08", + "name": "image-area-close", + "codepoint": "F02EC", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "F528B8DF-1FE3-47C0-B406-70FAC5718CE1", + "name": "image-auto-adjust", + "codepoint": "F0FC1", + "aliases": [], + "tags": [ + "Photography" + ], + "author": "Google", + "version": "4.0.96" + }, + { + "id": "40DCC37F-8A3F-4C15-97E8-2AB88B4DC756", + "name": "image-broken", + "codepoint": "F02ED", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "D243B11E-D824-4185-B14F-B1C53DB11C24", + "name": "image-broken-variant", + "codepoint": "F02EE", + "aliases": [ + "broken-image" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "3E168631-4E4A-47D7-839A-CEB6B4640510", + "name": "image-edit", + "codepoint": "F11E3", + "aliases": [], + "tags": [ + "Edit \/ Modify" + ], + "author": "frankgrinaert", + "version": "4.5.95" + }, + { + "id": "DD3FFC3D-A4AF-4F1D-8239-8F5195BC4C29", + "name": "image-edit-outline", + "codepoint": "F11E4", + "aliases": [], + "tags": [ + "Edit \/ Modify" + ], + "author": "Michael Irigoyen", + "version": "4.5.95" + }, + { + "id": "7D3932BA-9061-40D7-B624-044EE7A7B445", + "name": "image-filter-black-white", + "codepoint": "F02F0", + "aliases": [ + "filter-b-and-w" + ], + "tags": [ + "Photography" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "E3745997-1AD2-4D79-83FE-72ADE96E3C69", + "name": "image-filter-center-focus", + "codepoint": "F02F1", + "aliases": [ + "image-filter-centre-focus" + ], + "tags": [ + "Photography" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "3A8D45DA-5897-4B18-BDA5-951967BD4CF8", + "name": "image-filter-center-focus-strong", + "codepoint": "F0EFF", + "aliases": [], + "tags": [ + "Photography" + ], + "author": "Google", + "version": "3.8.95" + }, + { + "id": "0012643E-5753-42C0-A1CF-E4FBB5D5E311", + "name": "image-filter-center-focus-strong-outline", + "codepoint": "F0F00", + "aliases": [], + "tags": [ + "Photography" + ], + "author": "Google", + "version": "3.8.95" + }, + { + "id": "50F3F396-4286-4D09-B726-4F626649BC04", + "name": "image-filter-center-focus-weak", + "codepoint": "F02F2", + "aliases": [ + "image-filter-centre-focus-weak" + ], + "tags": [ + "Photography" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "882F82B8-EDF8-4F1A-A6BA-9C6DAEDBB259", + "name": "image-filter-drama", + "codepoint": "F02F3", + "aliases": [], + "tags": [ + "Photography", + "Nature" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "8EC8847F-E96F-4D14-BF88-F4BE47856865", + "name": "image-filter-frames", + "codepoint": "F02F4", + "aliases": [], + "tags": [ + "Photography" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "999CF81E-71B7-48E1-8B8F-70FDE391F647", + "name": "image-filter-hdr", + "codepoint": "F02F5", + "aliases": [ + "mountain", + "landscape" + ], + "tags": [ + "Photography", + "Nature" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "56164312-7555-4017-8A1A-48954BE7F7C5", + "name": "image-filter-none", + "codepoint": "F02F6", + "aliases": [], + "tags": [ + "Photography" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "368537EA-9261-4097-A1FA-D33EE48A7D59", + "name": "image-filter-tilt-shift", + "codepoint": "F02F7", + "aliases": [], + "tags": [ + "Photography" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "0E6F8B1C-14D2-4A98-9414-FFC4B2146748", + "name": "image-filter-vintage", + "codepoint": "F02F8", + "aliases": [], + "tags": [ + "Photography", + "Nature" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "27E31ADA-EF15-4A4E-A17A-45F4C032256F", + "name": "image-frame", + "codepoint": "F0E49", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.6.95" + }, + { + "id": "39EFA2D6-FC32-491C-8ABE-384AA47B94D3", + "name": "image-marker", + "codepoint": "F177B", + "aliases": [ + "image-location" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "754F7051-3979-499F-B7E6-9513619D7609", + "name": "image-marker-outline", + "codepoint": "F177C", + "aliases": [ + "image-location-outline" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "ED40AC55-00BA-4086-8906-1FA1EDA65839", + "name": "image-minus", + "codepoint": "F1419", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "5.1.45" + }, + { + "id": "4E0C0467-BF17-4C60-8834-4627DE6D79D5", + "name": "image-move", + "codepoint": "F09F8", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "2.5.94" + }, + { + "id": "E7CA4672-9863-4015-B3C5-D2C8DEBD2F2F", + "name": "image-multiple", + "codepoint": "F02F9", + "aliases": [ + "collections", + "photo-library", + "images" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "BCCF75AE-F73D-4B7A-BDFD-9E767DED0B28", + "name": "image-multiple-outline", + "codepoint": "F02EF", + "aliases": [ + "image-filter", + "images-outline" + ], + "tags": [ + "Photography" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "73924BC5-DB17-49B2-BB88-E40C1E45E010", + "name": "image-off", + "codepoint": "F082B", + "aliases": [], + "tags": [], + "author": "GreenTurtwig", + "version": "2.1.19" + }, + { + "id": "8C0E595D-8D0E-4D1E-8E62-850DB25103B3", + "name": "image-off-outline", + "codepoint": "F11D1", + "aliases": [], + "tags": [], + "author": "frankgrinaert", + "version": "4.5.95" + }, + { + "id": "F6A782BB-5FAB-4FC4-A61B-A0F399A0A5AC", + "name": "image-outline", + "codepoint": "F0976", + "aliases": [], + "tags": [], + "author": "GreenTurtwig", + "version": "2.4.85" + }, + { + "id": "8D6FECF2-E4C4-4858-81E2-502104BE2E55", + "name": "image-plus", + "codepoint": "F087C", + "aliases": [ + "image-add" + ], + "tags": [], + "author": "GreenTurtwig", + "version": "2.1.99" + }, + { + "id": "95B5A056-E7FE-4C3F-95A6-1E826DD80076", + "name": "image-remove", + "codepoint": "F1418", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "5.1.45" + }, + { + "id": "F00F5E5A-AD8A-440B-9B31-00D266A538A8", + "name": "image-search", + "codepoint": "F0977", + "aliases": [], + "tags": [], + "author": "Google", + "version": "2.4.85" + }, + { + "id": "A36A87C1-E35B-4BCA-AD53-700F6F937EE8", + "name": "image-search-outline", + "codepoint": "F0978", + "aliases": [], + "tags": [], + "author": "Google", + "version": "2.4.85" + }, + { + "id": "84644CCB-31DB-471C-AF2C-6E8AD1DE94CA", + "name": "image-size-select-actual", + "codepoint": "F0C8D", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.2.89" + }, + { + "id": "58C0E0A5-F760-4893-99C4-3C1E92DBC6DB", + "name": "image-size-select-large", + "codepoint": "F0C8E", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.2.89" + }, + { + "id": "A0771C0A-E46B-4985-98D8-C6EC748D03A2", + "name": "image-size-select-small", + "codepoint": "F0C8F", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.2.89" + }, + { + "id": "E404BB7C-724B-4390-9DE4-D08DA29B151A", + "name": "image-text", + "codepoint": "F160D", + "aliases": [ + "image-description" + ], + "tags": [], + "author": "Google", + "version": "5.6.55" + }, + { + "id": "FB8BEE36-EF77-4820-92B3-5B4C4291D751", + "name": "import", + "codepoint": "F02FA", + "aliases": [ + "input" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "4DDB79C2-C3AE-41DC-B560-AFBF3F689E86", + "name": "inbox", + "codepoint": "F0687", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.7.12" + }, + { + "id": "A20D1ABC-DD99-404B-8BEE-967BB1C636B0", + "name": "inbox-arrow-down", + "codepoint": "F02FB", + "aliases": [ + "move-to-inbox" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "B7B431BB-E448-47F4-A7DC-03CCCA93C3D1", + "name": "inbox-arrow-down-outline", + "codepoint": "F1270", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "4.7.95" + }, + { + "id": "5317ED5A-9D37-4C50-AA7D-83491547D214", + "name": "inbox-arrow-up", + "codepoint": "F03D1", + "aliases": [ + "move-from-inbox" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "B84765D3-091A-483D-A788-C0269238CF6D", + "name": "inbox-arrow-up-outline", + "codepoint": "F1271", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "4.7.95" + }, + { + "id": "1CB38744-AE8F-4B42-ACED-10749BBF81F5", + "name": "inbox-full", + "codepoint": "F1272", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "4.7.95" + }, + { + "id": "BD7DE99A-F6EC-46CF-BE18-8371E6BCD9CA", + "name": "inbox-full-outline", + "codepoint": "F1273", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "4.7.95" + }, + { + "id": "6FF18A17-48D4-4173-9CBD-8DB77F5A6E2A", + "name": "inbox-multiple", + "codepoint": "F08B0", + "aliases": [ + "inboxes" + ], + "tags": [], + "author": "Google", + "version": "2.2.43" + }, + { + "id": "AA22D582-9319-4AB0-BBF8-08824D7605B8", + "name": "inbox-multiple-outline", + "codepoint": "F0BA8", + "aliases": [ + "inboxes-outline" + ], + "tags": [], + "author": "Google", + "version": "3.0.39" + }, + { + "id": "7082C01E-4FF9-489E-BD05-53140FCD382A", + "name": "inbox-outline", + "codepoint": "F1274", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "4.7.95" + }, + { + "id": "2166DBC6-19EC-4A1D-BE92-8366CEE53B8F", + "name": "inbox-remove", + "codepoint": "F159F", + "aliases": [], + "tags": [], + "author": "Terren", + "version": "5.5.55" + }, + { + "id": "628C4376-372F-4880-875B-DE838A6B4B70", + "name": "inbox-remove-outline", + "codepoint": "F15A0", + "aliases": [], + "tags": [], + "author": "Terren", + "version": "5.5.55" + }, + { + "id": "1350E7BA-9354-4F62-9B21-0238E3DF4D81", + "name": "incognito", + "codepoint": "F05F9", + "aliases": [ + "anonymous", + "spy" + ], + "tags": [], + "author": "Christopher Schreiner", + "version": "1.5.54" + }, + { + "id": "80DE3C45-2A19-412F-9FA2-DCFB853F60ED", + "name": "incognito-circle", + "codepoint": "F1421", + "aliases": [ + "anonymous-circle", + "spy-circle" + ], + "tags": [], + "author": "Google", + "version": "5.2.45" + }, + { + "id": "3F362E64-C60F-416B-834D-E5C2A88ED23F", + "name": "incognito-circle-off", + "codepoint": "F1422", + "aliases": [ + "anonymous-circle-off", + "spy-circle-off" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "26B94EEC-5090-4DF4-99FC-C4A90830720A", + "name": "incognito-off", + "codepoint": "F0075", + "aliases": [ + "spy-off", + "anonymous-off" + ], + "tags": [], + "author": "nilsfast", + "version": "1.5.54" + }, + { + "id": "9B626C0C-73AD-4209-BEB6-70AE9BA4D1FF", + "name": "induction", + "codepoint": "F184C", + "aliases": [ + "ignition" + ], + "tags": [ + "Home Automation", + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "6.2.95" + }, + { + "id": "8C4EBD04-376D-41AC-86D3-2BBDD56768C7", + "name": "infinity", + "codepoint": "F06E4", + "aliases": [], + "tags": [ + "Math" + ], + "author": "Austin Andrews", + "version": "1.8.36" + }, + { + "id": "2BC4A4B6-119B-4637-BF3D-1FB9394E1F38", + "name": "information", + "codepoint": "F02FC", + "aliases": [ + "about", + "information-circle", + "info-circle", + "about-circle" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "68E3EA61-207C-444B-9CC5-8A7016D9953C", + "name": "information-off", + "codepoint": "F178C", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "25B8EEBF-60AA-422C-8E9C-E8D6004E9614", + "name": "information-off-outline", + "codepoint": "F178D", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "F7C01A96-16E0-44C0-A261-2CF22D056A7F", + "name": "information-outline", + "codepoint": "F02FD", + "aliases": [ + "info-outline", + "about-outline", + "information-circle-outline", + "info-circle-outline", + "about-circle-outline" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "D991D5FA-BD60-48E1-979D-A103D005725A", + "name": "information-variant", + "codepoint": "F064E", + "aliases": [ + "info-variant", + "about-variant" + ], + "tags": [], + "author": "Simran", + "version": "1.6.50" + }, + { + "id": "2AA07220-461B-4070-AA95-17DEFE501444", + "name": "instagram", + "codepoint": "F02FE", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "7A8E4735-E738-4ECE-8386-889694014C22", + "name": "instrument-triangle", + "codepoint": "F104E", + "aliases": [ + "dinner-bell" + ], + "tags": [ + "Music" + ], + "author": "Michael Irigoyen", + "version": "4.1.95" + }, + { + "id": "D9D79C34-BE5A-4EA2-BB40-07E941C1632B", + "name": "integrated-circuit-chip", + "codepoint": "F1913", + "aliases": [ + "icc", + "chip" + ], + "tags": [ + "Banking" + ], + "author": "Jeff Anders", + "version": "6.4.95" + }, + { + "id": "2B0100AC-D0EB-4B85-A9AB-EB921C9A65AC", + "name": "invert-colors", + "codepoint": "F0301", + "aliases": [ + "invert-colours" + ], + "tags": [ + "Color" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "B3F155FA-57B1-4781-AC45-98A1A47673DC", + "name": "invert-colors-off", + "codepoint": "F0E4A", + "aliases": [ + "invert-colours-off" + ], + "tags": [ + "Color" + ], + "author": "Google", + "version": "3.6.95" + }, + { + "id": "A360D72F-7DC7-4E24-B7F0-1856C918CB8A", + "name": "iobroker", + "codepoint": "F12E8", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "4.8.95" + }, + { + "id": "4560EF32-158B-40B1-829E-A078219A808A", + "name": "ip", + "codepoint": "F0A5F", + "aliases": [ + "internet-protocol" + ], + "tags": [], + "author": "Michael Richins", + "version": "2.6.95" + }, + { + "id": "54CCA164-149B-4050-9747-529EF134460A", + "name": "ip-network", + "codepoint": "F0A60", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "2.6.95" + }, + { + "id": "BB20E65D-DA61-4A5E-8B2E-52CB92DE3771", + "name": "ip-network-outline", + "codepoint": "F0C90", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "C251F57E-6443-4109-A61E-2F98D6609A47", + "name": "ip-outline", + "codepoint": "F1982", + "aliases": [ + "internet-protocol-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.5.95" + }, + { + "id": "63BFCC93-117D-45ED-8E42-4019C6D7B970", + "name": "ipod", + "codepoint": "F0C91", + "aliases": [ + "apple-ipod" + ], + "tags": [], + "author": "GreenTurtwig", + "version": "3.2.89" + }, + { + "id": "43DA7407-CFBA-44CE-9857-D75DF5581CE2", + "name": "iron", + "codepoint": "F1824", + "aliases": [ + "flatiron", + "smoothing-iron" + ], + "tags": [ + "Home Automation", + "Clothing" + ], + "author": "Google", + "version": "6.1.95" + }, + { + "id": "60A790B9-4A75-4778-98A4-84C46B827924", + "name": "iron-board", + "codepoint": "F1838", + "aliases": [], + "tags": [ + "Home Automation", + "Clothing" + ], + "author": "Colton Wiscombe", + "version": "6.2.95" + }, + { + "id": "82FEA1DA-69DE-436E-9D68-9116ADBE7D9B", + "name": "iron-outline", + "codepoint": "F1825", + "aliases": [ + "flatiron-outline", + "smoothing-iron-outline" + ], + "tags": [ + "Home Automation", + "Clothing" + ], + "author": "Google", + "version": "6.1.95" + }, + { + "id": "A39024B8-5991-409C-8E68-DC9562D52F86", + "name": "island", + "codepoint": "F104F", + "aliases": [], + "tags": [ + "Places" + ], + "author": "Michael Irigoyen", + "version": "4.1.95" + }, + { + "id": "0921F3AE-3BFF-4913-BB68-CB48587D14E4", + "name": "iv-bag", + "codepoint": "F10B9", + "aliases": [], + "tags": [ + "Medical \/ Hospital" + ], + "author": "Michael Irigoyen", + "version": "4.2.95" + }, + { + "id": "5F75012D-D248-4275-B274-6D6AB3B95F3B", + "name": "jabber", + "codepoint": "F0DD5", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "3.5.94" + }, + { + "id": "2C0278A5-D43D-4B8B-8870-878BEAF6BE17", + "name": "jeepney", + "codepoint": "F0302", + "aliases": [], + "tags": [ + "Transportation + Road" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "2F73C05F-4D6E-49B3-B41B-BCDA372E1774", + "name": "jellyfish", + "codepoint": "F0F01", + "aliases": [], + "tags": [ + "Animal" + ], + "author": "Simran", + "version": "3.8.95" + }, + { + "id": "4F49A0D7-8E63-411E-97E0-7CA054831A38", + "name": "jellyfish-outline", + "codepoint": "F0F02", + "aliases": [], + "tags": [ + "Animal" + ], + "author": "Simran", + "version": "3.8.95" + }, + { + "id": "2F0CB359-6C54-4723-9E8D-94481F0A8E30", + "name": "jira", + "codepoint": "F0303", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "3A14C142-9D2F-44BC-882E-333745FACAA3", + "name": "jquery", + "codepoint": "F087D", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "2.1.99" + }, + { + "id": "B6B10BEF-B1E3-43D7-AAAA-85566157B30B", + "name": "jsfiddle", + "codepoint": "F0304", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "FC2D912E-451A-4AE8-8399-67F116ED12D9", + "name": "jump-rope", + "codepoint": "F12FF", + "aliases": [], + "tags": [ + "Sport" + ], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "24CB8442-6875-4A22-A265-0C625118C7E7", + "name": "kabaddi", + "codepoint": "F0D87", + "aliases": [ + "wrestling" + ], + "tags": [ + "Sport" + ], + "author": "Google", + "version": "3.4.93" + }, + { + "id": "70EC6F3B-31E9-4F1A-8E48-408CEB706FB8", + "name": "kangaroo", + "codepoint": "F1558", + "aliases": [ + "marsupial" + ], + "tags": [ + "Animal" + ], + "author": "Colton Wiscombe", + "version": "5.5.55" + }, + { + "id": "85144563-B019-4B8A-AB76-3DE0797D517E", + "name": "karate", + "codepoint": "F082C", + "aliases": [ + "martial-arts", + "kickboxing" + ], + "tags": [ + "Sport" + ], + "author": "Michael Richins", + "version": "2.1.19" + }, + { + "id": "21C7383B-5839-4F3E-A4EC-81A9980F531B", + "name": "kayaking", + "codepoint": "F08AF", + "aliases": [], + "tags": [ + "Sport" + ], + "author": "Google", + "version": "2.2.43" + }, + { + "id": "EEF9C07A-019A-49B4-805D-0DF8601F09DF", + "name": "keg", + "codepoint": "F0305", + "aliases": [], + "tags": [ + "Food \/ Drink" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "C4476901-9B29-410C-BCA7-67814F5421B4", + "name": "kettle", + "codepoint": "F05FA", + "aliases": [ + "tea-kettle", + "kettle-full", + "tea-kettle-full" + ], + "tags": [ + "Home Automation", + "Food \/ Drink" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "123DA4E5-7243-4495-8CE4-2CDA32A65C01", + "name": "kettle-alert", + "codepoint": "F1317", + "aliases": [ + "tea-kettle-alert", + "kettle-full-alert", + "tea-kettle-full-alert" + ], + "tags": [ + "Home Automation", + "Alert \/ Error", + "Food \/ Drink" + ], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "4F1F1AC0-68D1-4C74-8F03-DF6EBC2C8B29", + "name": "kettle-alert-outline", + "codepoint": "F1318", + "aliases": [ + "tea-kettle-alert-outline", + "kettle-empty-alert", + "tea-kettle-empty-alert" + ], + "tags": [ + "Home Automation", + "Alert \/ Error", + "Food \/ Drink" + ], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "A28C7FA8-2D3A-482A-ADC8-46391CF201E1", + "name": "kettle-off", + "codepoint": "F131B", + "aliases": [ + "tea-kettle-off", + "tea-kettle-full-off", + "kettle-full-off" + ], + "tags": [ + "Home Automation", + "Food \/ Drink" + ], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "15C6F7FE-65D4-4116-AF5C-7A171407E460", + "name": "kettle-off-outline", + "codepoint": "F131C", + "aliases": [ + "tea-kettle-off-outline", + "kettle-empty-off", + "tea-kettle-empty-off" + ], + "tags": [ + "Home Automation", + "Food \/ Drink" + ], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "FCE0A2B1-414F-4E9F-AF73-F878AE890F38", + "name": "kettle-outline", + "codepoint": "F0F56", + "aliases": [ + "tea-kettle-outline", + "kettle-empty", + "tea-kettle-empty" + ], + "tags": [ + "Food \/ Drink", + "Home Automation" + ], + "author": "Nick", + "version": "3.9.97" + }, + { + "id": "30064882-D796-4A8E-8BD1-CAED8C9A49DA", + "name": "kettle-pour-over", + "codepoint": "F173C", + "aliases": [], + "tags": [], + "author": "nilsfast", + "version": "5.9.55" + }, + { + "id": "B976C4B0-D50C-49ED-B072-CD8E8A38A4AF", + "name": "kettle-steam", + "codepoint": "F1319", + "aliases": [ + "tea-kettle-steam", + "kettle-full-steam", + "tea-kettle-full-steam" + ], + "tags": [ + "Home Automation", + "Food \/ Drink" + ], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "6D9BDFFF-63EE-45DE-A6F5-712B0EE12534", + "name": "kettle-steam-outline", + "codepoint": "F131A", + "aliases": [ + "tea-kettle-steam-outline", + "kettle-empty-steam", + "tea-kettle-empty-steam" + ], + "tags": [ + "Home Automation", + "Food \/ Drink" + ], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "E3220479-E885-4EDD-9678-E60F670DFBAA", + "name": "kettlebell", + "codepoint": "F1300", + "aliases": [], + "tags": [ + "Sport" + ], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "D6208581-CF7F-438A-8578-B6ADEE462212", + "name": "key", + "codepoint": "F0306", + "aliases": [ + "vpn-key" + ], + "tags": [ + "Automotive" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "62432542-54AA-42CB-B866-EFF80DDEB97C", + "name": "key-alert", + "codepoint": "F1983", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.5.95" + }, + { + "id": "1038F818-4017-42DB-A290-6FD069D3989C", + "name": "key-alert-outline", + "codepoint": "F1984", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.5.95" + }, + { + "id": "7A79C7BB-6669-46CA-8AB0-E3B537D83EA2", + "name": "key-arrow-right", + "codepoint": "F1312", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "80B6B5A5-0FE3-4CA0-924C-05311090832D", + "name": "key-chain", + "codepoint": "F1574", + "aliases": [], + "tags": [ + "Automotive" + ], + "author": "Mateo Silguero", + "version": "5.5.55" + }, + { + "id": "01B0561A-56B4-4215-A811-1572D35331F6", + "name": "key-chain-variant", + "codepoint": "F1575", + "aliases": [], + "tags": [ + "Automotive" + ], + "author": "Mateo Silguero", + "version": "5.5.55" + }, + { + "id": "FEEA71CA-4810-46DD-B459-6D9327720D17", + "name": "key-change", + "codepoint": "F0307", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "08C0F709-4E1C-4BFD-8CC6-BC12FE5CDD9B", + "name": "key-link", + "codepoint": "F119F", + "aliases": [ + "foreign-key", + "sql-foreign-key" + ], + "tags": [], + "author": "Haley Halcyon", + "version": "4.4.95" + }, + { + "id": "F58302B9-82F4-46AC-9A60-4640CFCE33B2", + "name": "key-minus", + "codepoint": "F0308", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "83238148-C76D-4C83-904D-911A9E9C2715", + "name": "key-outline", + "codepoint": "F0DD6", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.5.94" + }, + { + "id": "000AAEC6-5E6C-40F4-B589-AE85920E7EC2", + "name": "key-plus", + "codepoint": "F0309", + "aliases": [ + "key-add" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "5A1609F7-424E-417F-B1C4-7EDA3051A4BA", + "name": "key-remove", + "codepoint": "F030A", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "7C312A2D-A502-4F06-89D4-0783EADC3B3F", + "name": "key-star", + "codepoint": "F119E", + "aliases": [ + "primary-key", + "sql-primary-key", + "key-favorite" + ], + "tags": [], + "author": "Haley Halcyon", + "version": "4.4.95" + }, + { + "id": "967692C3-B061-425E-A0E4-FF1F580275E5", + "name": "key-variant", + "codepoint": "F030B", + "aliases": [], + "tags": [ + "Automotive" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "196889AF-CD00-44BC-BAD3-932B936E4EAE", + "name": "key-wireless", + "codepoint": "F0FC2", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "4.0.96" + }, + { + "id": "520C8488-DD34-43E1-AEA0-A188B2DE6B01", + "name": "keyboard", + "codepoint": "F030C", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "21C8B558-8398-43E8-A79A-8BA99BE693D6", + "name": "keyboard-backspace", + "codepoint": "F030D", + "aliases": [ + "keyboard-clear", + "keyboard-erase" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "0F441009-7A1F-45BF-A239-B9591B0A5404", + "name": "keyboard-caps", + "codepoint": "F030E", + "aliases": [ + "keyboard-capslock" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "8545C0A1-5625-422F-AF38-624FB54237D3", + "name": "keyboard-close", + "codepoint": "F030F", + "aliases": [ + "keyboard-hide" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "3EB07099-2309-466E-8BC0-EA835C273E37", + "name": "keyboard-esc", + "codepoint": "F12B7", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "4.7.95" + }, + { + "id": "512A5D44-18A8-4644-AA17-E8E026E0F1B0", + "name": "keyboard-f1", + "codepoint": "F12AB", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "4.7.95" + }, + { + "id": "29296B9C-9A28-4F04-A2AD-550CB1EC89E1", + "name": "keyboard-f10", + "codepoint": "F12B4", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "4.7.95" + }, + { + "id": "DDF92650-C04B-4826-BD5A-FB12B06F7E6E", + "name": "keyboard-f11", + "codepoint": "F12B5", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "4.7.95" + }, + { + "id": "7C97B45E-8039-41C4-A188-A21475A4FB3F", + "name": "keyboard-f12", + "codepoint": "F12B6", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "4.7.95" + }, + { + "id": "3DFC5B29-C785-4D97-A04D-E63FAD987C25", + "name": "keyboard-f2", + "codepoint": "F12AC", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "4.7.95" + }, + { + "id": "7776F4B4-2F61-47FF-83F5-A768239E3F80", + "name": "keyboard-f3", + "codepoint": "F12AD", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "4.7.95" + }, + { + "id": "C227FD26-6801-4545-AC74-66C63B56807A", + "name": "keyboard-f4", + "codepoint": "F12AE", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "4.7.95" + }, + { + "id": "C50601AF-7AD6-4677-B8B3-181B978613A8", + "name": "keyboard-f5", + "codepoint": "F12AF", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "4.7.95" + }, + { + "id": "9B4318C8-A2CC-43A9-8706-C9D3DDF33D5E", + "name": "keyboard-f6", + "codepoint": "F12B0", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "4.7.95" + }, + { + "id": "DDE4A6E4-BDE8-4E63-8F77-E3D06BF29BF1", + "name": "keyboard-f7", + "codepoint": "F12B1", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "4.7.95" + }, + { + "id": "3392982E-1464-49EF-B22F-EE0FBA421D4E", + "name": "keyboard-f8", + "codepoint": "F12B2", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "4.7.95" + }, + { + "id": "BBFF3508-533C-4378-B9FC-60EC20CAB214", + "name": "keyboard-f9", + "codepoint": "F12B3", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "4.7.95" + }, + { + "id": "A7DFF78C-C6DD-4BB6-BBFA-A88242516A74", + "name": "keyboard-off", + "codepoint": "F0310", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "4DC89B68-BD60-4D89-BD32-F15C0CFCEF79", + "name": "keyboard-off-outline", + "codepoint": "F0E4B", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.6.95" + }, + { + "id": "6E751B9F-72AD-4554-8C62-24E457B80FDB", + "name": "keyboard-outline", + "codepoint": "F097B", + "aliases": [], + "tags": [], + "author": "Google", + "version": "2.4.85" + }, + { + "id": "7816CE91-EBD1-4136-8523-CF47F677F4C6", + "name": "keyboard-return", + "codepoint": "F0311", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "4894BA3C-C713-4ACA-9918-1AF74B5E5427", + "name": "keyboard-settings", + "codepoint": "F09F9", + "aliases": [], + "tags": [ + "Settings" + ], + "author": "Michael Richins", + "version": "2.5.94" + }, + { + "id": "7D765BD9-7B7E-4288-89E5-4A74E72E1083", + "name": "keyboard-settings-outline", + "codepoint": "F09FA", + "aliases": [], + "tags": [ + "Settings" + ], + "author": "Michael Richins", + "version": "2.5.94" + }, + { + "id": "803E5E8E-04C6-41E1-9EE0-B8C3C723D507", + "name": "keyboard-space", + "codepoint": "F1050", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "4.1.95" + }, + { + "id": "D7C0D37A-BF75-4542-8AFF-614FA0EC498C", + "name": "keyboard-tab", + "codepoint": "F0312", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "CFF782E5-F36B-4F80-B105-68E6B4B91C64", + "name": "keyboard-tab-reverse", + "codepoint": "F0325", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "1.5.54" + }, + { + "id": "BCAA42FF-BF36-42D8-B8FD-5DE2968162D8", + "name": "keyboard-variant", + "codepoint": "F0313", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "8F5B2685-A656-45ED-89C2-032E76322358", + "name": "khanda", + "codepoint": "F10FD", + "aliases": [ + "sikh" + ], + "tags": [ + "Religion" + ], + "author": "Michael Irigoyen", + "version": "4.3.95" + }, + { + "id": "D881D589-79F0-4255-B050-13E396293D1F", + "name": "kickstarter", + "codepoint": "F0745", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.9.32" + }, + { + "id": "8B89609E-5F12-4A3B-99AE-F6698FEA48E4", + "name": "kite", + "codepoint": "F1985", + "aliases": [], + "tags": [ + "Sport" + ], + "author": "Google", + "version": "6.5.95" + }, + { + "id": "C95E036C-B786-490E-B7A7-9704E049DCE1", + "name": "kite-outline", + "codepoint": "F1986", + "aliases": [], + "tags": [ + "Sport" + ], + "author": "Google", + "version": "6.5.95" + }, + { + "id": "2B23BD24-9796-4D72-85CC-76BE23854F0F", + "name": "kitesurfing", + "codepoint": "F1744", + "aliases": [], + "tags": [], + "author": "Google", + "version": "6.1.95" + }, + { + "id": "1A131BAA-CFEE-41F3-9B15-01A4A9F1B341", + "name": "klingon", + "codepoint": "F135B", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "4.9.95" + }, + { + "id": "AF35DB46-1B52-4721-8475-F3CD107325B4", + "name": "knife", + "codepoint": "F09FB", + "aliases": [ + "silverware-knife", + "cutlery-knife" + ], + "tags": [], + "author": "Augustin Ursu", + "version": "2.5.94" + }, + { + "id": "D31C18C1-776C-4444-9A12-F2BD366CF929", + "name": "knife-military", + "codepoint": "F09FC", + "aliases": [ + "dagger" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Simran", + "version": "2.5.94" + }, + { + "id": "180CACBF-4272-4D07-B9A0-63A5625DCB0C", + "name": "koala", + "codepoint": "F173F", + "aliases": [ + "marsupial", + "emoji-koala", + "emoticon-koala" + ], + "tags": [ + "Animal" + ], + "author": "Claire Casaregola", + "version": "5.9.55" + }, + { + "id": "AD953D07-5F33-439B-895F-7AD5615EA14A", + "name": "kodi", + "codepoint": "F0314", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "9823C48B-5D2E-4058-9836-F2C6DCACAB71", + "name": "kubernetes", + "codepoint": "F10FE", + "aliases": [], + "tags": [ + "Developer \/ Languages", + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "4.3.95" + }, + { + "id": "C749E06B-E75E-4D9B-97A6-47E9399D01FC", + "name": "label", + "codepoint": "F0315", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "9373446C-95C3-4160-9CBC-FF1DEF5C9F28", + "name": "label-multiple", + "codepoint": "F1375", + "aliases": [], + "tags": [], + "author": "nilsfast", + "version": "4.9.95" + }, + { + "id": "D504ED4D-5F02-4501-A223-59BF2D4CD9EB", + "name": "label-multiple-outline", + "codepoint": "F1376", + "aliases": [], + "tags": [], + "author": "nilsfast", + "version": "4.9.95" + }, + { + "id": "BCBB111E-0DF2-4498-831D-E547AE9EE0FB", + "name": "label-off", + "codepoint": "F0ACB", + "aliases": [], + "tags": [], + "author": "Google", + "version": "2.7.94" + }, + { + "id": "94A3D797-3936-4FBE-A6B5-6C88934B40BD", + "name": "label-off-outline", + "codepoint": "F0ACC", + "aliases": [], + "tags": [], + "author": "Google", + "version": "2.7.94" + }, + { + "id": "91C2FA0C-2273-42F9-ACBF-BD418B8F970D", + "name": "label-outline", + "codepoint": "F0316", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "62FCE66D-4003-4B22-8C47-501947EA4CC8", + "name": "label-percent", + "codepoint": "F12EA", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "7EBE7C17-4905-43F9-A084-0756FBB3905D", + "name": "label-percent-outline", + "codepoint": "F12EB", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "3A54255E-EDE1-4622-87F4-9FCB31B1B688", + "name": "label-variant", + "codepoint": "F0ACD", + "aliases": [], + "tags": [], + "author": "Google", + "version": "2.7.94" + }, + { + "id": "75106002-9EFE-4771-8B68-C60B60589C42", + "name": "label-variant-outline", + "codepoint": "F0ACE", + "aliases": [], + "tags": [], + "author": "Google", + "version": "2.7.94" + }, + { + "id": "F2C62DAD-9011-4495-B542-87407FFB7EA1", + "name": "ladder", + "codepoint": "F15A2", + "aliases": [], + "tags": [ + "Hardware \/ Tools" + ], + "author": "Michael Irigoyen", + "version": "5.5.55" + }, + { + "id": "97AFF594-E421-4757-BE72-1D6C428E27AE", + "name": "ladybug", + "codepoint": "F082D", + "aliases": [ + "bugfood", + "ladybird" + ], + "tags": [ + "Nature" + ], + "author": "Google", + "version": "2.1.19" + }, + { + "id": "1815038E-B466-4F5F-91D9-9D03DDA6A9DA", + "name": "lambda", + "codepoint": "F0627", + "aliases": [], + "tags": [ + "Gaming \/ RPG", + "Math" + ], + "author": "Austin Andrews", + "version": "1.6.50" + }, + { + "id": "A39CC0FD-32DA-4AB2-8483-9E4C4F03D220", + "name": "lamp", + "codepoint": "F06B5", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "1.7.22" + }, + { + "id": "F2FF97D8-A51F-4F32-A18A-6A14437EF5CC", + "name": "lamp-outline", + "codepoint": "F17D0", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "9AC5919E-2271-42D0-A5FA-ACB9BE022547", + "name": "lamps", + "codepoint": "F1576", + "aliases": [ + "lights" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "5.5.55" + }, + { + "id": "7BDA9890-697C-4E97-A604-D34803DAAD39", + "name": "lamps-outline", + "codepoint": "F17D1", + "aliases": [ + "lights-outline" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "A20B1B0B-DC60-4ED1-A7E6-F390BA31D613", + "name": "lan", + "codepoint": "F0317", + "aliases": [ + "local-area-network" + ], + "tags": [], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "9DF15E25-DE45-4D9B-8E3B-EA6D643EA0CC", + "name": "lan-check", + "codepoint": "F12AA", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "4.7.95" + }, + { + "id": "B52D6944-3AC2-4113-A91C-199C0CD577A6", + "name": "lan-connect", + "codepoint": "F0318", + "aliases": [ + "local-area-network-connect" + ], + "tags": [], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "10DCD7DC-998B-4631-B8A6-A0D8C93412A3", + "name": "lan-disconnect", + "codepoint": "F0319", + "aliases": [ + "local-area-network-disconnect" + ], + "tags": [], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "B5E302E3-DF81-430E-AAE0-4CAF44AFAD00", + "name": "lan-pending", + "codepoint": "F031A", + "aliases": [ + "local-area-network-pending" + ], + "tags": [], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "082F25B3-8413-4CC7-B908-8BBD40BB32D8", + "name": "language-c", + "codepoint": "F0671", + "aliases": [], + "tags": [ + "Developer \/ Languages" + ], + "author": "Contributors", + "version": "1.6.50" + }, + { + "id": "74446CD2-562D-44E7-AAC1-62D4CCDB9F43", + "name": "language-cpp", + "codepoint": "F0672", + "aliases": [], + "tags": [ + "Developer \/ Languages" + ], + "author": "Contributors", + "version": "1.6.50" + }, + { + "id": "EFF1E516-3470-456C-AC79-0F9C82C79391", + "name": "language-csharp", + "codepoint": "F031B", + "aliases": [], + "tags": [ + "Developer \/ Languages" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "DA72E30D-C562-4E93-B8C8-CAFA686A1D23", + "name": "language-css3", + "codepoint": "F031C", + "aliases": [], + "tags": [ + "Developer \/ Languages" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "F1DEF74B-8116-4E0E-98BE-97A699812E5A", + "name": "language-fortran", + "codepoint": "F121A", + "aliases": [], + "tags": [], + "author": "Contributors", + "version": "4.6.95" + }, + { + "id": "ACAFCF05-E04D-4212-AB53-C72BD8DB5768", + "name": "language-go", + "codepoint": "F07D3", + "aliases": [], + "tags": [ + "Developer \/ Languages" + ], + "author": "Google", + "version": "2.0.46" + }, + { + "id": "87E5CF33-FA30-4CCA-8FAD-AAD3D7C17904", + "name": "language-haskell", + "codepoint": "F0C92", + "aliases": [], + "tags": [ + "Developer \/ Languages" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "98D9A5A1-626A-4273-B895-4C838936613C", + "name": "language-html5", + "codepoint": "F031D", + "aliases": [], + "tags": [ + "Developer \/ Languages" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "CF5C2532-318B-4866-B8CE-319601ADD95E", + "name": "language-java", + "codepoint": "F0B37", + "aliases": [], + "tags": [ + "Developer \/ Languages" + ], + "author": "Contributors", + "version": "2.8.94" + }, + { + "id": "9D3ED5EB-8951-4E75-A623-EEF618ED4172", + "name": "language-javascript", + "codepoint": "F031E", + "aliases": [], + "tags": [ + "Developer \/ Languages" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "D3EC3384-B91D-46C9-8D43-7D333DB2273D", + "name": "language-kotlin", + "codepoint": "F1219", + "aliases": [], + "tags": [], + "author": "Contributors", + "version": "4.6.95" + }, + { + "id": "0B0DE3A6-7ED1-497C-BAF4-CDAA3F9713C9", + "name": "language-lua", + "codepoint": "F08B1", + "aliases": [], + "tags": [ + "Developer \/ Languages" + ], + "author": "Contributors", + "version": "2.2.43" + }, + { + "id": "42875A08-46EC-4077-95A9-86D16888F2D4", + "name": "language-markdown", + "codepoint": "F0354", + "aliases": [], + "tags": [ + "Developer \/ Languages", + "Brand \/ Logo" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "A8970A35-C4F5-452B-B8CA-13BACF5C29F5", + "name": "language-markdown-outline", + "codepoint": "F0F5B", + "aliases": [], + "tags": [ + "Developer \/ Languages", + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "3.9.97" + }, + { + "id": "2A153653-6727-4DE1-95DC-AC6801A7DC01", + "name": "language-php", + "codepoint": "F031F", + "aliases": [], + "tags": [ + "Developer \/ Languages" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "4E453C2B-40D4-4D60-8EAF-750091283FAC", + "name": "language-python", + "codepoint": "F0320", + "aliases": [], + "tags": [ + "Developer \/ Languages" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "2F197131-0666-4F07-8BDE-B6FB3C4BB39B", + "name": "language-r", + "codepoint": "F07D4", + "aliases": [], + "tags": [ + "Developer \/ Languages" + ], + "author": "Contributors", + "version": "2.0.46" + }, + { + "id": "2BC47DF3-B959-44C0-BE1A-8D1EB0B18FEF", + "name": "language-ruby", + "codepoint": "F0D2D", + "aliases": [], + "tags": [], + "author": "Contributors", + "version": "3.3.92" + }, + { + "id": "6898147E-618C-4A16-A06B-5270C63AAB2B", + "name": "language-ruby-on-rails", + "codepoint": "F0ACF", + "aliases": [], + "tags": [ + "Developer \/ Languages" + ], + "author": "Contributors", + "version": "2.7.94" + }, + { + "id": "D88C59AC-3310-4AA7-8432-BFA51BF2DCE4", + "name": "language-rust", + "codepoint": "F1617", + "aliases": [], + "tags": [ + "Developer \/ Languages" + ], + "author": "Contributors", + "version": "5.6.55" + }, + { + "id": "9F060254-CB0B-4DD9-87C5-BADAE8F2F8C4", + "name": "language-swift", + "codepoint": "F06E5", + "aliases": [], + "tags": [ + "Developer \/ Languages" + ], + "author": "Contributors", + "version": "1.8.36" + }, + { + "id": "BFE7B3A3-4B61-4583-B22D-395E1FCE1A07", + "name": "language-typescript", + "codepoint": "F06E6", + "aliases": [], + "tags": [ + "Developer \/ Languages" + ], + "author": "Contributors", + "version": "1.8.36" + }, + { + "id": "1AC4596D-76B2-4F11-AF23-157736CABB86", + "name": "language-xaml", + "codepoint": "F0673", + "aliases": [ + "xaml", + "microsoft-xaml" + ], + "tags": [], + "author": "Contributors", + "version": "1.6.50" + }, + { + "id": "A8B6481F-EE91-4F90-81AC-DEB8A096F45A", + "name": "laptop", + "codepoint": "F0322", + "aliases": [ + "computer" + ], + "tags": [ + "Device \/ Tech", + "Home Automation" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "C9A08F85-B996-498D-ADDC-20A9B77B5489", + "name": "laptop-off", + "codepoint": "F06E7", + "aliases": [], + "tags": [ + "Device \/ Tech" + ], + "author": "Michael Richins", + "version": "1.8.36" + }, + { + "id": "B8CF1F73-D020-43C3-83CB-34DB20820628", + "name": "laravel", + "codepoint": "F0AD0", + "aliases": [], + "tags": [], + "author": "Contributors", + "version": "2.7.94" + }, + { + "id": "D202901C-7C33-48DF-925A-BB3506158E99", + "name": "laser-pointer", + "codepoint": "F1484", + "aliases": [], + "tags": [], + "author": "Google", + "version": "5.3.45" + }, + { + "id": "5A1E325C-36BD-4BAC-BF4F-E349D9016B28", + "name": "lasso", + "codepoint": "F0F03", + "aliases": [], + "tags": [], + "author": "Louistwee", + "version": "3.8.95" + }, + { + "id": "65AC32C4-911E-4005-8BD1-663AE0000988", + "name": "lastpass", + "codepoint": "F0446", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "E72ED7A1-8133-4E0F-8EC6-28F053DF51B1", + "name": "latitude", + "codepoint": "F0F57", + "aliases": [], + "tags": [ + "Navigation", + "Geographic Information System" + ], + "author": "Michael Richins", + "version": "3.9.97" + }, + { + "id": "ED8AF9CE-E555-49C9-8E7E-F9B85CD94CDF", + "name": "launch", + "codepoint": "F0327", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "B1E2F856-253B-465C-861A-40C5C7D6C8DB", + "name": "lava-lamp", + "codepoint": "F07D5", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "2.0.46" + }, + { + "id": "36A9B462-C487-458E-BFB6-2415739BC968", + "name": "layers", + "codepoint": "F0328", + "aliases": [], + "tags": [ + "Geographic Information System" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "D091B0C7-B40D-4F9B-836A-CCA680354ACE", + "name": "layers-edit", + "codepoint": "F1892", + "aliases": [], + "tags": [ + "Geographic Information System" + ], + "author": "ButchMonkey", + "version": "6.2.95" + }, + { + "id": "E72B7CB5-1A02-49C0-AC64-DF2559F026F1", + "name": "layers-minus", + "codepoint": "F0E4C", + "aliases": [], + "tags": [ + "Geographic Information System" + ], + "author": "Austin Andrews", + "version": "3.6.95" + }, + { + "id": "1ADB303D-B8D9-49EF-8EB0-C02AFD269F02", + "name": "layers-off", + "codepoint": "F0329", + "aliases": [ + "layers-clear" + ], + "tags": [ + "Geographic Information System" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "FAC5EA16-5C62-49FA-8BE4-7D797604A425", + "name": "layers-off-outline", + "codepoint": "F09FD", + "aliases": [], + "tags": [ + "Geographic Information System" + ], + "author": "Google", + "version": "2.5.94" + }, + { + "id": "9026C3EC-9903-40FE-B3DF-EDB7FE10191A", + "name": "layers-outline", + "codepoint": "F09FE", + "aliases": [], + "tags": [ + "Geographic Information System" + ], + "author": "Google", + "version": "2.5.94" + }, + { + "id": "74FE9D86-D461-4C92-8981-E5A67954D6FA", + "name": "layers-plus", + "codepoint": "F0E4D", + "aliases": [], + "tags": [ + "Geographic Information System" + ], + "author": "Austin Andrews", + "version": "3.6.95" + }, + { + "id": "4FE9D22C-A632-4B2E-8257-D6789764B1F6", + "name": "layers-remove", + "codepoint": "F0E4E", + "aliases": [], + "tags": [ + "Geographic Information System" + ], + "author": "Austin Andrews", + "version": "3.6.95" + }, + { + "id": "8502BBC1-8C93-4D63-97C6-1BA163C1DDC0", + "name": "layers-search", + "codepoint": "F1206", + "aliases": [], + "tags": [ + "Geographic Information System" + ], + "author": "Michael Irigoyen", + "version": "4.6.95" + }, + { + "id": "6EC54CC3-3FAD-4692-B123-9FA5A8F3D80E", + "name": "layers-search-outline", + "codepoint": "F1207", + "aliases": [], + "tags": [ + "Geographic Information System" + ], + "author": "Michael Irigoyen", + "version": "4.6.95" + }, + { + "id": "E13ACA71-A398-4E3F-A1DF-ED7E4A1E1A84", + "name": "layers-triple", + "codepoint": "F0F58", + "aliases": [], + "tags": [], + "author": "GreenTurtwig", + "version": "3.9.97" + }, + { + "id": "B5AC4711-8218-4B94-9372-628616C5CBD8", + "name": "layers-triple-outline", + "codepoint": "F0F59", + "aliases": [], + "tags": [], + "author": "GreenTurtwig", + "version": "3.9.97" + }, + { + "id": "5EB00CD5-91CA-438E-B569-2D680E6102D6", + "name": "lead-pencil", + "codepoint": "F064F", + "aliases": [], + "tags": [ + "Drawing \/ Art" + ], + "author": "Google", + "version": "1.6.50" + }, + { + "id": "30AC82B4-6073-462B-B63E-0F64706AAC2F", + "name": "leaf", + "codepoint": "F032A", + "aliases": [], + "tags": [ + "Nature", + "Food \/ Drink", + "Agriculture" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "30A6559D-F917-44DE-B7C7-9C1AB4DD8BD4", + "name": "leaf-circle", + "codepoint": "F1905", + "aliases": [ + "green-circle" + ], + "tags": [ + "Nature", + "Agriculture" + ], + "author": "Jeff Anders", + "version": "6.4.95" + }, + { + "id": "C480BC5A-402E-46EB-B913-51AFA64FA26E", + "name": "leaf-circle-outline", + "codepoint": "F1906", + "aliases": [ + "green-circle-outline" + ], + "tags": [ + "Agriculture", + "Nature" + ], + "author": "Jeff Anders", + "version": "6.4.95" + }, + { + "id": "C7FF59F8-8D2F-4866-B8D3-27ED83C324F0", + "name": "leaf-maple", + "codepoint": "F0C93", + "aliases": [], + "tags": [ + "Nature" + ], + "author": "Michael Richins", + "version": "3.2.89" + }, + { + "id": "D1DE0E7A-928A-430D-BD2B-B80C9FA2D2F4", + "name": "leaf-maple-off", + "codepoint": "F12DA", + "aliases": [], + "tags": [ + "Nature" + ], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "96F48C59-4C64-4584-9E07-73AAD3533FAA", + "name": "leaf-off", + "codepoint": "F12D9", + "aliases": [], + "tags": [ + "Nature", + "Food \/ Drink", + "Agriculture" + ], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "D648ECFA-B185-4041-8B54-6D1C125CD08E", + "name": "leak", + "codepoint": "F0DD7", + "aliases": [ + "proximity-sensor" + ], + "tags": [], + "author": "Google", + "version": "3.5.94" + }, + { + "id": "EDA0BABB-A354-481B-8E60-108E3B20D64C", + "name": "leak-off", + "codepoint": "F0DD8", + "aliases": [ + "proximity-sensor-off" + ], + "tags": [], + "author": "Google", + "version": "3.5.94" + }, + { + "id": "8A29D85F-1BAD-4610-AF2F-B4AF0F0D2755", + "name": "led-off", + "codepoint": "F032B", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "5DACA128-6BEE-424D-83BA-8C94E01F5C0A", + "name": "led-on", + "codepoint": "F032C", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "423F2C55-8E79-441A-A987-45A97FAA3F53", + "name": "led-outline", + "codepoint": "F032D", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "F301BDB9-027C-40D0-A21F-3111A7AB218F", + "name": "led-strip", + "codepoint": "F07D6", + "aliases": [ + "light-strip" + ], + "tags": [ + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "2.0.46" + }, + { + "id": "E4D78AC1-63FD-4BF0-89CD-91D80CCAAE40", + "name": "led-strip-variant", + "codepoint": "F1051", + "aliases": [ + "light-strip-variant" + ], + "tags": [ + "Home Automation" + ], + "author": "Borre Haugen", + "version": "4.1.95" + }, + { + "id": "BBDD4244-D5C9-4150-9936-31C775AA463F", + "name": "led-variant-off", + "codepoint": "F032E", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "9929F712-7241-468C-B10B-5739356EC85C", + "name": "led-variant-on", + "codepoint": "F032F", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "AEACBB35-5466-4C5B-8AA5-B366D0322A27", + "name": "led-variant-outline", + "codepoint": "F0330", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "48662A59-F777-4513-9023-17D826B11F5C", + "name": "leek", + "codepoint": "F117D", + "aliases": [], + "tags": [ + "Food \/ Drink" + ], + "author": "Simran", + "version": "4.4.95" + }, + { + "id": "098E9BF3-3E1F-43E3-ACFF-2D35123A3186", + "name": "less-than", + "codepoint": "F097C", + "aliases": [], + "tags": [ + "Math" + ], + "author": "Nick", + "version": "2.4.85" + }, + { + "id": "9CA22101-6F3D-4EE1-B9F1-C64CE0EFC911", + "name": "less-than-or-equal", + "codepoint": "F097D", + "aliases": [], + "tags": [ + "Math" + ], + "author": "Nick", + "version": "2.4.85" + }, + { + "id": "45FA5A9C-DFF1-4D7E-B683-DB7DE2BAEFC7", + "name": "library", + "codepoint": "F0331", + "aliases": [ + "local-library" + ], + "tags": [ + "Places" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "282A591C-4D91-4AAF-B401-00F3AE4B73F2", + "name": "library-shelves", + "codepoint": "F0BA9", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.0.39" + }, + { + "id": "8398466C-F905-444F-81E6-B5B2103BD873", + "name": "license", + "codepoint": "F0FC3", + "aliases": [ + "ribbon", + "prize", + "award", + "seal" + ], + "tags": [], + "author": "Google", + "version": "4.0.96" + }, + { + "id": "7936EB1E-FCE1-4501-A339-C5EB7E4301E9", + "name": "lifebuoy", + "codepoint": "F087E", + "aliases": [ + "life-preserver", + "support", + "help", + "overboard" + ], + "tags": [ + "Transportation + Water" + ], + "author": "Simran", + "version": "2.1.99" + }, + { + "id": "25729A2F-D0FA-4C82-AEEC-3A771EB4D12A", + "name": "light-flood-down", + "codepoint": "F1987", + "aliases": [ + "floodlight-down" + ], + "tags": [ + "Home Automation" + ], + "author": "Tim Grelka", + "version": "6.5.95" + }, + { + "id": "9CE460EF-B246-4833-AF6D-B6ACB2A1E9A8", + "name": "light-flood-up", + "codepoint": "F1988", + "aliases": [ + "floodlight-up" + ], + "tags": [ + "Home Automation" + ], + "author": "Tim Grelka", + "version": "6.5.95" + }, + { + "id": "F309BA75-39A7-45AC-9B1A-22D1F7D41345", + "name": "light-recessed", + "codepoint": "F179B", + "aliases": [ + "can-light", + "pot-light", + "high-hat-light", + "hi-hat-light", + "downlight" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "647E0001-A60B-4D74-B127-BF522712922F", + "name": "light-switch", + "codepoint": "F097E", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Google", + "version": "2.4.85" + }, + { + "id": "ECC94305-DFA6-4D9B-85C8-CC79F3F05FB5", + "name": "lightbulb", + "codepoint": "F0335", + "aliases": [ + "idea", + "bulb" + ], + "tags": [ + "Home Automation" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "1FED2710-D8D6-41FC-9318-51A23EDD13CF", + "name": "lightbulb-alert", + "codepoint": "F19E1", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.6.95" + }, + { + "id": "AC5BBA36-C64C-4E2F-B0E9-2B35A4D9FFE8", + "name": "lightbulb-alert-outline", + "codepoint": "F19E2", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.6.95" + }, + { + "id": "DB38FD91-5875-4D53-81A9-A0B5400D53AE", + "name": "lightbulb-auto", + "codepoint": "F1800", + "aliases": [ + "lightbulb-automatic", + "lightbulb-motion" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "34AE1531-6F13-40A5-8E15-ABDD1227DB19", + "name": "lightbulb-auto-outline", + "codepoint": "F1801", + "aliases": [ + "lightbulb-automatic-outline", + "lightbulb-motion-outline" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "7D6FF098-D459-4B89-A13C-C9145A1EB992", + "name": "lightbulb-cfl", + "codepoint": "F1208", + "aliases": [ + "bulb-cfl" + ], + "tags": [ + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "4.6.95" + }, + { + "id": "9E3FA5DD-7C93-4283-A7BD-30AE71ACD2C6", + "name": "lightbulb-cfl-off", + "codepoint": "F1209", + "aliases": [ + "bulb-cfl-off" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "4.6.95" + }, + { + "id": "0F61D2EB-5321-4D49-B9DD-4F205DA010A2", + "name": "lightbulb-cfl-spiral", + "codepoint": "F1275", + "aliases": [ + "bulb-cfl-spiral" + ], + "tags": [ + "Home Automation" + ], + "author": "undearius", + "version": "4.7.95" + }, + { + "id": "49D60773-F400-491A-AD3F-B50110089F63", + "name": "lightbulb-cfl-spiral-off", + "codepoint": "F12C3", + "aliases": [ + "bulb-cfl-spiral-off" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "43164D2A-705D-4D6E-9195-E2D559E493B1", + "name": "lightbulb-fluorescent-tube", + "codepoint": "F1804", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "6.1.95" + }, + { + "id": "5D974435-3D3A-4BE6-8422-AD3F6E908BD7", + "name": "lightbulb-fluorescent-tube-outline", + "codepoint": "F1805", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "6.1.95" + }, + { + "id": "DB267C0E-F298-4380-99C8-E18FA8E06554", + "name": "lightbulb-group", + "codepoint": "F1253", + "aliases": [ + "bulb-group" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Richins", + "version": "4.6.95" + }, + { + "id": "CA2B5020-40AD-44C1-8868-F14927FCD535", + "name": "lightbulb-group-off", + "codepoint": "F12CD", + "aliases": [ + "bulb-group-off" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "54E68537-16C8-48C4-82F8-4A1000DA605D", + "name": "lightbulb-group-off-outline", + "codepoint": "F12CE", + "aliases": [ + "bulb-group-off-outline" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "C4751630-A657-4A0B-89C5-6FD3037A8CD6", + "name": "lightbulb-group-outline", + "codepoint": "F1254", + "aliases": [ + "bulb-group-outline" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Richins", + "version": "4.6.95" + }, + { + "id": "33D321D2-E427-469E-9646-D5758B4D5038", + "name": "lightbulb-multiple", + "codepoint": "F1255", + "aliases": [ + "lightbulbs", + "bulb-multiple", + "bulbs" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Richins", + "version": "4.6.95" + }, + { + "id": "B336C5E4-48AB-4620-9DA4-DB1144885F7C", + "name": "lightbulb-multiple-off", + "codepoint": "F12CF", + "aliases": [ + "lightbulbs-off", + "bulb-multiple-off", + "bulbs-off" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "827B8418-9667-4429-A4D3-7C0553D1946E", + "name": "lightbulb-multiple-off-outline", + "codepoint": "F12D0", + "aliases": [ + "lightbulbs-off-outline", + "bulb-multiple-off-outline", + "bulbs-off-outline" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "7AAEC297-D587-4D13-9397-50C8C93B48C8", + "name": "lightbulb-multiple-outline", + "codepoint": "F1256", + "aliases": [ + "lightbulbs-outline", + "bulb-multiple-outline", + "bulbs-outline" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Richins", + "version": "4.6.95" + }, + { + "id": "14D09F5A-C467-428B-9C5A-F2B3939D1678", + "name": "lightbulb-off", + "codepoint": "F0E4F", + "aliases": [ + "bulb-off" + ], + "tags": [ + "Home Automation" + ], + "author": "Hans B\u00f6hm", + "version": "3.6.95" + }, + { + "id": "02757DC7-3D66-4244-B115-C69A74D24B66", + "name": "lightbulb-off-outline", + "codepoint": "F0E50", + "aliases": [ + "bulb-off-outline" + ], + "tags": [ + "Home Automation" + ], + "author": "Hans B\u00f6hm", + "version": "3.6.95" + }, + { + "id": "4B3F67C4-02C3-4083-B47A-645AD24992FA", + "name": "lightbulb-on", + "codepoint": "F06E8", + "aliases": [ + "idea", + "bulb-on" + ], + "tags": [ + "Home Automation" + ], + "author": "Austin Andrews", + "version": "1.8.36" + }, + { + "id": "1FDA626F-5858-43AE-92A0-9CCE7168F08F", + "name": "lightbulb-on-outline", + "codepoint": "F06E9", + "aliases": [ + "idea", + "bulb-on-outline" + ], + "tags": [ + "Home Automation" + ], + "author": "Austin Andrews", + "version": "1.8.36" + }, + { + "id": "BF6C3B65-0795-43E0-B373-058414FDD485", + "name": "lightbulb-outline", + "codepoint": "F0336", + "aliases": [ + "idea", + "bulb-outline" + ], + "tags": [ + "Home Automation" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "CB600C6A-E43E-4723-A8F0-963222692C23", + "name": "lightbulb-question", + "codepoint": "F19E3", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.6.95" + }, + { + "id": "8EFBF4AB-73DD-41EC-BF3C-2503A5BDF93E", + "name": "lightbulb-question-outline", + "codepoint": "F19E4", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.6.95" + }, + { + "id": "2D6C2BB9-CF5E-4BD1-A44B-262F2A61FAC2", + "name": "lightbulb-spot", + "codepoint": "F17F4", + "aliases": [ + "lightbulb-halogen", + "lightbulb-gu10" + ], + "tags": [ + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "6.1.95" + }, + { + "id": "A4DF4624-753B-440B-98C9-A25EE330B0AE", + "name": "lightbulb-spot-off", + "codepoint": "F17F5", + "aliases": [ + "lightbulb-halogen-off", + "lightbulb-gu10-off" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "52A21A41-EC71-4807-BE6B-CF5ED8BBAD10", + "name": "lightbulb-variant", + "codepoint": "F1802", + "aliases": [ + "lightbulb-edison", + "lightbulb-filament" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "70DD894F-1717-4C05-9C34-D7CE1ACF36CC", + "name": "lightbulb-variant-outline", + "codepoint": "F1803", + "aliases": [ + "lightbulb-edison-outline", + "lightbulb-filament-outline" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "95534506-8ECD-49B3-9F87-64D52CC874BA", + "name": "lighthouse", + "codepoint": "F09FF", + "aliases": [ + "beacon" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "2.5.94" + }, + { + "id": "85B287CF-D036-4E36-934F-B6FA28892D9C", + "name": "lighthouse-on", + "codepoint": "F0A00", + "aliases": [ + "beacon" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "2.5.94" + }, + { + "id": "A4A9C031-02B0-45C7-B9C8-EA1541DB9A38", + "name": "lightning-bolt", + "codepoint": "F140B", + "aliases": [ + "thunder", + "storm", + "energy", + "electricity" + ], + "tags": [ + "Home Automation" + ], + "author": "Brooke Clifton", + "version": "5.1.45" + }, + { + "id": "F055DA49-5992-4DDC-8C71-E5D331520DEA", + "name": "lightning-bolt-circle", + "codepoint": "F0820", + "aliases": [ + "amp", + "offline-bolt", + "flash-circle", + "electricity-circle", + "energy-circle", + "thunder-circle", + "storm-circle" + ], + "tags": [ + "Home Automation" + ], + "author": "Google", + "version": "2.1.19" + }, + { + "id": "908D1C1F-8D3A-4316-8CF5-ABDF16747DA1", + "name": "lightning-bolt-outline", + "codepoint": "F140C", + "aliases": [ + "thunder-outline", + "storm-outline", + "energy-outline", + "electricity-outline" + ], + "tags": [ + "Home Automation" + ], + "author": "Brooke Clifton", + "version": "5.1.45" + }, + { + "id": "A19711E4-E339-4016-970B-F81D14B303AC", + "name": "line-scan", + "codepoint": "F0624", + "aliases": [], + "tags": [], + "author": "TheSnowfield", + "version": "1.6.50" + }, + { + "id": "F718A4A1-9D7B-45E5-B0AD-50FDA06BA3C3", + "name": "lingerie", + "codepoint": "F1476", + "aliases": [ + "underwear", + "bra", + "panties" + ], + "tags": [ + "Clothing" + ], + "author": "Kristian Mohl", + "version": "5.2.45" + }, + { + "id": "462769C2-0A30-4B31-B66C-55168B10D705", + "name": "link", + "codepoint": "F0337", + "aliases": [ + "insert-link" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "A1FC74FE-BCA4-447F-AA0D-837A8E33C945", + "name": "link-box", + "codepoint": "F0D1A", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.3.92" + }, + { + "id": "7CBB0F91-4D15-414D-8623-EB84F13AFA75", + "name": "link-box-outline", + "codepoint": "F0D1B", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.3.92" + }, + { + "id": "76AB74B7-D753-4AE9-9FDD-5A0C2B8AB823", + "name": "link-box-variant", + "codepoint": "F0D1C", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.3.92" + }, + { + "id": "8BEB1816-449A-43E8-8A08-0030E1D4DB93", + "name": "link-box-variant-outline", + "codepoint": "F0D1D", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.3.92" + }, + { + "id": "CDEA2CC8-FD08-49E6-AC29-A5DD70956C35", + "name": "link-lock", + "codepoint": "F10BA", + "aliases": [ + "block-chain" + ], + "tags": [ + "Lock" + ], + "author": "Michael Richins", + "version": "4.2.95" + }, + { + "id": "0DACA19D-EFEB-4D22-BE20-9E8FB8C1BBEB", + "name": "link-off", + "codepoint": "F0338", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "0436D77E-F53E-4A1E-A402-916D7D90A1BE", + "name": "link-plus", + "codepoint": "F0C94", + "aliases": [ + "link-add" + ], + "tags": [], + "author": "Google", + "version": "3.2.89" + }, + { + "id": "4D09DDBE-9716-4162-9DA9-B50892241E15", + "name": "link-variant", + "codepoint": "F0339", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "1D8C8A91-65E7-4FED-B4C6-C29550080C43", + "name": "link-variant-minus", + "codepoint": "F10FF", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.3.95" + }, + { + "id": "BC8F07E8-9157-49BB-B8DF-CCCDB19C5467", + "name": "link-variant-off", + "codepoint": "F033A", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "9132A003-2D40-49A6-9D8B-F2AD2EC98788", + "name": "link-variant-plus", + "codepoint": "F1100", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.3.95" + }, + { + "id": "E1733CFB-12E3-436F-A0EC-F75AE38BAEDB", + "name": "link-variant-remove", + "codepoint": "F1101", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.3.95" + }, + { + "id": "248F9A0F-7732-4FC9-8E64-2E4B47BBFDCD", + "name": "linkedin", + "codepoint": "F033B", + "aliases": [], + "tags": [ + "Brand \/ Logo", + "Social Media" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "A58FE3A3-BC2C-48A4-8146-0D15F1B80128", + "name": "linux", + "codepoint": "F033D", + "aliases": [ + "tux" + ], + "tags": [ + "Animal", + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "608E356A-A5F0-4992-BE8D-E99CCC533FC7", + "name": "linux-mint", + "codepoint": "F08ED", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "2.3.50" + }, + { + "id": "95390315-999E-4E82-8D89-CDF89AE6478F", + "name": "lipstick", + "codepoint": "F13B5", + "aliases": [], + "tags": [ + "Health \/ Beauty" + ], + "author": "iiiiiiines", + "version": "5.0.45" + }, + { + "id": "BAB8D475-0C50-46EB-9B05-8101442C4F33", + "name": "liquid-spot", + "codepoint": "F1826", + "aliases": [ + "ink-spot", + "puddle", + "water", + "blood", + "spill", + "oil", + "dirty" + ], + "tags": [ + "Automotive", + "Medical \/ Hospital" + ], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "48C6596F-07B5-495C-82E2-683B09DD7040", + "name": "liquor", + "codepoint": "F191E", + "aliases": [ + "booze", + "alcohol", + "beverages", + "whiskey", + "rum", + "wine", + "tequila", + "beer", + "spirits" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Google", + "version": "6.4.95" + }, + { + "id": "CC9CEDB3-55DE-4CCA-B31F-888383F6C69E", + "name": "list-status", + "codepoint": "F15AB", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "5.5.55" + }, + { + "id": "1EB3C314-463F-488D-9DC6-3589C661984E", + "name": "litecoin", + "codepoint": "F0A61", + "aliases": [], + "tags": [ + "Banking", + "Brand \/ Logo", + "Currency" + ], + "author": "Contributors", + "version": "2.6.95" + }, + { + "id": "205A2FF1-8827-4D3D-8580-FF7FFCD5232C", + "name": "loading", + "codepoint": "F0772", + "aliases": [], + "tags": [], + "author": "Kateryna Porshnieva", + "version": "1.9.32" + }, + { + "id": "2D8B2899-C765-48CF-9AEA-64327CB14542", + "name": "location-enter", + "codepoint": "F0FC4", + "aliases": [ + "presence-enter" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Richins", + "version": "4.0.96" + }, + { + "id": "83A1C782-63D7-476B-8A6D-A694F29AE3A9", + "name": "location-exit", + "codepoint": "F0FC5", + "aliases": [ + "presence-exit" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Richins", + "version": "4.0.96" + }, + { + "id": "D711AFDE-2B8D-4932-82AC-A04E7B2810AE", + "name": "lock", + "codepoint": "F033E", + "aliases": [ + "https", + "password", + "secure", + "protected", + "encryption" + ], + "tags": [ + "Lock", + "Home Automation", + "Automotive" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "6AFF2FDC-D4F8-41F6-8B80-908D1AB87424", + "name": "lock-alert", + "codepoint": "F08EE", + "aliases": [ + "lock-warning", + "password-alert", + "encryption-alert", + "password-warning", + "encryption-warning" + ], + "tags": [ + "Lock", + "Alert \/ Error", + "Home Automation" + ], + "author": "Simran", + "version": "2.3.50" + }, + { + "id": "6DE0B795-B0C1-4CFC-A47E-0D1C3A203248", + "name": "lock-alert-outline", + "codepoint": "F15D1", + "aliases": [ + "lock-warning-outline", + "password-alert-outline", + "encryption-alert-outline", + "password-warning-outline", + "encryption-warning-outline" + ], + "tags": [ + "Home Automation", + "Alert \/ Error", + "Lock" + ], + "author": "Michael Irigoyen", + "version": "5.6.55" + }, + { + "id": "CA254138-2001-4A37-8D52-E65D608E0E10", + "name": "lock-check", + "codepoint": "F139A", + "aliases": [ + "password-check", + "password-secure", + "encryption-check", + "encryption-secure", + "password-verified", + "encryption-verified" + ], + "tags": [ + "Lock" + ], + "author": "Fran\u00e7ois Risoud", + "version": "5.0.45" + }, + { + "id": "4A17CD48-4EFA-41A5-9A40-4BF9C01F2B18", + "name": "lock-check-outline", + "codepoint": "F16A8", + "aliases": [ + "password-check-outline", + "password-secure-outline", + "encryption-check-outline", + "encryption-secure-outline", + "password-verified-outline", + "encryption-verified-outline" + ], + "tags": [ + "Lock" + ], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "C16C2563-9EA4-4545-9CF4-56C5EA9FD9F9", + "name": "lock-clock", + "codepoint": "F097F", + "aliases": [ + "confidential-mode", + "password-clock", + "password-expiration", + "encryption-expiration" + ], + "tags": [ + "Lock", + "Date \/ Time" + ], + "author": "Google", + "version": "2.4.85" + }, + { + "id": "1C00C37C-183D-41D7-ACEF-18ACFF70DE80", + "name": "lock-minus", + "codepoint": "F16A9", + "aliases": [ + "password-minus", + "encryption-minus" + ], + "tags": [ + "Lock" + ], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "073A5F44-B5D1-4112-AD20-1F86F94ADF60", + "name": "lock-minus-outline", + "codepoint": "F16AA", + "aliases": [ + "password-minus-outline", + "encryption-minus" + ], + "tags": [ + "Lock" + ], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "481E2C2A-E70D-4323-867E-5632966B9555", + "name": "lock-off", + "codepoint": "F1671", + "aliases": [ + "password-off", + "not-protected", + "unsecure", + "encryption-off" + ], + "tags": [ + "Lock" + ], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "AAC1BB51-BA46-4FB6-B901-F602E7C55351", + "name": "lock-off-outline", + "codepoint": "F1672", + "aliases": [ + "password-off-outline", + "unsecure-outline", + "not-protected-outline", + "encryption-off-outline" + ], + "tags": [ + "Lock" + ], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "E357D5CD-7E42-463B-899A-7D7B038A3E31", + "name": "lock-open", + "codepoint": "F033F", + "aliases": [ + "unlocked", + "decrypted" + ], + "tags": [ + "Lock", + "Home Automation", + "Automotive" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "D8707612-8DFB-4F83-9FAE-2058254A651F", + "name": "lock-open-alert", + "codepoint": "F139B", + "aliases": [ + "unlocked-alert", + "decrypted-alert", + "lock-open-warning", + "unlocked-warning", + "decrypted-warning" + ], + "tags": [ + "Alert \/ Error", + "Home Automation", + "Lock" + ], + "author": "Fran\u00e7ois Risoud", + "version": "5.0.45" + }, + { + "id": "47EFC7F8-698E-4466-8EDE-DB6334FE6C18", + "name": "lock-open-alert-outline", + "codepoint": "F15D2", + "aliases": [ + "unlocked-alert-outline", + "lock-open-warning-outline", + "decrypted-alert-outline", + "unlocked-warning-outline", + "decrypted-warning-outline" + ], + "tags": [ + "Home Automation", + "Alert \/ Error", + "Lock" + ], + "author": "Michael Irigoyen", + "version": "5.6.55" + }, + { + "id": "5ED06AF8-75C7-4AC3-962E-F742236AFDA6", + "name": "lock-open-check", + "codepoint": "F139C", + "aliases": [ + "unlocked-check", + "decrypted-check" + ], + "tags": [ + "Lock" + ], + "author": "Fran\u00e7ois Risoud", + "version": "5.0.45" + }, + { + "id": "FA8CFB4F-319F-42BE-8615-B4FECDA27719", + "name": "lock-open-check-outline", + "codepoint": "F16AB", + "aliases": [ + "unlocked-check-outline", + "decrypted-check-outline" + ], + "tags": [ + "Lock" + ], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "5487A862-47C1-445A-B6F4-16AAAD6D058B", + "name": "lock-open-minus", + "codepoint": "F16AC", + "aliases": [ + "unlocked-minus", + "decrypted-minus" + ], + "tags": [ + "Lock" + ], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "A268FC79-9328-4B33-A734-9A4614BB3776", + "name": "lock-open-minus-outline", + "codepoint": "F16AD", + "aliases": [ + "unlocked-minus-outline", + "decrypted-minus-outline" + ], + "tags": [ + "Lock" + ], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "DCE8B967-BCDE-4130-8BF3-DDA78A78326F", + "name": "lock-open-outline", + "codepoint": "F0340", + "aliases": [ + "unlocked-outline", + "decrypted-outline" + ], + "tags": [ + "Lock", + "Home Automation", + "Automotive" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "8062D7E8-C9C1-42E1-B42F-E5A9618F1DCD", + "name": "lock-open-plus", + "codepoint": "F16AE", + "aliases": [ + "unlocked-plus", + "decrypted-plus", + "lock-open-add", + "unlocked-add", + "decrypted-add" + ], + "tags": [ + "Lock" + ], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "804F39C9-F4EB-4663-8EA6-67F668C8CCDF", + "name": "lock-open-plus-outline", + "codepoint": "F16AF", + "aliases": [ + "unlocked-plus-outline", + "lock-open-add-outline", + "unlocked-add-outline", + "decrypted-plus-outline", + "decrypted-add-outline" + ], + "tags": [ + "Lock" + ], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "DBA50293-BCD6-4CC6-81E7-E63AF1EB56AE", + "name": "lock-open-remove", + "codepoint": "F16B0", + "aliases": [ + "unlocked-remove", + "decrypted-remove" + ], + "tags": [ + "Lock" + ], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "73C80D40-9B24-42A8-A22A-94DDE61DDCFC", + "name": "lock-open-remove-outline", + "codepoint": "F16B1", + "aliases": [ + "unlocked-remove-outline", + "decrypted-remove-outline" + ], + "tags": [ + "Lock" + ], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "4171E1EE-CA1A-4885-B41B-3EAE135BA8FE", + "name": "lock-open-variant", + "codepoint": "F0FC6", + "aliases": [ + "unlocked-variant", + "decrypted-variant" + ], + "tags": [ + "Lock", + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "4.0.96" + }, + { + "id": "D3253799-FA57-4E62-967B-088FD6F1BF62", + "name": "lock-open-variant-outline", + "codepoint": "F0FC7", + "aliases": [ + "unlocked-variant-outline", + "decrypted-variant-outline" + ], + "tags": [ + "Lock", + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "4.0.96" + }, + { + "id": "86AD97CA-6028-45C2-8C9A-8C4A562A8E49", + "name": "lock-outline", + "codepoint": "F0341", + "aliases": [ + "password-outline", + "secure-outline", + "https-outline", + "protected-outline", + "encryption-outline" + ], + "tags": [ + "Lock", + "Home Automation", + "Automotive" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "6921C166-7D1E-44E4-90B9-ADF6668DDFB9", + "name": "lock-pattern", + "codepoint": "F06EA", + "aliases": [], + "tags": [], + "author": "Haley Halcyon", + "version": "1.8.36" + }, + { + "id": "BA4D2E1E-2BCB-4B17-AC02-52C8F34FAEAE", + "name": "lock-plus", + "codepoint": "F05FB", + "aliases": [ + "enhanced-encryption", + "lock-add", + "encryption-add", + "password-add", + "password-plus", + "encryption-plus" + ], + "tags": [ + "Lock" + ], + "author": "Colton Wiscombe", + "version": "1.5.54" + }, + { + "id": "A4B343ED-8C07-4BD5-9F01-B360F971D23C", + "name": "lock-plus-outline", + "codepoint": "F16B2", + "aliases": [ + "lock-add-outline", + "password-plus-outline", + "password-add-outline", + "encryption-plus-outline", + "encryption-add-outline" + ], + "tags": [ + "Lock" + ], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "390C2479-98DD-46FB-AA39-CD816E7982C8", + "name": "lock-question", + "codepoint": "F08EF", + "aliases": [ + "forgot-password", + "password-question", + "encryption-question" + ], + "tags": [ + "Lock" + ], + "author": "Simran", + "version": "2.3.50" + }, + { + "id": "201B2126-8481-413A-884F-BE6C8C62D531", + "name": "lock-remove", + "codepoint": "F16B3", + "aliases": [ + "password-remove", + "encryption-remove" + ], + "tags": [ + "Lock" + ], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "D5069461-8385-4424-8E19-CE2BEF2C1BAC", + "name": "lock-remove-outline", + "codepoint": "F16B4", + "aliases": [ + "password-remove-outline", + "encryption-remove-outline" + ], + "tags": [ + "Lock" + ], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "82312B48-E128-494E-9D84-DAACB41986F4", + "name": "lock-reset", + "codepoint": "F0773", + "aliases": [ + "password-reset", + "encryption-reset" + ], + "tags": [ + "Lock" + ], + "author": "Google", + "version": "1.9.32" + }, + { + "id": "1D8C9A6B-26F4-45E1-B922-E0BAED0A5FBD", + "name": "lock-smart", + "codepoint": "F08B2", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "2.2.43" + }, + { + "id": "B8B0EAF4-369F-412A-A092-4AA85BBE77FD", + "name": "locker", + "codepoint": "F07D7", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "2.0.46" + }, + { + "id": "4A5533A8-402C-45F2-9D7A-A8949C22C33B", + "name": "locker-multiple", + "codepoint": "F07D8", + "aliases": [ + "lockers" + ], + "tags": [], + "author": "Austin Andrews", + "version": "2.0.46" + }, + { + "id": "63D8BFA5-7AE4-4002-A4C2-C464638C38FC", + "name": "login", + "codepoint": "F0342", + "aliases": [ + "log-in", + "sign-in" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "B590AA80-D315-4344-8036-8FBC25C87D2C", + "name": "login-variant", + "codepoint": "F05FC", + "aliases": [ + "log-in-variant", + "sign-in-variant" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "47DF41F2-49C7-4081-8419-F49C7894E7F1", + "name": "logout", + "codepoint": "F0343", + "aliases": [ + "log-out", + "sign-out" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "FD2A4CE0-AD1F-45D4-B487-BB6E57F2143F", + "name": "logout-variant", + "codepoint": "F05FD", + "aliases": [ + "log-out-variant", + "sign-out-variant" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "F4604109-DEBB-424C-9972-9ACFF76BBEC7", + "name": "longitude", + "codepoint": "F0F5A", + "aliases": [], + "tags": [ + "Navigation", + "Geographic Information System" + ], + "author": "Michael Richins", + "version": "3.9.97" + }, + { + "id": "3633613A-B8A7-49D0-8C1B-5415EC76F426", + "name": "looks", + "codepoint": "F0344", + "aliases": [ + "rainbow" + ], + "tags": [ + "Weather", + "Color" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "8DD7B5D3-1361-460A-8029-6948337CC153", + "name": "lotion", + "codepoint": "F1582", + "aliases": [], + "tags": [ + "Medical \/ Hospital", + "Health \/ Beauty" + ], + "author": "Michael Irigoyen", + "version": "5.5.55" + }, + { + "id": "DB23DCE8-81D6-449E-B6C2-E29804FFF3BD", + "name": "lotion-outline", + "codepoint": "F1583", + "aliases": [], + "tags": [ + "Medical \/ Hospital", + "Health \/ Beauty" + ], + "author": "Michael Irigoyen", + "version": "5.5.55" + }, + { + "id": "74C0DC3D-4DE3-4E67-9100-0B59F2B9A6B2", + "name": "lotion-plus", + "codepoint": "F1584", + "aliases": [ + "hand-sanitizer" + ], + "tags": [ + "Medical \/ Hospital" + ], + "author": "Google", + "version": "5.5.55" + }, + { + "id": "85DF6891-1BE0-4D66-8728-553846F98B1F", + "name": "lotion-plus-outline", + "codepoint": "F1585", + "aliases": [ + "hand-sanitizer-outline" + ], + "tags": [ + "Medical \/ Hospital" + ], + "author": "Google", + "version": "5.5.55" + }, + { + "id": "DB75FD27-01F6-4232-AA23-86C115751A0C", + "name": "loupe", + "codepoint": "F0345", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "235EF258-40BB-47C3-9D5F-1497A7FD34D9", + "name": "lumx", + "codepoint": "F0346", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "6E54F325-2998-4301-9062-8770A4868453", + "name": "lungs", + "codepoint": "F1084", + "aliases": [], + "tags": [ + "Medical \/ Hospital" + ], + "author": "Michael Irigoyen", + "version": "4.2.95" + }, + { + "id": "7AF70024-F9FA-4B50-BD29-3073B6E508B4", + "name": "mace", + "codepoint": "F1843", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Colton Wiscombe", + "version": "6.2.95" + }, + { + "id": "DC51467E-30C0-4144-9AE6-80762ACA972C", + "name": "magazine-pistol", + "codepoint": "F0324", + "aliases": [ + "ammunition-pistol" + ], + "tags": [], + "author": "Andrew Laws", + "version": "1.5.54" + }, + { + "id": "70793340-E8F2-43A0-8AB1-0DAB70CC8B9A", + "name": "magazine-rifle", + "codepoint": "F0323", + "aliases": [ + "ammunition-rifle" + ], + "tags": [], + "author": "Andrew Laws", + "version": "1.5.54" + }, + { + "id": "A7255F1C-0207-4202-B1E5-11DC2BED7161", + "name": "magic-staff", + "codepoint": "F1844", + "aliases": [ + "staff-shimmer", + "magic-wand" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Colton Wiscombe", + "version": "6.2.95" + }, + { + "id": "65B3A914-578A-468F-95C1-9C2B6D0C3A52", + "name": "magnet", + "codepoint": "F0347", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "3A386A5A-35AC-4760-9384-33A9A43CF584", + "name": "magnet-on", + "codepoint": "F0348", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "C2889545-7F08-4AE1-9142-ECF9B79957E1", + "name": "magnify", + "codepoint": "F0349", + "aliases": [ + "search" + ], + "tags": [ + "Geographic Information System" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "C48FDEBE-952C-4B4A-9EB8-47A18186EB0B", + "name": "magnify-close", + "codepoint": "F0980", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "2.4.85" + }, + { + "id": "D6842910-49FD-4F74-8D67-86865549097A", + "name": "magnify-expand", + "codepoint": "F1874", + "aliases": [ + "search-expand" + ], + "tags": [ + "Geographic Information System" + ], + "author": "snis", + "version": "6.2.95" + }, + { + "id": "36D3966F-BFA2-407B-BF36-D21FBA930930", + "name": "magnify-minus", + "codepoint": "F034A", + "aliases": [ + "zoom-out", + "search-minus" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "616EA8BF-F84A-41BC-A933-5A4AF1E4E793", + "name": "magnify-minus-cursor", + "codepoint": "F0A62", + "aliases": [ + "zoom-out-cursor" + ], + "tags": [], + "author": "Michael Richins", + "version": "2.6.95" + }, + { + "id": "9E259697-7035-4E17-82D6-431C74215E67", + "name": "magnify-minus-outline", + "codepoint": "F06EC", + "aliases": [ + "zoom-out-outline", + "search-minus-outline" + ], + "tags": [ + "Geographic Information System" + ], + "author": "Google", + "version": "1.8.36" + }, + { + "id": "798F7C9D-2EC7-47EF-8729-845B4E2DDD16", + "name": "magnify-plus", + "codepoint": "F034B", + "aliases": [ + "zoom-in", + "magnify-add", + "search-plus", + "search-add" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "950E718A-089B-4266-AAFA-B9FA8BB0D3B3", + "name": "magnify-plus-cursor", + "codepoint": "F0A63", + "aliases": [ + "zoom-in-cursor", + "magnify-add-cursor" + ], + "tags": [], + "author": "Michael Richins", + "version": "2.6.95" + }, + { + "id": "521EC414-ECAD-435D-BAE3-4CF772659845", + "name": "magnify-plus-outline", + "codepoint": "F06ED", + "aliases": [ + "zoom-in-outline", + "magnify-add-outline", + "search-plus-outline", + "search-add-outline" + ], + "tags": [ + "Geographic Information System" + ], + "author": "Google", + "version": "1.8.36" + }, + { + "id": "845BBEA5-F20E-4E1B-AB42-FE7BF45FCDAB", + "name": "magnify-remove-cursor", + "codepoint": "F120C", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.6.95" + }, + { + "id": "1465D0D4-32FE-4495-B137-CFE49A390474", + "name": "magnify-remove-outline", + "codepoint": "F120D", + "aliases": [], + "tags": [ + "Geographic Information System" + ], + "author": "Michael Irigoyen", + "version": "4.6.95" + }, + { + "id": "DF9ACF3F-5AF0-4F55-845C-569018942B95", + "name": "magnify-scan", + "codepoint": "F1276", + "aliases": [], + "tags": [], + "author": "Sascha Wohlgemuth", + "version": "4.7.95" + }, + { + "id": "269E49C3-261D-42CD-8EFA-FD76C0BA7B7C", + "name": "mail", + "codepoint": "F0EBB", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.7.94" + }, + { + "id": "CCEA599C-8CED-4D49-83FB-7AC452AADFA0", + "name": "mailbox", + "codepoint": "F06EE", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "1.8.36" + }, + { + "id": "E1072975-827C-4320-A7D9-AEEADA1BCAD9", + "name": "mailbox-open", + "codepoint": "F0D88", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "3.4.93" + }, + { + "id": "B5D3F2A9-4CF7-4030-8909-482E23D3A8DC", + "name": "mailbox-open-outline", + "codepoint": "F0D89", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "3.4.93" + }, + { + "id": "01EC4EC7-B90D-4E1E-B3CF-E9B2E9C16077", + "name": "mailbox-open-up", + "codepoint": "F0D8A", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "3.4.93" + }, + { + "id": "793AC378-1C34-4882-B3A7-6ACA108ACE76", + "name": "mailbox-open-up-outline", + "codepoint": "F0D8B", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "3.4.93" + }, + { + "id": "69A2883B-C904-4769-898E-8BAEB8F8309C", + "name": "mailbox-outline", + "codepoint": "F0D8C", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "3.4.93" + }, + { + "id": "C378F407-C2C4-48CD-9AA3-22B6C4C0E0AF", + "name": "mailbox-up", + "codepoint": "F0D8D", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "3.4.93" + }, + { + "id": "D9ECA2BA-AFCB-46C8-9EC4-3155063670CC", + "name": "mailbox-up-outline", + "codepoint": "F0D8E", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "3.4.93" + }, + { + "id": "75EE1BFB-90E7-4500-A7E1-72E898059E16", + "name": "manjaro", + "codepoint": "F160A", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "5.6.55" + }, + { + "id": "99738FF8-01AE-420D-8481-8B9E1402255B", + "name": "map", + "codepoint": "F034D", + "aliases": [], + "tags": [ + "Navigation", + "Geographic Information System" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "39D94D7A-D161-409F-8FFC-889474A4DCE9", + "name": "map-check", + "codepoint": "F0EBC", + "aliases": [ + "map-tick" + ], + "tags": [ + "Navigation", + "Geographic Information System" + ], + "author": "mocking-mike", + "version": "3.7.94" + }, + { + "id": "8EF339C7-1106-40FC-B2CC-3387F915824E", + "name": "map-check-outline", + "codepoint": "F0EBD", + "aliases": [ + "map-tick-outline" + ], + "tags": [ + "Navigation", + "Geographic Information System" + ], + "author": "mocking-mike", + "version": "3.7.94" + }, + { + "id": "A3A8668B-BEF0-48CC-AEB1-ACC765D10CC0", + "name": "map-clock", + "codepoint": "F0D1E", + "aliases": [ + "timezone" + ], + "tags": [ + "Navigation", + "Geographic Information System", + "Date \/ Time" + ], + "author": "Augustin Ursu", + "version": "3.3.92" + }, + { + "id": "EEB984B2-6639-452D-AD56-06A8EC862EE4", + "name": "map-clock-outline", + "codepoint": "F0D1F", + "aliases": [ + "timezone-outline" + ], + "tags": [ + "Navigation", + "Geographic Information System", + "Date \/ Time" + ], + "author": "Augustin Ursu", + "version": "3.3.92" + }, + { + "id": "69651FB0-089C-4D57-8465-46716D86DBCA", + "name": "map-legend", + "codepoint": "F0A01", + "aliases": [], + "tags": [ + "Navigation", + "Geographic Information System" + ], + "author": "Perth Totty", + "version": "2.5.94" + }, + { + "id": "379B9D93-434B-46E7-9ABC-CAFAB694B209", + "name": "map-marker", + "codepoint": "F034E", + "aliases": [ + "location", + "address-marker", + "location-on", + "place", + "room" + ], + "tags": [ + "Navigation", + "Geographic Information System" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "518FF04A-58EC-4917-BF7F-BBAFDD9B00DD", + "name": "map-marker-account", + "codepoint": "F18E3", + "aliases": [], + "tags": [ + "Navigation" + ], + "author": "Google", + "version": "6.3.95" + }, + { + "id": "9EE1A46D-F991-45D7-A170-2DE8AED0D1EA", + "name": "map-marker-account-outline", + "codepoint": "F18E4", + "aliases": [], + "tags": [ + "Navigation" + ], + "author": "Google", + "version": "6.3.95" + }, + { + "id": "DE87F14C-101D-47F2-87C5-118BE76F7C58", + "name": "map-marker-alert", + "codepoint": "F0F05", + "aliases": [ + "location-alert", + "location-warning" + ], + "tags": [ + "Navigation", + "Alert \/ Error", + "Geographic Information System" + ], + "author": "Fran\u00e7ois Risoud", + "version": "3.8.95" + }, + { + "id": "65B4F317-EB12-4BD4-8E9B-C6D3A153B868", + "name": "map-marker-alert-outline", + "codepoint": "F0F06", + "aliases": [ + "location-alert-outline", + "location-warning-outline" + ], + "tags": [ + "Navigation", + "Alert \/ Error", + "Geographic Information System" + ], + "author": "Fran\u00e7ois Risoud", + "version": "3.8.95" + }, + { + "id": "FA10B579-AC1E-48F7-BF8C-AB7F1380F3F9", + "name": "map-marker-check", + "codepoint": "F0C95", + "aliases": [ + "map-marker-tick", + "where-to-vote", + "location-check" + ], + "tags": [ + "Navigation", + "Geographic Information System" + ], + "author": "Google", + "version": "3.2.89" + }, + { + "id": "76C82A3D-F79E-46D9-8234-456F39A35567", + "name": "map-marker-check-outline", + "codepoint": "F12FB", + "aliases": [ + "location-check-outline", + "where-to-vote-outline" + ], + "tags": [ + "Navigation", + "Geographic Information System" + ], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "03F79839-314C-4F29-B3E3-43B97D7F7FA6", + "name": "map-marker-circle", + "codepoint": "F034F", + "aliases": [ + "explore-nearby", + "location-circle" + ], + "tags": [ + "Navigation", + "Geographic Information System" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "B2FF0F5A-4B2C-480C-9022-D84AD78E72ED", + "name": "map-marker-distance", + "codepoint": "F08F0", + "aliases": [ + "location-distance" + ], + "tags": [ + "Navigation", + "Geographic Information System" + ], + "author": "Michael Richins", + "version": "2.3.50" + }, + { + "id": "6E4368BF-7150-40D2-861B-375421A7774B", + "name": "map-marker-down", + "codepoint": "F1102", + "aliases": [ + "location-down" + ], + "tags": [ + "Navigation", + "Geographic Information System" + ], + "author": "Fran\u00e7ois Risoud", + "version": "4.3.95" + }, + { + "id": "5FFC5505-B029-4487-A68E-EDE4B708E5B9", + "name": "map-marker-left", + "codepoint": "F12DB", + "aliases": [ + "location-left" + ], + "tags": [ + "Navigation", + "Geographic Information System" + ], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "0283CCF3-BC73-4642-92FA-38E62D635368", + "name": "map-marker-left-outline", + "codepoint": "F12DD", + "aliases": [ + "location-left-outline" + ], + "tags": [ + "Navigation", + "Geographic Information System" + ], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "34DD1168-3875-4F77-9C0B-5BCFFB80FBBD", + "name": "map-marker-minus", + "codepoint": "F0650", + "aliases": [ + "location-minus" + ], + "tags": [ + "Navigation", + "Geographic Information System" + ], + "author": "Simran", + "version": "1.6.50" + }, + { + "id": "21A7EBBF-D884-4A4E-B722-01600B89FFB4", + "name": "map-marker-minus-outline", + "codepoint": "F12F9", + "aliases": [ + "location-minus-outline" + ], + "tags": [ + "Geographic Information System", + "Navigation" + ], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "6283577D-6B31-4297-8747-4F466580E79A", + "name": "map-marker-multiple", + "codepoint": "F0350", + "aliases": [ + "map-markers", + "location-multiple", + "locations" + ], + "tags": [ + "Navigation", + "Geographic Information System" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "360866E5-D407-4E54-9470-7ECF6759F941", + "name": "map-marker-multiple-outline", + "codepoint": "F1277", + "aliases": [ + "locations-outline", + "location-multiple-outline", + "map-markers-outline" + ], + "tags": [ + "Navigation", + "Geographic Information System" + ], + "author": "Austin Andrews", + "version": "4.7.95" + }, + { + "id": "92410469-09D9-4C29-AC79-CD0DF882D05F", + "name": "map-marker-off", + "codepoint": "F0351", + "aliases": [ + "location-off" + ], + "tags": [ + "Navigation", + "Geographic Information System" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "48218DC3-F2A6-4C4B-9B5E-0648815B8864", + "name": "map-marker-off-outline", + "codepoint": "F12FD", + "aliases": [ + "location-off-outline" + ], + "tags": [ + "Navigation", + "Geographic Information System" + ], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "DE8F4623-A6D4-4DD4-B61A-5936A0538FD2", + "name": "map-marker-outline", + "codepoint": "F07D9", + "aliases": [ + "location-outline", + "address-marker-outline", + "location-on-outline", + "place-outline" + ], + "tags": [ + "Navigation", + "Geographic Information System" + ], + "author": "Google", + "version": "2.0.46" + }, + { + "id": "A20F1915-26FB-41BD-A407-B73A90936E76", + "name": "map-marker-path", + "codepoint": "F0D20", + "aliases": [ + "location-path" + ], + "tags": [ + "Navigation", + "Geographic Information System" + ], + "author": "Austin Andrews", + "version": "3.3.92" + }, + { + "id": "40CBD1A1-11E1-44A6-8627-6F7C658F5E0F", + "name": "map-marker-plus", + "codepoint": "F0651", + "aliases": [ + "location-plus", + "map-marker-add", + "location-add" + ], + "tags": [ + "Navigation", + "Geographic Information System" + ], + "author": "Simran", + "version": "1.6.50" + }, + { + "id": "C1F80E9D-2408-46FC-9E92-AE61A8D5C650", + "name": "map-marker-plus-outline", + "codepoint": "F12F8", + "aliases": [ + "map-marker-add-outline", + "location-plus-outline", + "location-add-outline" + ], + "tags": [ + "Geographic Information System", + "Navigation" + ], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "C9930FE9-E831-4194-A4FA-905CE141CFEA", + "name": "map-marker-question", + "codepoint": "F0F07", + "aliases": [ + "location-question" + ], + "tags": [ + "Navigation", + "Geographic Information System" + ], + "author": "Google", + "version": "3.8.95" + }, + { + "id": "0F3F436D-95BF-4578-A209-CF8B26DEDA15", + "name": "map-marker-question-outline", + "codepoint": "F0F08", + "aliases": [ + "location-question-outline" + ], + "tags": [ + "Navigation", + "Geographic Information System" + ], + "author": "Google", + "version": "3.8.95" + }, + { + "id": "8F346B27-607A-4C98-B83E-C32E921D0468", + "name": "map-marker-radius", + "codepoint": "F0352", + "aliases": [ + "location-radius" + ], + "tags": [ + "Navigation", + "Geographic Information System", + "Home Automation" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "865AB612-D546-431D-85A8-52C305B263F8", + "name": "map-marker-radius-outline", + "codepoint": "F12FC", + "aliases": [ + "location-radius-outline" + ], + "tags": [ + "Navigation", + "Geographic Information System", + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "8BC7ABEC-FE5F-4C2F-889C-8C8804DD12E4", + "name": "map-marker-remove", + "codepoint": "F0F09", + "aliases": [ + "location-remove" + ], + "tags": [ + "Navigation", + "Geographic Information System" + ], + "author": "GreenTurtwig", + "version": "3.8.95" + }, + { + "id": "75FDE93C-EB66-4824-9F96-1B4212BDA785", + "name": "map-marker-remove-outline", + "codepoint": "F12FA", + "aliases": [ + "location-remove-outline" + ], + "tags": [ + "Geographic Information System", + "Navigation" + ], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "D19361A0-41AB-4E11-B4D4-AE50D42B3B2C", + "name": "map-marker-remove-variant", + "codepoint": "F0F0A", + "aliases": [ + "location-remove-variant-outline" + ], + "tags": [ + "Navigation", + "Geographic Information System" + ], + "author": "GreenTurtwig", + "version": "3.8.95" + }, + { + "id": "445C4B6D-5A56-42F3-845F-92C22A11BB64", + "name": "map-marker-right", + "codepoint": "F12DC", + "aliases": [ + "location-right" + ], + "tags": [ + "Navigation", + "Geographic Information System" + ], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "9456009F-0387-4A76-8B0F-22CCBBA53071", + "name": "map-marker-right-outline", + "codepoint": "F12DE", + "aliases": [ + "location-right-outline" + ], + "tags": [ + "Navigation", + "Geographic Information System" + ], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "B4FB6A62-C598-4E96-8E09-C6A2145EE24C", + "name": "map-marker-star", + "codepoint": "F1608", + "aliases": [ + "map-marker-favorite", + "location-star", + "location-favorite" + ], + "tags": [ + "Navigation" + ], + "author": "Michael Irigoyen", + "version": "5.6.55" + }, + { + "id": "9B256D01-4CB0-4736-BBB7-6D44417DD02B", + "name": "map-marker-star-outline", + "codepoint": "F1609", + "aliases": [ + "map-marker-favorite-outline", + "location-star-outline", + "location-favorite-outline" + ], + "tags": [ + "Navigation" + ], + "author": "Michael Irigoyen", + "version": "5.6.55" + }, + { + "id": "0C1B9015-C0F4-4710-87D2-BA7B710943F2", + "name": "map-marker-up", + "codepoint": "F1103", + "aliases": [ + "location-up" + ], + "tags": [ + "Navigation", + "Geographic Information System" + ], + "author": "Fran\u00e7ois Risoud", + "version": "4.3.95" + }, + { + "id": "3C2F6429-F2F9-49A9-AF23-DD33413D2619", + "name": "map-minus", + "codepoint": "F0981", + "aliases": [], + "tags": [ + "Navigation", + "Geographic Information System" + ], + "author": "Peter Noble", + "version": "2.4.85" + }, + { + "id": "164AE88B-F990-471C-8663-EFDC05BA14F0", + "name": "map-outline", + "codepoint": "F0982", + "aliases": [], + "tags": [ + "Navigation", + "Geographic Information System" + ], + "author": "Google", + "version": "2.4.85" + }, + { + "id": "3D7A000E-3E94-4B9B-8CAB-2F6923D425B7", + "name": "map-plus", + "codepoint": "F0983", + "aliases": [ + "map-add" + ], + "tags": [ + "Navigation", + "Geographic Information System" + ], + "author": "Peter Noble", + "version": "2.4.85" + }, + { + "id": "6FB911AA-DE27-441D-8C62-CD97ECB99DA7", + "name": "map-search", + "codepoint": "F0984", + "aliases": [], + "tags": [ + "Navigation", + "Geographic Information System" + ], + "author": "GreenTurtwig", + "version": "2.4.85" + }, + { + "id": "4EDC2B6E-3E09-41BF-B08C-EB75CEBFFB96", + "name": "map-search-outline", + "codepoint": "F0985", + "aliases": [], + "tags": [ + "Navigation", + "Geographic Information System" + ], + "author": "GreenTurtwig", + "version": "2.4.85" + }, + { + "id": "061C11C7-55DC-4F79-989C-81756790342A", + "name": "mapbox", + "codepoint": "F0BAA", + "aliases": [], + "tags": [], + "author": "Contributors", + "version": "3.0.39" + }, + { + "id": "4A7710D4-41B8-4D98-A5B9-591943C3B3EF", + "name": "margin", + "codepoint": "F0353", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "71E6D8F0-A3D2-43CB-8940-16AA4E1D9825", + "name": "marker", + "codepoint": "F0652", + "aliases": [ + "highlighter" + ], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "1.6.50" + }, + { + "id": "CFB791C3-6476-418F-80D4-7B8C5A6D1350", + "name": "marker-cancel", + "codepoint": "F0DD9", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Michael Irigoyen", + "version": "3.5.94" + }, + { + "id": "74C5E15E-D227-4272-94E6-EDFDD0F66C9A", + "name": "marker-check", + "codepoint": "F0355", + "aliases": [ + "beenhere", + "marker-tick" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "7DA03280-B018-4813-973A-9CBC0F6C462B", + "name": "mastodon", + "codepoint": "F0AD1", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "2.7.94" + }, + { + "id": "224604D9-8F3D-454A-B11F-D4C00231B15B", + "name": "material-design", + "codepoint": "F0986", + "aliases": [], + "tags": [], + "author": "Google", + "version": "2.4.85" + }, + { + "id": "878C7F4D-DAD0-4334-A3AA-695FD3AD5391", + "name": "material-ui", + "codepoint": "F0357", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "10E7FA7C-8451-44B9-979F-1916AAC7FE28", + "name": "math-compass", + "codepoint": "F0358", + "aliases": [ + "maths-compass" + ], + "tags": [ + "Math", + "Drawing \/ Art" + ], + "author": "Gabriel", + "version": "1.5.54" + }, + { + "id": "6C00C0F3-F537-4591-B7BA-752A1CCD7E38", + "name": "math-cos", + "codepoint": "F0C96", + "aliases": [ + "math-cosine", + "maths-cos" + ], + "tags": [ + "Math" + ], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "E911AE3C-8505-42CD-889B-0EE3BEDC3B0D", + "name": "math-integral", + "codepoint": "F0FC8", + "aliases": [], + "tags": [ + "Math" + ], + "author": "Michael Irigoyen", + "version": "4.0.96" + }, + { + "id": "0C6E8DE8-731B-451C-809A-22BFF1DADE36", + "name": "math-integral-box", + "codepoint": "F0FC9", + "aliases": [], + "tags": [ + "Math" + ], + "author": "Michael Irigoyen", + "version": "4.0.96" + }, + { + "id": "DD9D199B-D026-4771-8028-A813A3893CDE", + "name": "math-log", + "codepoint": "F1085", + "aliases": [], + "tags": [ + "Math" + ], + "author": "Michael Irigoyen", + "version": "4.2.95" + }, + { + "id": "6C9569E6-55F1-48AF-A11C-2284315D0CE6", + "name": "math-norm", + "codepoint": "F0FCA", + "aliases": [ + "code-or", + "parallel" + ], + "tags": [ + "Math", + "Developer \/ Languages" + ], + "author": "Michael Irigoyen", + "version": "4.0.96" + }, + { + "id": "4FBD0287-AD44-452B-A97A-E5FDD3542A1F", + "name": "math-norm-box", + "codepoint": "F0FCB", + "aliases": [ + "code-or-box", + "parallel-box" + ], + "tags": [ + "Math", + "Developer \/ Languages" + ], + "author": "Michael Irigoyen", + "version": "4.0.96" + }, + { + "id": "CB473E87-BD2F-4416-A36E-6C4C12194D14", + "name": "math-sin", + "codepoint": "F0C97", + "aliases": [ + "math-sine", + "maths-sin" + ], + "tags": [ + "Math" + ], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "47194CCD-AF78-430F-AD95-4D564D6E1D18", + "name": "math-tan", + "codepoint": "F0C98", + "aliases": [ + "math-tangent", + "maths-tan" + ], + "tags": [ + "Math" + ], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "5D5ED3F2-71BD-44B6-B4BB-61D73211335F", + "name": "matrix", + "codepoint": "F0628", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.6.50" + }, + { + "id": "626FA95C-E655-44A6-BA6A-4B60CED44B6D", + "name": "medal", + "codepoint": "F0987", + "aliases": [ + "award" + ], + "tags": [ + "Gaming \/ RPG", + "Sport" + ], + "author": "Michael Richins", + "version": "2.4.85" + }, + { + "id": "22F9B575-7D95-46A3-BA55-625B12E75AC2", + "name": "medal-outline", + "codepoint": "F1326", + "aliases": [], + "tags": [ + "Sport" + ], + "author": "Michael Richins", + "version": "4.9.95" + }, + { + "id": "7F6DF58A-C9A3-4CE7-9664-28C04218C628", + "name": "medical-bag", + "codepoint": "F06EF", + "aliases": [ + "first-aid-kit", + "medicine" + ], + "tags": [ + "Medical \/ Hospital" + ], + "author": "Thomas Hunsaker", + "version": "1.8.36" + }, + { + "id": "B68AA118-B8B5-4A2A-BCA2-A12C8C119319", + "name": "meditation", + "codepoint": "F117B", + "aliases": [], + "tags": [ + "Sport" + ], + "author": "Google", + "version": "4.4.95" + }, + { + "id": "E404434E-17DB-4E90-9D97-5355258E1FCF", + "name": "memory", + "codepoint": "F035B", + "aliases": [ + "chip" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "7D2EBF4F-6B48-4DAE-B5B5-005B4FC7C9BC", + "name": "menorah", + "codepoint": "F17D4", + "aliases": [ + "candelabrum", + "candelabra", + "candle" + ], + "tags": [ + "Religion", + "Holiday" + ], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "05D5D57F-2565-4D15-8241-F778B49430CD", + "name": "menorah-fire", + "codepoint": "F17D5", + "aliases": [ + "menorah-flame", + "candle-flame", + "candelabra-flame", + "candelabra-fire", + "candle-fire", + "candelabrum-fire", + "candelabrum-flame" + ], + "tags": [ + "Religion", + "Holiday" + ], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "0BD2CD08-CCFB-4EC3-B96D-08B0B8230A91", + "name": "menu", + "codepoint": "F035C", + "aliases": [ + "hamburger-menu" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "624A47B1-947E-45AD-A34F-D5DCC1143C5A", + "name": "menu-down", + "codepoint": "F035D", + "aliases": [ + "arrow-drop-down", + "caret-down" + ], + "tags": [ + "Arrow" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "EE6F8AAE-7856-4E4C-AC01-3589A2C66D98", + "name": "menu-down-outline", + "codepoint": "F06B6", + "aliases": [ + "caret-down-outline" + ], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.7.22" + }, + { + "id": "91F83E23-FD44-4277-BD91-037B3D7EB72E", + "name": "menu-left", + "codepoint": "F035E", + "aliases": [ + "arrow-left" + ], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "BC54AA3D-A450-4079-B40C-457FAE2211D5", + "name": "menu-left-outline", + "codepoint": "F0A02", + "aliases": [], + "tags": [], + "author": "Peter Noble", + "version": "2.5.94" + }, + { + "id": "AEB414A7-E7A2-46D6-BAA3-CAFA4E06DA38", + "name": "menu-open", + "codepoint": "F0BAB", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.0.39" + }, + { + "id": "51157881-5A20-4D7D-8E5F-FB0E815C9B3D", + "name": "menu-right", + "codepoint": "F035F", + "aliases": [ + "arrow-right" + ], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "DFE8FD81-B967-4E07-A1C9-44A608613E26", + "name": "menu-right-outline", + "codepoint": "F0A03", + "aliases": [], + "tags": [], + "author": "Peter Noble", + "version": "2.5.94" + }, + { + "id": "6B937FF1-FF63-4829-8BAE-D5E4D1EB64A0", + "name": "menu-swap", + "codepoint": "F0A64", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "GreenTurtwig", + "version": "2.6.95" + }, + { + "id": "AAADBDE7-CC0D-4F69-A795-B38C0B00DC62", + "name": "menu-swap-outline", + "codepoint": "F0A65", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "GreenTurtwig", + "version": "2.6.95" + }, + { + "id": "A526C6AC-3E29-49D1-91FA-07F95B470626", + "name": "menu-up", + "codepoint": "F0360", + "aliases": [ + "arrow-drop-up", + "caret-up" + ], + "tags": [ + "Arrow" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "33B1FB6B-D4F4-4B76-820C-4A2B075DB1B3", + "name": "menu-up-outline", + "codepoint": "F06B7", + "aliases": [ + "caret-up-outline" + ], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.7.22" + }, + { + "id": "0D0E7E15-9615-4A66-8933-8BC98675AE3D", + "name": "merge", + "codepoint": "F0F5C", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.9.97" + }, + { + "id": "99DA4752-8C79-44D8-8286-6EBD696F0B45", + "name": "message", + "codepoint": "F0361", + "aliases": [ + "chat-bubble" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "213A797A-41C0-4804-A5B1-A841898CCC11", + "name": "message-alert", + "codepoint": "F0362", + "aliases": [ + "feedback", + "message-warning", + "announcement", + "sms-failed" + ], + "tags": [ + "Alert \/ Error" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "3487FE3E-2B9B-4C69-B64C-B3E699E9EC8C", + "name": "message-alert-outline", + "codepoint": "F0A04", + "aliases": [ + "announcement-outline", + "feedback-outline", + "message-warning-outline", + "sms-failed-outline" + ], + "tags": [ + "Alert \/ Error" + ], + "author": "Colton Wiscombe", + "version": "2.5.94" + }, + { + "id": "F359CA31-2575-4648-B1E1-466A757F2184", + "name": "message-arrow-left", + "codepoint": "F12F2", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "EAF47F59-C768-4B46-841F-1D8C216D15F2", + "name": "message-arrow-left-outline", + "codepoint": "F12F3", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "3292CBC5-7E1D-405F-A8CD-BAB528B88D45", + "name": "message-arrow-right", + "codepoint": "F12F4", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "BEDCDC33-9EAE-46D2-B380-80A6B47B400C", + "name": "message-arrow-right-outline", + "codepoint": "F12F5", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "B34D5D57-7A9B-43CD-B58F-D18CD484DCC9", + "name": "message-badge", + "codepoint": "F1941", + "aliases": [ + "message-unread", + "message-notification" + ], + "tags": [], + "author": "Google", + "version": "6.4.95" + }, + { + "id": "E3DAA0CA-4F39-49E0-9D3D-5306D764167D", + "name": "message-badge-outline", + "codepoint": "F1942", + "aliases": [ + "message-unread-outline", + "message-notification-outline" + ], + "tags": [], + "author": "Google", + "version": "6.4.95" + }, + { + "id": "80D7EBEA-4C3B-43B9-8181-BEEE728D5D90", + "name": "message-bookmark", + "codepoint": "F15AC", + "aliases": [], + "tags": [], + "author": "Google", + "version": "5.5.55" + }, + { + "id": "94793E49-C5C4-47A8-87FD-215A923ACA2A", + "name": "message-bookmark-outline", + "codepoint": "F15AD", + "aliases": [], + "tags": [], + "author": "Google", + "version": "5.5.55" + }, + { + "id": "1EC9427A-2A02-4F74-9C1B-C4EC5E62B793", + "name": "message-bulleted", + "codepoint": "F06A2", + "aliases": [ + "speaker-notes" + ], + "tags": [], + "author": "Google", + "version": "1.7.12" + }, + { + "id": "5AAB267C-9A9C-4966-862D-A2AC910494E5", + "name": "message-bulleted-off", + "codepoint": "F06A3", + "aliases": [ + "speaker-notes-off" + ], + "tags": [], + "author": "Google", + "version": "1.7.12" + }, + { + "id": "F0F27B00-3C37-4AC0-B8D7-DB2554894079", + "name": "message-cog", + "codepoint": "F06F1", + "aliases": [], + "tags": [ + "Settings" + ], + "author": "Michael Richins", + "version": "1.8.36" + }, + { + "id": "B4FCC7EE-5464-4713-A4F4-8C0CA0E9472E", + "name": "message-cog-outline", + "codepoint": "F1172", + "aliases": [], + "tags": [ + "Settings" + ], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "6434A4B3-F803-4C8B-A03C-BE39E947166B", + "name": "message-draw", + "codepoint": "F0363", + "aliases": [ + "rate-review" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "1FAB8199-286D-4D00-9AA5-7D4D14AC1B74", + "name": "message-fast", + "codepoint": "F19CC", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "6.6.95" + }, + { + "id": "13E100B1-AEB4-4398-9A8D-404F8C765642", + "name": "message-fast-outline", + "codepoint": "F19CD", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "6.6.95" + }, + { + "id": "A9181976-10D1-4CB7-993E-AE8B7DEDEC64", + "name": "message-flash", + "codepoint": "F15A9", + "aliases": [ + "message-quick" + ], + "tags": [], + "author": "Google", + "version": "5.5.55" + }, + { + "id": "DA7B2430-9A55-42D5-AE19-92E108303E79", + "name": "message-flash-outline", + "codepoint": "F15AA", + "aliases": [ + "message-quick-outline" + ], + "tags": [], + "author": "Google", + "version": "5.5.55" + }, + { + "id": "C4C9B194-78C3-47FB-ABF6-5129230527AC", + "name": "message-image", + "codepoint": "F0364", + "aliases": [ + "mms" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "9C0BC648-202E-476E-A034-48C03F7554BF", + "name": "message-image-outline", + "codepoint": "F116C", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "953DF020-3B6E-44ED-B858-A220EC7BE82A", + "name": "message-lock", + "codepoint": "F0FCC", + "aliases": [ + "message-secure" + ], + "tags": [ + "Lock" + ], + "author": "Simran", + "version": "4.0.96" + }, + { + "id": "D7D6AAFB-1292-4EA1-A067-728532693834", + "name": "message-lock-outline", + "codepoint": "F116D", + "aliases": [], + "tags": [ + "Lock" + ], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "CF8F9CE5-0B38-4412-A3DD-F9E333C23EF6", + "name": "message-minus", + "codepoint": "F116E", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "B5CAE2E8-8D8A-4E7C-AAD3-F5EFDE92A8F7", + "name": "message-minus-outline", + "codepoint": "F116F", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "1F9E05D2-75B6-4039-B0A8-9EF2B647882E", + "name": "message-off", + "codepoint": "F164D", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "2B210400-A3CE-4EE4-8A9B-A88ACDF47061", + "name": "message-off-outline", + "codepoint": "F164E", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "2AE3707D-5DE3-41E6-968B-A56D3D9ADD40", + "name": "message-outline", + "codepoint": "F0365", + "aliases": [ + "chat-bubble-outline" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "C0B4CC94-B6B5-462F-93C2-98F07093614C", + "name": "message-plus", + "codepoint": "F0653", + "aliases": [ + "message-add" + ], + "tags": [], + "author": "Simran", + "version": "1.6.50" + }, + { + "id": "47A1A8D9-33C6-4EF4-9F8B-C327A7F45F65", + "name": "message-plus-outline", + "codepoint": "F10BB", + "aliases": [], + "tags": [], + "author": "Mike Behnke", + "version": "4.2.95" + }, + { + "id": "602EE454-C61C-4608-919E-FCCF3B58DE65", + "name": "message-processing", + "codepoint": "F0366", + "aliases": [ + "sms", + "textsms" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "21EDB8E6-9829-4028-9A40-F03BF23C14DA", + "name": "message-processing-outline", + "codepoint": "F1170", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "088D1765-3A4B-4BCB-A17B-B07970B3DDAA", + "name": "message-question", + "codepoint": "F173A", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "32AA3ACF-FADE-4ECB-8A16-DECB4CB9ECB9", + "name": "message-question-outline", + "codepoint": "F173B", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "6657779A-7238-4686-B3D5-1244862D7B2C", + "name": "message-reply", + "codepoint": "F0367", + "aliases": [ + "mode-comment" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "9B0263DD-74DB-4AC6-BF1C-0C7C0170C845", + "name": "message-reply-outline", + "codepoint": "F173D", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "FF34C5A8-4433-4B47-A9E5-EB836CFFCEC9", + "name": "message-reply-text", + "codepoint": "F0368", + "aliases": [ + "comment", + "insert-comment" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "56D756E1-57CB-4EA5-9AC3-409D0046C643", + "name": "message-reply-text-outline", + "codepoint": "F173E", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "4B15BF16-CD96-4427-9EA4-5A8B09F3A2B6", + "name": "message-settings", + "codepoint": "F06F0", + "aliases": [], + "tags": [ + "Settings" + ], + "author": "Michael Richins", + "version": "1.8.36" + }, + { + "id": "28C31415-ECC5-4192-A04A-C3C1F810019B", + "name": "message-settings-outline", + "codepoint": "F1171", + "aliases": [], + "tags": [ + "Settings" + ], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "FF8D4F38-8A77-4FDD-8C6D-D17F6A44516D", + "name": "message-star", + "codepoint": "F069A", + "aliases": [], + "tags": [], + "author": "Teodor Sandu", + "version": "1.7.12" + }, + { + "id": "F2B4075E-3226-40CB-9165-2C66A4BB4BBD", + "name": "message-star-outline", + "codepoint": "F1250", + "aliases": [], + "tags": [], + "author": "Teodor Sandu", + "version": "4.6.95" + }, + { + "id": "D2AFF074-2CE4-442D-AF1A-64B168BC622A", + "name": "message-text", + "codepoint": "F0369", + "aliases": [ + "chat" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "BF83F7B1-BA68-4443-9FD1-FB0A9C8D9D60", + "name": "message-text-clock", + "codepoint": "F1173", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "461285B8-FAB1-46BA-95C5-611476333EE4", + "name": "message-text-clock-outline", + "codepoint": "F1174", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "9CD08DBB-70E0-41B6-8BAA-79B9D4FE11AA", + "name": "message-text-fast", + "codepoint": "F19CE", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "6.6.95" + }, + { + "id": "3EA07D0B-1C28-4140-9CF3-60E741D34A65", + "name": "message-text-fast-outline", + "codepoint": "F19CF", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "6.6.95" + }, + { + "id": "362401F1-947F-45FD-8047-F515CB2F7C44", + "name": "message-text-lock", + "codepoint": "F0FCD", + "aliases": [ + "message-text-secure" + ], + "tags": [ + "Lock" + ], + "author": "Simran", + "version": "4.0.96" + }, + { + "id": "223FE0D4-F0C4-426A-8784-72F28455AB67", + "name": "message-text-lock-outline", + "codepoint": "F1175", + "aliases": [], + "tags": [ + "Lock" + ], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "E8C7D2D2-5B78-40E9-A3E6-51B9C31A43F8", + "name": "message-text-outline", + "codepoint": "F036A", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "7AEB07C3-0EFC-4D74-BB5B-2EB1288DC27D", + "name": "message-video", + "codepoint": "F036B", + "aliases": [ + "voice-chat" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "78644A46-55EA-4208-B3DC-89C79B5F96A5", + "name": "meteor", + "codepoint": "F0629", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.6.50" + }, + { + "id": "13256CBF-E284-4229-AAB9-5612FBADD060", + "name": "metronome", + "codepoint": "F07DA", + "aliases": [ + "tempo", + "bpm", + "beats-per-minute" + ], + "tags": [ + "Music" + ], + "author": "Haley Halcyon", + "version": "2.0.46" + }, + { + "id": "43A2B10E-F7DF-4181-B607-EC2039AFFA0D", + "name": "metronome-tick", + "codepoint": "F07DB", + "aliases": [ + "tempo-tick", + "bpm-tick", + "beats-per-minute-tick" + ], + "tags": [ + "Music" + ], + "author": "Haley Halcyon", + "version": "2.0.46" + }, + { + "id": "6A3136A3-62AD-4DE6-A783-D9D69AAD8919", + "name": "micro-sd", + "codepoint": "F07DC", + "aliases": [], + "tags": [], + "author": "GreenTurtwig", + "version": "2.0.46" + }, + { + "id": "18C99959-2A0E-4095-BAEA-F5B266377648", + "name": "microphone", + "codepoint": "F036C", + "aliases": [ + "keyboard-voice" + ], + "tags": [ + "Music" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "FFAA9F2E-96F9-43A3-BC4E-F7562703E6A1", + "name": "microphone-minus", + "codepoint": "F08B3", + "aliases": [ + "microphone-remove" + ], + "tags": [], + "author": "Michael Richins", + "version": "2.2.43" + }, + { + "id": "90AD0141-2243-49F0-8B84-FF909244D237", + "name": "microphone-off", + "codepoint": "F036D", + "aliases": [ + "mic-off" + ], + "tags": [ + "Music" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "E152DB47-F7EE-42A5-A01B-DC5E54A525D8", + "name": "microphone-outline", + "codepoint": "F036E", + "aliases": [ + "mic-none" + ], + "tags": [ + "Music" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "61F84878-9DAD-45D9-8A79-65143EA32F37", + "name": "microphone-plus", + "codepoint": "F08B4", + "aliases": [ + "microphone-add" + ], + "tags": [], + "author": "Michael Richins", + "version": "2.2.43" + }, + { + "id": "C209FA9B-CE60-4CC6-853D-0180D05CDF93", + "name": "microphone-question", + "codepoint": "F1989", + "aliases": [ + "microphone-help" + ], + "tags": [ + "Audio", + "Music" + ], + "author": "Michael Irigoyen", + "version": "6.5.95" + }, + { + "id": "89B1E3B0-1970-4ACC-B2DC-B45DFC33DE4B", + "name": "microphone-question-outline", + "codepoint": "F198A", + "aliases": [ + "microphone-help-outline" + ], + "tags": [ + "Audio", + "Music" + ], + "author": "Michael Irigoyen", + "version": "6.5.95" + }, + { + "id": "E8F70177-01CF-4C20-9956-DCA7B331FED6", + "name": "microphone-settings", + "codepoint": "F036F", + "aliases": [ + "settings-voice" + ], + "tags": [ + "Settings" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "5824EE2F-01BA-42E7-A943-B0D1C569B2C5", + "name": "microphone-variant", + "codepoint": "F0370", + "aliases": [], + "tags": [ + "Music" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "B0811263-2D40-44D9-945D-13393A170311", + "name": "microphone-variant-off", + "codepoint": "F0371", + "aliases": [], + "tags": [ + "Music" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "CFCFD9FE-AFF3-4D4F-A7C6-A40E0886B064", + "name": "microscope", + "codepoint": "F0654", + "aliases": [], + "tags": [ + "Science" + ], + "author": "Simran", + "version": "1.6.50" + }, + { + "id": "4636AAFF-A0E5-494C-8630-31142B4A2F48", + "name": "microsoft", + "codepoint": "F0372", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "94560EAB-E027-4462-BBD8-C6921D90CC07", + "name": "microsoft-access", + "codepoint": "F138E", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "5.0.45" + }, + { + "id": "7701BECC-343D-4BE8-B33A-B88ABACA8F26", + "name": "microsoft-azure", + "codepoint": "F0805", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "2.1.19" + }, + { + "id": "67025D74-AB54-43B5-82EE-085CCDA019E6", + "name": "microsoft-azure-devops", + "codepoint": "F0FD5", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "4.2.95" + }, + { + "id": "CB038F2A-85DE-4F59-B694-D4805D66322B", + "name": "microsoft-bing", + "codepoint": "F00A4", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "9846C329-0B20-40A4-9362-D350C063F53C", + "name": "microsoft-dynamics-365", + "codepoint": "F0988", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "2.4.85" + }, + { + "id": "C2D33448-5C6E-41D9-89B4-65184FF5EE15", + "name": "microsoft-edge", + "codepoint": "F01E9", + "aliases": [ + "microsoft-edge" + ], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "ACD47746-F44B-496D-990B-58FC729F372E", + "name": "microsoft-excel", + "codepoint": "F138F", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "5.0.45" + }, + { + "id": "255BB365-7B2F-46C7-B85E-EFDAD527BB54", + "name": "microsoft-internet-explorer", + "codepoint": "F0300", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "7E2456A3-891B-43F4-B233-AA0D890815CF", + "name": "microsoft-office", + "codepoint": "F03C6", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "455893F6-D0C4-4257-ABE4-85B1D68F60FF", + "name": "microsoft-onedrive", + "codepoint": "F03CA", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "E95EC3DF-2A48-4167-9F22-F4E735D4F298", + "name": "microsoft-onenote", + "codepoint": "F0747", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.9.32" + }, + { + "id": "0AE81D55-4520-4975-B406-145C74ECF033", + "name": "microsoft-outlook", + "codepoint": "F0D22", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "3.3.92" + }, + { + "id": "6EA8C442-3C67-4AC3-89F9-C628942CA8E0", + "name": "microsoft-powerpoint", + "codepoint": "F1390", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "5.0.45" + }, + { + "id": "D4F99553-AAF4-406A-8C02-71850F75E07E", + "name": "microsoft-sharepoint", + "codepoint": "F1391", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "5.0.45" + }, + { + "id": "390FC04F-F2A9-44F5-9808-6370A647BAF0", + "name": "microsoft-teams", + "codepoint": "F02BB", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "E009DA08-136C-465C-8481-308E99BCA3BF", + "name": "microsoft-visual-studio", + "codepoint": "F0610", + "aliases": [ + "visualstudio" + ], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "6D1D5836-B731-41C4-A829-86E5741A0784", + "name": "microsoft-visual-studio-code", + "codepoint": "F0A1E", + "aliases": [ + "vs-code" + ], + "tags": [], + "author": "Contributors", + "version": "2.5.94" + }, + { + "id": "6E06B49E-5127-4D5A-9C8B-F58BA8943BC4", + "name": "microsoft-windows", + "codepoint": "F05B3", + "aliases": [ + "microsoft-windows" + ], + "tags": [ + "Brand \/ Logo", + "Gaming \/ RPG" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "AD21ACB2-11A5-4C30-907B-FFF1A5904738", + "name": "microsoft-windows-classic", + "codepoint": "F0A21", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "2.5.94" + }, + { + "id": "BBB336AA-A225-44EE-B8AA-14AB109C505D", + "name": "microsoft-word", + "codepoint": "F1392", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "5.0.45" + }, + { + "id": "B7B4ECD9-2895-4E36-88A9-5F3AC5D6C264", + "name": "microsoft-xbox", + "codepoint": "F05B9", + "aliases": [ + "xbox-live", + "microsoft" + ], + "tags": [ + "Social Media", + "Brand \/ Logo", + "Gaming \/ RPG" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "74BB58AC-EF8B-447C-A15D-C444F1F67D93", + "name": "microsoft-xbox-controller", + "codepoint": "F05BA", + "aliases": [ + "microsoft-xbox-gamepad" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "57F11EDC-2759-4D62-BDD2-C7C3F5199623", + "name": "microsoft-xbox-controller-battery-alert", + "codepoint": "F074B", + "aliases": [ + "xbox-controller-battery-warning", + "microsoft-xbox-gamepad-battery-alert" + ], + "tags": [ + "Battery", + "Gaming \/ RPG", + "Alert \/ Error" + ], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "738FB781-E590-444B-85B8-1773DDC814E9", + "name": "microsoft-xbox-controller-battery-charging", + "codepoint": "F0A22", + "aliases": [ + "microsoft-xbox-gamepad-battery-charging" + ], + "tags": [ + "Gaming \/ RPG", + "Battery" + ], + "author": "Contributors", + "version": "2.5.94" + }, + { + "id": "51BB7455-5893-4F47-92D1-B3FD408C2ADC", + "name": "microsoft-xbox-controller-battery-empty", + "codepoint": "F074C", + "aliases": [ + "microsoft-xbox-gamepad-battery-empty" + ], + "tags": [ + "Battery", + "Gaming \/ RPG" + ], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "CC73B4E7-6B14-459D-AED5-35E50655C05C", + "name": "microsoft-xbox-controller-battery-full", + "codepoint": "F074D", + "aliases": [ + "microsoft-xbox-gamepad-battery-full" + ], + "tags": [ + "Battery", + "Gaming \/ RPG" + ], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "B65873D1-4808-4C3C-8AD6-A242D61B1985", + "name": "microsoft-xbox-controller-battery-low", + "codepoint": "F074E", + "aliases": [ + "microsoft-xbox-gamepad-battery-low" + ], + "tags": [ + "Battery", + "Gaming \/ RPG" + ], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "2B434E26-4ECE-4654-BBDC-4FE13CCCEE3E", + "name": "microsoft-xbox-controller-battery-medium", + "codepoint": "F074F", + "aliases": [ + "microsoft-xbox-gamepad-battery-medium" + ], + "tags": [ + "Battery", + "Gaming \/ RPG" + ], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "9CC18C3C-57B6-470C-9F09-80B62ECFABD7", + "name": "microsoft-xbox-controller-battery-unknown", + "codepoint": "F0750", + "aliases": [ + "microsoft-xbox-gamepad-battery-unknown" + ], + "tags": [ + "Battery", + "Gaming \/ RPG" + ], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "03720A4C-EA6B-4D58-B7D8-5A8DA745B125", + "name": "microsoft-xbox-controller-menu", + "codepoint": "F0E6F", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "GreenTurtwig", + "version": "3.6.95" + }, + { + "id": "F73FF165-CE6C-4E27-B492-93F3B82C70EE", + "name": "microsoft-xbox-controller-off", + "codepoint": "F05BB", + "aliases": [ + "microsoft-xbox-gamepad-off" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "38E0BCE2-2A91-4D68-B921-9854E18FFB20", + "name": "microsoft-xbox-controller-view", + "codepoint": "F0E70", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "GreenTurtwig", + "version": "3.6.95" + }, + { + "id": "62F69C7A-4CBA-444A-8BFE-E5B7A891CF5D", + "name": "microwave", + "codepoint": "F0C99", + "aliases": [ + "microwave-oven" + ], + "tags": [ + "Home Automation", + "Food \/ Drink" + ], + "author": "GreenTurtwig", + "version": "3.2.89" + }, + { + "id": "8A96C224-F70E-4DBC-996C-57B8591A0D85", + "name": "microwave-off", + "codepoint": "F1423", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "EF5AA157-F8E2-47FB-9A9C-8ACC66A9C2FB", + "name": "middleware", + "codepoint": "F0F5D", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Michael Richins", + "version": "3.9.97" + }, + { + "id": "3F74E489-26F5-4BC9-8567-8935E8E8559A", + "name": "middleware-outline", + "codepoint": "F0F5E", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Michael Richins", + "version": "3.9.97" + }, + { + "id": "57B4C4BB-A8D9-409D-A3A4-E512A4E50CA2", + "name": "midi", + "codepoint": "F08F1", + "aliases": [], + "tags": [ + "Brand \/ Logo", + "Music" + ], + "author": "Contributors", + "version": "2.3.50" + }, + { + "id": "9AA75C8F-4091-4C92-81A9-DA58CC95E794", + "name": "midi-port", + "codepoint": "F08F2", + "aliases": [], + "tags": [ + "Music" + ], + "author": "GreenTurtwig", + "version": "2.3.50" + }, + { + "id": "F1D9E59B-F221-46E3-91E9-1D98C478CBF3", + "name": "mine", + "codepoint": "F0DDA", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "3.5.94" + }, + { + "id": "84402452-AA4A-43D6-A26C-A0946B48310C", + "name": "minecraft", + "codepoint": "F0373", + "aliases": [ + "microsoft-minecraft" + ], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "A2E311D2-225E-4AD7-948D-D27AD0362D9F", + "name": "mini-sd", + "codepoint": "F0A05", + "aliases": [], + "tags": [], + "author": "GreenTurtwig", + "version": "2.5.94" + }, + { + "id": "1BFCC4B4-5BA5-4E64-889D-D64B61EA8D81", + "name": "minidisc", + "codepoint": "F0A06", + "aliases": [], + "tags": [], + "author": "GreenTurtwig", + "version": "2.5.94" + }, + { + "id": "2CEA6B7B-E7C9-4D52-9D9D-286E50001B70", + "name": "minus", + "codepoint": "F0374", + "aliases": [ + "remove", + "horizontal-line" + ], + "tags": [ + "Math" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "6BFAE994-AF2D-4B04-965D-9734631D5F0D", + "name": "minus-box", + "codepoint": "F0375", + "aliases": [ + "indeterminate-check-box" + ], + "tags": [ + "Math" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "8B150753-A2AC-4750-B6EC-686D213805DE", + "name": "minus-box-multiple", + "codepoint": "F1141", + "aliases": [ + "library-minus" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "FCAD03B0-9332-41AF-9992-AF53DDDF6BBA", + "name": "minus-box-multiple-outline", + "codepoint": "F1142", + "aliases": [ + "library-minus-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "D37AECEA-5BC3-4C57-8886-BC6C1A86987D", + "name": "minus-box-outline", + "codepoint": "F06F2", + "aliases": [ + "checkbox-indeterminate-outline" + ], + "tags": [ + "Math" + ], + "author": "Google", + "version": "1.8.36" + }, + { + "id": "DDEB98E7-E016-44CA-8DE7-A31969C2CC04", + "name": "minus-circle", + "codepoint": "F0376", + "aliases": [ + "do-not-disturb-on", + "remove-circle", + "do-not-enter", + "pill-tablet", + "medicine", + "pharmaceutical" + ], + "tags": [ + "Transportation + Road", + "Medical \/ Hospital" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "C7561067-F057-4E26-B8F1-791BD24E0A2C", + "name": "minus-circle-multiple", + "codepoint": "F035A", + "aliases": [ + "coins-minus" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "1.5.54" + }, + { + "id": "313B60B3-A740-4F5B-A63E-A5772C20AC0D", + "name": "minus-circle-multiple-outline", + "codepoint": "F0AD3", + "aliases": [ + "coins-minus-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "2.7.94" + }, + { + "id": "6A57F7D9-D5F6-42B2-A5E2-D160F7E0DB4B", + "name": "minus-circle-off", + "codepoint": "F1459", + "aliases": [ + "do-not-disturb-off", + "remove-circle-off", + "do-not-enter-off" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "2A82D040-8856-437D-B478-DF448C7BE6A6", + "name": "minus-circle-off-outline", + "codepoint": "F145A", + "aliases": [ + "do-not-disturb-off-outline", + "remove-circle-off-outline", + "do-not-enter-off-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "E1568BA6-EA0E-478F-933F-102F76996D6C", + "name": "minus-circle-outline", + "codepoint": "F0377", + "aliases": [ + "remove-circle-outline", + "do-not-enter-outline", + "do-not-disturb-outline", + "pill-tablet-outline", + "medicine-outline", + "pharmaceutical" + ], + "tags": [ + "Transportation + Road", + "Medical \/ Hospital" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "F48994C7-4A76-43B8-B851-F7389F8B2B59", + "name": "minus-network", + "codepoint": "F0378", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "27A3D3DC-42D9-43CF-B783-8B779BE9AEE6", + "name": "minus-network-outline", + "codepoint": "F0C9A", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "7761450F-6D9D-452D-B604-1853124C09E2", + "name": "minus-thick", + "codepoint": "F1639", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "AB90BAF0-E671-4418-9CBB-74C3F03A94DB", + "name": "mirror", + "codepoint": "F11FD", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Austin Andrews", + "version": "4.6.95" + }, + { + "id": "91FE9FDB-B4E7-41CC-ABA2-01FF868F612D", + "name": "mirror-rectangle", + "codepoint": "F179F", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "5E742652-9430-4B8E-9C4C-19F326A74523", + "name": "mirror-variant", + "codepoint": "F17A0", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "BF0B21D2-7266-4639-B2C4-24199863849D", + "name": "mixed-martial-arts", + "codepoint": "F0D8F", + "aliases": [ + "mma", + "glove" + ], + "tags": [ + "Sport" + ], + "author": "Google", + "version": "3.4.93" + }, + { + "id": "5E441030-6DAA-42F9-AF03-A4EB86AF0A51", + "name": "mixed-reality", + "codepoint": "F087F", + "aliases": [], + "tags": [], + "author": "GreenTurtwig", + "version": "2.1.99" + }, + { + "id": "9DD7B3EE-91B8-4D42-A781-2B12B0343C0B", + "name": "molecule", + "codepoint": "F0BAC", + "aliases": [], + "tags": [ + "Science" + ], + "author": "Austin Andrews", + "version": "3.0.39" + }, + { + "id": "F3FDFD25-C4F6-4ECF-8F8B-C460E4C6BD7C", + "name": "molecule-co", + "codepoint": "F12FE", + "aliases": [ + "carbon-monoxide", + "gas-co" + ], + "tags": [ + "Home Automation", + "Science" + ], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "6F7A0011-054A-4805-A970-A48BEAA9454B", + "name": "molecule-co2", + "codepoint": "F07E4", + "aliases": [ + "periodic-table-carbon-dioxide", + "gas-co2" + ], + "tags": [ + "Science", + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "2.0.46" + }, + { + "id": "35091AEB-2AF7-4F92-A249-2955F01404A3", + "name": "monitor", + "codepoint": "F0379", + "aliases": [ + "desktop-windows" + ], + "tags": [ + "Device \/ Tech" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "8C772F38-CA90-4CAD-BC26-DE68A84FD6F4", + "name": "monitor-arrow-down", + "codepoint": "F19D0", + "aliases": [ + "monitor-download" + ], + "tags": [ + "Device \/ Tech" + ], + "author": "Michael Irigoyen", + "version": "6.6.95" + }, + { + "id": "D3299EA1-1120-4457-86B0-7162B329B826", + "name": "monitor-arrow-down-variant", + "codepoint": "F19D1", + "aliases": [ + "monitor-download" + ], + "tags": [ + "Device \/ Tech" + ], + "author": "Michael Irigoyen", + "version": "6.6.95" + }, + { + "id": "B2A9CF60-30E4-46DC-9116-ED206912B156", + "name": "monitor-cellphone", + "codepoint": "F0989", + "aliases": [ + "monitor-mobile-phone", + "monitor-smartphone" + ], + "tags": [ + "Cellphone \/ Phone", + "Device \/ Tech" + ], + "author": "Google", + "version": "2.4.85" + }, + { + "id": "6665F86B-B97E-4AB8-8476-06B045706183", + "name": "monitor-cellphone-star", + "codepoint": "F098A", + "aliases": [ + "important-devices", + "monitor-mobile-phone-star", + "monitor-smartphone-star", + "monitor-cellphone-favorite" + ], + "tags": [ + "Cellphone \/ Phone", + "Device \/ Tech" + ], + "author": "Google", + "version": "2.4.85" + }, + { + "id": "B4B96C77-6C5D-40A5-83E4-548E48CBECED", + "name": "monitor-dashboard", + "codepoint": "F0A07", + "aliases": [], + "tags": [ + "Device \/ Tech" + ], + "author": "Austin Andrews", + "version": "2.5.94" + }, + { + "id": "E04B6974-751D-4A55-9309-02336DDB5070", + "name": "monitor-edit", + "codepoint": "F12C6", + "aliases": [], + "tags": [ + "Edit \/ Modify" + ], + "author": "Michael Richins", + "version": "4.8.95" + }, + { + "id": "598E13C9-CC60-4FAF-A13A-024B1B4CF1EE", + "name": "monitor-eye", + "codepoint": "F13B4", + "aliases": [], + "tags": [], + "author": "MaksUr", + "version": "5.0.45" + }, + { + "id": "59544B54-B690-47F4-AE30-4A9D9FE08FD1", + "name": "monitor-lock", + "codepoint": "F0DDB", + "aliases": [], + "tags": [ + "Device \/ Tech", + "Lock" + ], + "author": "Austin Andrews", + "version": "3.5.94" + }, + { + "id": "7768BF7B-0A52-4492-88BD-5A482E4D61C3", + "name": "monitor-multiple", + "codepoint": "F037A", + "aliases": [ + "monitors" + ], + "tags": [ + "Device \/ Tech" + ], + "author": "Chris Litherland", + "version": "1.5.54" + }, + { + "id": "73F67174-7800-44CB-9850-61A01F9DAD34", + "name": "monitor-off", + "codepoint": "F0D90", + "aliases": [], + "tags": [ + "Device \/ Tech" + ], + "author": "Google", + "version": "3.4.93" + }, + { + "id": "9211237F-8920-49C2-90A6-63D97045F5EB", + "name": "monitor-screenshot", + "codepoint": "F0E51", + "aliases": [], + "tags": [ + "Device \/ Tech" + ], + "author": "Google", + "version": "3.6.95" + }, + { + "id": "905C2321-6A99-46C7-8EE7-D7193A95E5E7", + "name": "monitor-share", + "codepoint": "F1483", + "aliases": [], + "tags": [], + "author": "Google", + "version": "5.3.45" + }, + { + "id": "E02B1C8D-DA14-4AF2-8EB3-397AD9DAF1AB", + "name": "monitor-shimmer", + "codepoint": "F1104", + "aliases": [ + "monitor-clean" + ], + "tags": [ + "Device \/ Tech" + ], + "author": "kevin-hens", + "version": "4.3.95" + }, + { + "id": "CE677999-FD3D-4120-A755-2EF579A82528", + "name": "monitor-small", + "codepoint": "F1876", + "aliases": [ + "monitor-crt" + ], + "tags": [ + "Device \/ Tech" + ], + "author": "Michael Irigoyen", + "version": "6.2.95" + }, + { + "id": "0D49AB2B-17E4-43B8-B72E-05C4A11500F6", + "name": "monitor-speaker", + "codepoint": "F0F5F", + "aliases": [], + "tags": [ + "Device \/ Tech" + ], + "author": "Hans B\u00f6hm", + "version": "3.9.97" + }, + { + "id": "56879DCE-4616-45D0-A1C2-B9262776840B", + "name": "monitor-speaker-off", + "codepoint": "F0F60", + "aliases": [], + "tags": [ + "Device \/ Tech" + ], + "author": "Hans B\u00f6hm", + "version": "3.9.97" + }, + { + "id": "6E372D46-ECFB-4275-B058-036C89A3413B", + "name": "monitor-star", + "codepoint": "F0DDC", + "aliases": [ + "monitor-favorite" + ], + "tags": [ + "Device \/ Tech" + ], + "author": "Austin Andrews", + "version": "3.5.94" + }, + { + "id": "F9A81054-5651-47DE-9507-E0743AE78E77", + "name": "moon-first-quarter", + "codepoint": "F0F61", + "aliases": [], + "tags": [ + "Weather" + ], + "author": "Michael Irigoyen", + "version": "3.9.97" + }, + { + "id": "536FA8E5-13DF-49A6-9C43-9874847AA01A", + "name": "moon-full", + "codepoint": "F0F62", + "aliases": [], + "tags": [ + "Weather" + ], + "author": "Michael Irigoyen", + "version": "3.9.97" + }, + { + "id": "690C3986-7EEB-4DD2-87EE-BEB93A917B14", + "name": "moon-last-quarter", + "codepoint": "F0F63", + "aliases": [], + "tags": [ + "Weather" + ], + "author": "Michael Irigoyen", + "version": "3.9.97" + }, + { + "id": "1F3CFDCC-7391-4AA6-994C-DCC6F3D28A46", + "name": "moon-new", + "codepoint": "F0F64", + "aliases": [], + "tags": [ + "Weather" + ], + "author": "Michael Irigoyen", + "version": "3.9.97" + }, + { + "id": "B324215D-A609-4B93-A859-1A0A24391C01", + "name": "moon-waning-crescent", + "codepoint": "F0F65", + "aliases": [], + "tags": [ + "Weather" + ], + "author": "Michael Irigoyen", + "version": "3.9.97" + }, + { + "id": "B03A16BE-0679-4635-B2F7-6553C3761211", + "name": "moon-waning-gibbous", + "codepoint": "F0F66", + "aliases": [], + "tags": [ + "Weather" + ], + "author": "Michael Irigoyen", + "version": "3.9.97" + }, + { + "id": "FAE0DF65-BA66-4F45-B246-35EFD1DF6FF2", + "name": "moon-waxing-crescent", + "codepoint": "F0F67", + "aliases": [], + "tags": [ + "Weather" + ], + "author": "Michael Irigoyen", + "version": "3.9.97" + }, + { + "id": "6DF419CE-770C-4662-8681-5D8ADE9C789E", + "name": "moon-waxing-gibbous", + "codepoint": "F0F68", + "aliases": [], + "tags": [ + "Weather" + ], + "author": "Michael Irigoyen", + "version": "3.9.97" + }, + { + "id": "DC294862-E625-444E-83A4-7D5F2255EE0C", + "name": "moped", + "codepoint": "F1086", + "aliases": [ + "scooter", + "vespa", + "delivery-dining" + ], + "tags": [ + "Transportation + Road", + "Transportation + Other" + ], + "author": "Google", + "version": "4.2.95" + }, + { + "id": "5DA43EA9-3DE7-49D8-8884-BB4D8ED31305", + "name": "moped-electric", + "codepoint": "F15B7", + "aliases": [ + "scooter-electric", + "vespa-electric", + "delivery-dining-electric" + ], + "tags": [ + "Transportation + Road" + ], + "author": "Google", + "version": "5.6.55" + }, + { + "id": "FF5A5D35-99C8-475C-B672-362AF0FA9FC6", + "name": "moped-electric-outline", + "codepoint": "F15B8", + "aliases": [ + "scooter-electric-outline", + "vespa-electric-outline", + "delivery-dining-electric-outline" + ], + "tags": [ + "Transportation + Road" + ], + "author": "Google", + "version": "5.6.55" + }, + { + "id": "2C84B4E2-F872-423E-B9E2-918DD013E131", + "name": "moped-outline", + "codepoint": "F15B9", + "aliases": [ + "scooter-outline", + "vespa-outline", + "delivery-dining-outline" + ], + "tags": [ + "Transportation + Road" + ], + "author": "Google", + "version": "5.6.55" + }, + { + "id": "6284690E-A12C-4209-A779-18284E241DE3", + "name": "more", + "codepoint": "F037B", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "C810823C-6678-43F7-8DBB-5D32F503BC59", + "name": "mortar-pestle", + "codepoint": "F1748", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "71BD315A-B0C1-4B8B-93CB-2A952C3A7C16", + "name": "mortar-pestle-plus", + "codepoint": "F03F1", + "aliases": [ + "chemist", + "local-pharmacy", + "mortar-pestle", + "pharmaceutical" + ], + "tags": [ + "Medical \/ Hospital" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "60E1CDBF-4EB9-4240-A7F8-B0476CC62CBC", + "name": "mosque", + "codepoint": "F1827", + "aliases": [ + "islam", + "muslim" + ], + "tags": [ + "Places", + "Religion" + ], + "author": "Google", + "version": "6.1.95" + }, + { + "id": "12E07384-2645-4F67-9A4F-4DA26FA1F75C", + "name": "mother-heart", + "codepoint": "F1314", + "aliases": [], + "tags": [ + "People \/ Family" + ], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "ACE8B129-F064-47BF-9FD5-AB472736ED43", + "name": "mother-nurse", + "codepoint": "F0D21", + "aliases": [ + "breast-feed" + ], + "tags": [ + "Medical \/ Hospital", + "People \/ Family" + ], + "author": "Michael Irigoyen", + "version": "3.3.92" + }, + { + "id": "D5136ED4-FC45-44D8-9DE4-C266844D5131", + "name": "motion", + "codepoint": "F15B2", + "aliases": [], + "tags": [], + "author": "Google", + "version": "5.5.55" + }, + { + "id": "0D1E834E-0B33-49ED-B02B-1EA0E966ADE1", + "name": "motion-outline", + "codepoint": "F15B3", + "aliases": [], + "tags": [], + "author": "Google", + "version": "5.5.55" + }, + { + "id": "B0DBB2D0-8C87-4DD3-AB7A-4BF35A9BFC6C", + "name": "motion-pause", + "codepoint": "F1590", + "aliases": [], + "tags": [ + "Video \/ Movie" + ], + "author": "Google", + "version": "5.5.55" + }, + { + "id": "DE3F5084-9C1D-459E-B3EC-514C040A9C22", + "name": "motion-pause-outline", + "codepoint": "F1592", + "aliases": [], + "tags": [ + "Video \/ Movie" + ], + "author": "Google", + "version": "5.5.55" + }, + { + "id": "04CF9E56-DAFA-474B-8405-2F554F66AEEC", + "name": "motion-play", + "codepoint": "F158F", + "aliases": [], + "tags": [ + "Video \/ Movie" + ], + "author": "Google", + "version": "5.5.55" + }, + { + "id": "520E825E-1F91-4EFA-B16F-488E61C02091", + "name": "motion-play-outline", + "codepoint": "F1591", + "aliases": [], + "tags": [ + "Video \/ Movie" + ], + "author": "Google", + "version": "5.5.55" + }, + { + "id": "2607909D-AA27-448A-B0E5-E5898790414A", + "name": "motion-sensor", + "codepoint": "F0D91", + "aliases": [ + "motion-detector" + ], + "tags": [ + "Home Automation" + ], + "author": "Simran", + "version": "3.4.93" + }, + { + "id": "94EEC5E7-5BF7-456E-8A9C-970E3CD46F55", + "name": "motion-sensor-off", + "codepoint": "F1435", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "D6AADAF8-D44E-44C0-8647-E578B277441D", + "name": "motorbike", + "codepoint": "F037C", + "aliases": [ + "motorcycle" + ], + "tags": [ + "Transportation + Road", + "Sport" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "91B25A35-38AC-497B-A0D8-82053E09E43A", + "name": "motorbike-electric", + "codepoint": "F15BA", + "aliases": [ + "motorcycle-electric" + ], + "tags": [ + "Transportation + Road" + ], + "author": "Michael Irigoyen", + "version": "5.6.55" + }, + { + "id": "965CDBD7-9E52-4169-B363-E0428C75C19D", + "name": "mouse", + "codepoint": "F037D", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "82AF407C-1290-4636-9299-E4FBA02EC25F", + "name": "mouse-bluetooth", + "codepoint": "F098B", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "2.4.85" + }, + { + "id": "63EB8966-D3A4-40C1-BC5C-BD4B34069D17", + "name": "mouse-move-down", + "codepoint": "F1550", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.5.55" + }, + { + "id": "63B2417B-4DCD-4DE3-A899-10851795B46F", + "name": "mouse-move-up", + "codepoint": "F1551", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.5.55" + }, + { + "id": "FD9503DC-1ADF-4E78-B0E9-DC3831C6B849", + "name": "mouse-move-vertical", + "codepoint": "F1552", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.5.55" + }, + { + "id": "2FB92E91-9B25-46BF-85D2-BC0A2DB877B1", + "name": "mouse-off", + "codepoint": "F037E", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "2E7ADC17-384C-4763-9D52-31AFF16BC864", + "name": "mouse-variant", + "codepoint": "F037F", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "7542DE09-B799-4ED5-8ADB-AE809808FAE1", + "name": "mouse-variant-off", + "codepoint": "F0380", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "4E3B74C0-3E85-4A50-B5FF-3D6AED1CF016", + "name": "move-resize", + "codepoint": "F0655", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "1.6.50" + }, + { + "id": "7A5B3547-16C4-4000-9082-E13A9139C737", + "name": "move-resize-variant", + "codepoint": "F0656", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "1.6.50" + }, + { + "id": "122C53AA-C8BC-41B3-89B2-B9A9F8BB56DC", + "name": "movie", + "codepoint": "F0381", + "aliases": [ + "slate", + "clapperboard", + "film", + "movie-creation" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "8B5A9F9F-D0F3-4B9A-844F-D6EE34154837", + "name": "movie-check", + "codepoint": "F16F3", + "aliases": [ + "slate-check", + "clapperboard-check", + "film-check" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "74A2D617-040C-4313-9D9B-CDB2FFDCC0D7", + "name": "movie-check-outline", + "codepoint": "F16F4", + "aliases": [ + "slate-check-outline", + "clapperboard-check-outline", + "film-check-outline" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "B06E7709-247C-4F57-BFA6-345C1ABAE8C3", + "name": "movie-cog", + "codepoint": "F16F5", + "aliases": [ + "slate-cog", + "clapperboard-cog", + "film-cog" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "388C5417-3BC7-491F-B708-AD81DCB237C8", + "name": "movie-cog-outline", + "codepoint": "F16F6", + "aliases": [ + "slate-cog-outline", + "clapperboard-cog-outline", + "film-cog-outline" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "EBABD564-B269-4D31-995B-062C7EBEFC15", + "name": "movie-edit", + "codepoint": "F1122", + "aliases": [ + "slate-edit", + "clapperboard-edit", + "film-edit" + ], + "tags": [ + "Video \/ Movie", + "Edit \/ Modify" + ], + "author": "Christopher Schreiner", + "version": "4.3.95" + }, + { + "id": "16912257-3D89-4630-9CC5-1FB0EB4A112C", + "name": "movie-edit-outline", + "codepoint": "F1123", + "aliases": [ + "slate-edit-outline", + "clapperboard-edit-outline", + "film-edit-outline" + ], + "tags": [ + "Video \/ Movie", + "Edit \/ Modify" + ], + "author": "Christopher Schreiner", + "version": "4.3.95" + }, + { + "id": "89C25EF5-4F0B-43A3-9B70-8B87E71FAB8A", + "name": "movie-filter", + "codepoint": "F1124", + "aliases": [], + "tags": [ + "Video \/ Movie" + ], + "author": "Google", + "version": "4.3.95" + }, + { + "id": "90E11F43-169D-46A2-868F-3EE7B8238371", + "name": "movie-filter-outline", + "codepoint": "F1125", + "aliases": [], + "tags": [ + "Video \/ Movie" + ], + "author": "Google", + "version": "4.3.95" + }, + { + "id": "8437938B-8D4E-4CE9-BE88-D5BBBC39140A", + "name": "movie-minus", + "codepoint": "F16F7", + "aliases": [ + "slate-minus", + "clapperboard-minus", + "film-minus" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "44B3B4FB-C569-4D4D-A463-C2F6B87A584C", + "name": "movie-minus-outline", + "codepoint": "F16F8", + "aliases": [ + "slate-minus-outline", + "clapperboard-minus-outline", + "film-minus-outline" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "2260571C-D9DD-4720-AFB7-C54A32585767", + "name": "movie-off", + "codepoint": "F16F9", + "aliases": [ + "slate-off", + "clapperboard-off", + "film-off" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "6E94BD0C-39BF-4D74-99BB-738062232A19", + "name": "movie-off-outline", + "codepoint": "F16FA", + "aliases": [ + "slate-off-outline", + "clapperboard-off-outline", + "film-off-outline" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "F23718ED-A1EE-42D7-84B2-773E110AAB63", + "name": "movie-open", + "codepoint": "F0FCE", + "aliases": [ + "slate-open", + "clapperboard-open", + "film-open", + "movie-creation" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "GreenTurtwig", + "version": "4.0.96" + }, + { + "id": "C3078403-9C18-4F30-983B-E755B9CBA37B", + "name": "movie-open-check", + "codepoint": "F16FB", + "aliases": [ + "slate-open-check", + "clapperboard-open-check", + "film-open-check" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "3CA87DEB-5A40-4DAF-960B-2AA9A4385F1D", + "name": "movie-open-check-outline", + "codepoint": "F16FC", + "aliases": [ + "slate-open-check-outline", + "clapperboard-open-check-outline", + "film-open-check-outline" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "20ADB8D7-DA55-463B-A523-9FA0377A1C74", + "name": "movie-open-cog", + "codepoint": "F16FD", + "aliases": [ + "slate-open-cog", + "clapperboard-open-cog", + "film-open-cog" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "F4936EA7-C151-4D41-84CC-4E02BCA4E01B", + "name": "movie-open-cog-outline", + "codepoint": "F16FE", + "aliases": [ + "slate-open-cog-outline", + "clapperboard-open-cog-outline", + "film-open-cog-outline" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "BC0C6C6B-C6BE-4E96-BFAF-782866BCF8C2", + "name": "movie-open-edit", + "codepoint": "F16FF", + "aliases": [ + "slate-open-edit", + "clapperboard-open-edit", + "film-open-edit" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "83B13E8A-4202-47CF-B67E-34335B0E5B29", + "name": "movie-open-edit-outline", + "codepoint": "F1700", + "aliases": [ + "slate-open-edit-outline", + "clapperboard-open-edit-outline", + "film-open-edit-outline" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "6AF20375-5B60-41D4-B63C-7572F590741C", + "name": "movie-open-minus", + "codepoint": "F1701", + "aliases": [ + "slate-open-minus", + "clapperboard-open-minus", + "film-open-minus" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "61DDE079-6865-4609-B2F6-2770A3A039E1", + "name": "movie-open-minus-outline", + "codepoint": "F1702", + "aliases": [ + "slate-open-minus-outline", + "clapperboard-open-minus-outline", + "film-open-minus-outline" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "A58F23CF-24CA-42B3-B877-FA9DEA317A3B", + "name": "movie-open-off", + "codepoint": "F1703", + "aliases": [ + "slate-open-off", + "clapperboard-open-off", + "film-open-off" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "AF946982-D5F6-4E17-8B0A-B091A873F86E", + "name": "movie-open-off-outline", + "codepoint": "F1704", + "aliases": [ + "slate-open-off-outline", + "clapperboard-open-off-outline", + "film-open-off-outline" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "17E4DACC-FDBF-4206-9F03-428157B91803", + "name": "movie-open-outline", + "codepoint": "F0FCF", + "aliases": [ + "slate-open-outline", + "clapperboard-open-outline", + "film-open-outline", + "movie-creation" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "GreenTurtwig", + "version": "4.0.96" + }, + { + "id": "F3CB37FD-2C97-4CD1-83C0-18677B81DAC6", + "name": "movie-open-play", + "codepoint": "F1705", + "aliases": [ + "slate-open-play", + "clapperboard-open-play", + "film-open-play" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "C855F888-FB96-40F5-9346-6B7A993C960A", + "name": "movie-open-play-outline", + "codepoint": "F1706", + "aliases": [ + "slate-open-play-outline", + "clapperboard-open-play-outline", + "film-open-play-outline" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "C9068163-63A6-44B7-BE11-2FCE6B427CF6", + "name": "movie-open-plus", + "codepoint": "F1707", + "aliases": [ + "clapperboard-open-plus", + "slate-open-plus", + "flim-open-plus" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "A060D40D-A702-4EA0-9B66-95C31103C223", + "name": "movie-open-plus-outline", + "codepoint": "F1708", + "aliases": [ + "slate-open-plus-outline", + "clapperboard-open-plus-outline", + "film-open-plus-outline" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "1AA27DAA-CD6F-41C5-BB25-8860B368DC0B", + "name": "movie-open-remove", + "codepoint": "F1709", + "aliases": [ + "slate-open-remove", + "clapperboard-open-remove", + "film-open-remove" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "320C9DCC-5845-46F6-B3E6-412D22B8BF47", + "name": "movie-open-remove-outline", + "codepoint": "F170A", + "aliases": [ + "slate-open-remove-outline", + "clapperboard-open-remove-outline", + "film-open-remove-outline" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "FC6ECE54-744A-4A77-B032-897B24064048", + "name": "movie-open-settings", + "codepoint": "F170B", + "aliases": [ + "slate-open-settings", + "clapperboard-open-settings", + "film-open-settings" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "C481209F-DE3F-4D25-8C4F-0D21CB8D3385", + "name": "movie-open-settings-outline", + "codepoint": "F170C", + "aliases": [ + "slate-open-settings-outline", + "clapperboard-open-settings-outline", + "film-open-settings-outline" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "D370E43D-3692-4654-B67E-12AA40956EF3", + "name": "movie-open-star", + "codepoint": "F170D", + "aliases": [ + "slate-open-star", + "clapperboard-open-star", + "film-open-star", + "movie-open-favorite" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "85F303FB-9847-450E-BF4B-7A38C86386AF", + "name": "movie-open-star-outline", + "codepoint": "F170E", + "aliases": [ + "slate-open-star-outline", + "clapperboard-open-star-outline", + "film-open-star-outline", + "movie-open-favorite-outline" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "8198AA61-F267-4A56-B9D8-5D492B519545", + "name": "movie-outline", + "codepoint": "F0DDD", + "aliases": [ + "slate-outline", + "clapperboard-outline", + "film-outline" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Google", + "version": "3.5.94" + }, + { + "id": "44B019DA-A010-4B5F-AF03-61DBCC6206DD", + "name": "movie-play", + "codepoint": "F170F", + "aliases": [ + "slate-play", + "clapperboard-play", + "film-play" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "48071069-C2BD-4B35-97A1-0167DB7B1B13", + "name": "movie-play-outline", + "codepoint": "F1710", + "aliases": [ + "slate-play-outline", + "clapperboard-play-outline", + "film-play-outline" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "543E83B1-B4CD-4D26-9813-A7F23C44AC5F", + "name": "movie-plus", + "codepoint": "F1711", + "aliases": [ + "slate-plus", + "clapperboard-plus", + "film-plus" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "1171D3A1-94AD-4DF5-81E0-D7800C05A0AC", + "name": "movie-plus-outline", + "codepoint": "F1712", + "aliases": [ + "slate-plus-outline", + "clapperboard-plus-outline", + "film-plus-outline" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "A55FA4A8-DD49-4A4E-8DC0-ED7979F2469B", + "name": "movie-remove", + "codepoint": "F1713", + "aliases": [ + "slate-remove", + "clapperboard-remove", + "film-remove" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "6FC268E0-F315-4818-B25F-0576DA4B9A84", + "name": "movie-remove-outline", + "codepoint": "F1714", + "aliases": [ + "slate-remove-outline", + "clapperboard-remove-outline", + "film-remove-outline" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "21D0F9FB-6814-4CE7-B37D-FC97EBF1D0D2", + "name": "movie-roll", + "codepoint": "F07DE", + "aliases": [ + "film-reel" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "fraaalk", + "version": "2.0.46" + }, + { + "id": "83E13559-040A-4EB7-BBA5-A2455CCEBBB9", + "name": "movie-search", + "codepoint": "F11D2", + "aliases": [], + "tags": [], + "author": "frankgrinaert", + "version": "4.5.95" + }, + { + "id": "8BF9EEDF-1AE8-4382-8544-3F650525371B", + "name": "movie-search-outline", + "codepoint": "F11D3", + "aliases": [], + "tags": [], + "author": "frankgrinaert", + "version": "4.5.95" + }, + { + "id": "0A90A107-BB52-4DBA-BC4F-E285D87EB4DF", + "name": "movie-settings", + "codepoint": "F1715", + "aliases": [ + "slate-settings", + "clapperboard-settings", + "film-settings" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "D90C8E93-5B99-4604-A597-5DA45FC3CEB2", + "name": "movie-settings-outline", + "codepoint": "F1716", + "aliases": [ + "slate-settings-outline", + "clapperboard-settings-outline", + "film-settings-outline" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "07D0534A-0D01-428A-8915-0C3930BE8C41", + "name": "movie-star", + "codepoint": "F1717", + "aliases": [ + "slate-star", + "clapperboard-star", + "film-star", + "movie-favorite" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "31542EFD-68FE-435F-8B00-1BDFB218D9E2", + "name": "movie-star-outline", + "codepoint": "F1718", + "aliases": [ + "slate-star-outline", + "clapperboard-star-outline", + "film-star-outline", + "movie-favorite-outline" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "27842852-CDEB-4575-AAEB-D7F15F0928F8", + "name": "mower", + "codepoint": "F166F", + "aliases": [], + "tags": [ + "Hardware \/ Tools", + "Home Automation" + ], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "1AF71C6B-087D-493D-81B4-8BDD6A07B2ED", + "name": "mower-bag", + "codepoint": "F1670", + "aliases": [], + "tags": [ + "Hardware \/ Tools", + "Home Automation" + ], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "730FEADE-1281-422D-9E31-9DF7D06AD4E3", + "name": "muffin", + "codepoint": "F098C", + "aliases": [], + "tags": [ + "Food \/ Drink" + ], + "author": "Nick", + "version": "2.4.85" + }, + { + "id": "8D4D600F-56EB-488D-992A-24B393EE6D47", + "name": "multicast", + "codepoint": "F1893", + "aliases": [ + "multiplex", + "broadcast" + ], + "tags": [], + "author": "Simran", + "version": "6.2.95" + }, + { + "id": "489C9004-CF90-483E-83E3-CD40DD5B9ACF", + "name": "multiplication", + "codepoint": "F0382", + "aliases": [], + "tags": [ + "Math" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "38DF4F2F-85CF-4F71-B170-AAAAF25799E0", + "name": "multiplication-box", + "codepoint": "F0383", + "aliases": [], + "tags": [ + "Math" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "FCA4F099-5FCB-43DE-8166-2CE30508C1EC", + "name": "mushroom", + "codepoint": "F07DF", + "aliases": [ + "fungus" + ], + "tags": [ + "Nature", + "Food \/ Drink", + "Agriculture" + ], + "author": "Chris Thron", + "version": "2.0.46" + }, + { + "id": "F061399A-D4F9-49C6-B70A-B4D2603699AC", + "name": "mushroom-off", + "codepoint": "F13FA", + "aliases": [], + "tags": [ + "Food \/ Drink", + "Nature", + "Agriculture" + ], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "5421FAF8-CBB9-43C7-A8C1-EE90C949DD56", + "name": "mushroom-off-outline", + "codepoint": "F13FB", + "aliases": [], + "tags": [ + "Food \/ Drink", + "Nature", + "Agriculture" + ], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "D6C17EB7-0A54-4ECA-81AA-86311E311934", + "name": "mushroom-outline", + "codepoint": "F07E0", + "aliases": [ + "fungus-outline" + ], + "tags": [ + "Nature", + "Food \/ Drink", + "Agriculture" + ], + "author": "Chris Thron", + "version": "2.0.46" + }, + { + "id": "E7DA3CF2-C345-441D-BFC2-ABC4DB195A6A", + "name": "music", + "codepoint": "F075A", + "aliases": [], + "tags": [ + "Audio", + "Music" + ], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "0273309C-CE51-4243-8EDF-F86B0B73AAE4", + "name": "music-accidental-double-flat", + "codepoint": "F0F69", + "aliases": [], + "tags": [ + "Music" + ], + "author": "Michael Irigoyen", + "version": "3.9.97" + }, + { + "id": "89EC2121-104F-4814-849A-AF9AA744E239", + "name": "music-accidental-double-sharp", + "codepoint": "F0F6A", + "aliases": [], + "tags": [ + "Music" + ], + "author": "Michael Irigoyen", + "version": "3.9.97" + }, + { + "id": "1ED310B2-EE64-4011-B725-3D4FFB10E26A", + "name": "music-accidental-flat", + "codepoint": "F0F6B", + "aliases": [], + "tags": [ + "Music" + ], + "author": "Michael Irigoyen", + "version": "3.9.97" + }, + { + "id": "4AA4E035-3A6F-40FA-8355-A38F9294E399", + "name": "music-accidental-natural", + "codepoint": "F0F6C", + "aliases": [], + "tags": [ + "Music" + ], + "author": "Michael Irigoyen", + "version": "3.9.97" + }, + { + "id": "6FD5E083-A276-4433-8D67-FBC8D9163719", + "name": "music-accidental-sharp", + "codepoint": "F0F6D", + "aliases": [], + "tags": [ + "Music" + ], + "author": "Michael Irigoyen", + "version": "3.9.97" + }, + { + "id": "2EDBEBA6-8590-4049-BB28-8959378DC44C", + "name": "music-box", + "codepoint": "F0384", + "aliases": [], + "tags": [ + "Audio", + "Music" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "56F24AF4-9E5B-4E53-89ED-3472E08C9466", + "name": "music-box-multiple", + "codepoint": "F0333", + "aliases": [ + "library-music" + ], + "tags": [ + "Music" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "16F694B0-E5B4-4262-91AE-DB3D0C73EEC0", + "name": "music-box-multiple-outline", + "codepoint": "F0F04", + "aliases": [ + "library-music-outline" + ], + "tags": [ + "Music" + ], + "author": "Michael Irigoyen", + "version": "3.8.95" + }, + { + "id": "9E8ADF62-9136-40F3-BED9-54A2934B4B3B", + "name": "music-box-outline", + "codepoint": "F0385", + "aliases": [], + "tags": [ + "Audio", + "Music" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "33A79A85-7985-4E08-8AA8-D6242A9C2700", + "name": "music-circle", + "codepoint": "F0386", + "aliases": [ + "note-circle" + ], + "tags": [ + "Audio", + "Music" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "C8E3DFB3-2F22-489D-90F5-D8C47B66DB3C", + "name": "music-circle-outline", + "codepoint": "F0AD4", + "aliases": [ + "note-circle-outline" + ], + "tags": [ + "Music", + "Audio" + ], + "author": "Austin Andrews", + "version": "2.7.94" + }, + { + "id": "9AA4CF34-3341-41F7-AC35-E8556A91787B", + "name": "music-clef-alto", + "codepoint": "F0F6E", + "aliases": [ + "music-c-clef", + "music-clef-tenor", + "music-clef-soprano", + "music-clef-baritone" + ], + "tags": [ + "Music" + ], + "author": "Haley Halcyon", + "version": "3.9.97" + }, + { + "id": "279EAB4C-7D62-4C41-A67F-2928723476DA", + "name": "music-clef-bass", + "codepoint": "F0F6F", + "aliases": [ + "music-f-clef" + ], + "tags": [ + "Music" + ], + "author": "Haley Halcyon", + "version": "3.9.97" + }, + { + "id": "7ED69559-58ED-432E-800F-9B8DE4CD53A2", + "name": "music-clef-treble", + "codepoint": "F0F70", + "aliases": [ + "music-g-clef" + ], + "tags": [ + "Music" + ], + "author": "Haley Halcyon", + "version": "3.9.97" + }, + { + "id": "05F3F5DD-59CC-4FBD-9428-0D0CB125A8AE", + "name": "music-note", + "codepoint": "F0387", + "aliases": [], + "tags": [ + "Audio", + "Music" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "40A9BA37-B1BD-4869-A3F9-8F534258DB3F", + "name": "music-note-bluetooth", + "codepoint": "F05FE", + "aliases": [], + "tags": [ + "Audio" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "98CC5D8B-5D4B-4379-8FFF-1C7FEA82672C", + "name": "music-note-bluetooth-off", + "codepoint": "F05FF", + "aliases": [], + "tags": [ + "Audio" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "44EDC206-CF12-4DA5-8DA6-E72FDC35BBD2", + "name": "music-note-eighth", + "codepoint": "F0388", + "aliases": [], + "tags": [ + "Audio", + "Music" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "9E5589FE-17DF-4167-9DDE-D41D6503B433", + "name": "music-note-eighth-dotted", + "codepoint": "F0F71", + "aliases": [], + "tags": [ + "Music" + ], + "author": "Michael Irigoyen", + "version": "3.9.97" + }, + { + "id": "2F2FC9A9-FAC3-4736-B8EC-B7DF9548586C", + "name": "music-note-half", + "codepoint": "F0389", + "aliases": [], + "tags": [ + "Audio", + "Music" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "53666387-B7D7-4C48-96B9-3D6CAA6E2468", + "name": "music-note-half-dotted", + "codepoint": "F0F72", + "aliases": [], + "tags": [ + "Music" + ], + "author": "Michael Irigoyen", + "version": "3.9.97" + }, + { + "id": "08305F79-B7E4-4FC9-9B5B-8E76920C3DCC", + "name": "music-note-off", + "codepoint": "F038A", + "aliases": [], + "tags": [ + "Audio", + "Music" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "C47B2AE6-FB1F-4E54-A951-AD26609ECB80", + "name": "music-note-off-outline", + "codepoint": "F0F73", + "aliases": [], + "tags": [ + "Music" + ], + "author": "Michael Irigoyen", + "version": "3.9.97" + }, + { + "id": "5888AA23-7D87-46D3-83F3-1AB820E9F77D", + "name": "music-note-outline", + "codepoint": "F0F74", + "aliases": [], + "tags": [ + "Music" + ], + "author": "Michael Irigoyen", + "version": "3.9.97" + }, + { + "id": "ED5D1835-D69E-458A-9CCE-F1B81EB831D2", + "name": "music-note-plus", + "codepoint": "F0DDE", + "aliases": [ + "music-note-add" + ], + "tags": [ + "Audio", + "Music" + ], + "author": "GreenTurtwig", + "version": "3.5.94" + }, + { + "id": "D71DFC98-3401-4268-9956-3EFEEE336235", + "name": "music-note-quarter", + "codepoint": "F038B", + "aliases": [], + "tags": [ + "Audio", + "Music" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "56364DE5-01AE-4702-BC79-F85D07E485C7", + "name": "music-note-quarter-dotted", + "codepoint": "F0F75", + "aliases": [], + "tags": [ + "Music" + ], + "author": "Michael Irigoyen", + "version": "3.9.97" + }, + { + "id": "882DF0E2-C223-4B3F-A538-81EC05421BA9", + "name": "music-note-sixteenth", + "codepoint": "F038C", + "aliases": [], + "tags": [ + "Audio", + "Music" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "F98989F8-DE11-42A7-A814-5C988CBD7989", + "name": "music-note-sixteenth-dotted", + "codepoint": "F0F76", + "aliases": [], + "tags": [ + "Music" + ], + "author": "Michael Irigoyen", + "version": "3.9.97" + }, + { + "id": "13454604-C50C-4381-AC96-552848F0DF9E", + "name": "music-note-whole", + "codepoint": "F038D", + "aliases": [], + "tags": [ + "Audio", + "Music" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "6A2B3740-C02F-4097-9713-80C34636CA12", + "name": "music-note-whole-dotted", + "codepoint": "F0F77", + "aliases": [], + "tags": [ + "Music" + ], + "author": "Michael Irigoyen", + "version": "3.9.97" + }, + { + "id": "E9D8BB99-B31B-4940-9EEE-B69569060B0D", + "name": "music-off", + "codepoint": "F075B", + "aliases": [], + "tags": [ + "Audio", + "Music" + ], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "D77BE879-A1D5-48F5-9068-B74A2ED4017A", + "name": "music-rest-eighth", + "codepoint": "F0F78", + "aliases": [], + "tags": [ + "Music" + ], + "author": "Michael Irigoyen", + "version": "3.9.97" + }, + { + "id": "C9124F85-BB56-414C-BEAF-EE02E921B6D2", + "name": "music-rest-half", + "codepoint": "F0F79", + "aliases": [], + "tags": [ + "Music" + ], + "author": "Michael Irigoyen", + "version": "3.9.97" + }, + { + "id": "64309B5C-51CC-42D0-B2D1-F42454CC1E2E", + "name": "music-rest-quarter", + "codepoint": "F0F7A", + "aliases": [], + "tags": [ + "Music" + ], + "author": "Michael Irigoyen", + "version": "3.9.97" + }, + { + "id": "E7CCD9CF-3FC1-44F0-996B-841B293B1793", + "name": "music-rest-sixteenth", + "codepoint": "F0F7B", + "aliases": [], + "tags": [ + "Music" + ], + "author": "Michael Irigoyen", + "version": "3.9.97" + }, + { + "id": "E11E01A9-8231-456F-AF61-82A069BBDAAB", + "name": "music-rest-whole", + "codepoint": "F0F7C", + "aliases": [], + "tags": [ + "Music" + ], + "author": "Michael Irigoyen", + "version": "3.9.97" + }, + { + "id": "766E10EA-23CD-42BD-9DB8-633FBF8C584A", + "name": "mustache", + "codepoint": "F15DE", + "aliases": [], + "tags": [], + "author": "Google", + "version": "5.6.55" + }, + { + "id": "D1A8C00E-5FE4-4016-9C38-40CD9804D7C9", + "name": "nail", + "codepoint": "F0DDF", + "aliases": [], + "tags": [ + "Hardware \/ Tools" + ], + "author": "Michael Irigoyen", + "version": "3.5.94" + }, + { + "id": "001157C4-1AAA-41FF-B204-906ACDB427C3", + "name": "nas", + "codepoint": "F08F3", + "aliases": [ + "network-attached-storage" + ], + "tags": [], + "author": "Simran", + "version": "2.3.50" + }, + { + "id": "A69196BD-730F-4684-8604-8668FD60183A", + "name": "nativescript", + "codepoint": "F0880", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "2.1.99" + }, + { + "id": "C5FCAD4F-C7E6-4BDB-9F2F-A665CB68B7FD", + "name": "nature", + "codepoint": "F038E", + "aliases": [ + "plant" + ], + "tags": [ + "Nature" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "B0635A70-D2A9-41CE-82C6-3FB1D1D353B4", + "name": "nature-people", + "codepoint": "F038F", + "aliases": [ + "plant" + ], + "tags": [ + "Account \/ User" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "DAAF6988-6EE9-4595-A758-294C83C7304B", + "name": "navigation", + "codepoint": "F0390", + "aliases": [ + "arrow-compass" + ], + "tags": [ + "Navigation" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "8CEE19E5-13B9-4AFF-8880-B04D36B144BA", + "name": "navigation-outline", + "codepoint": "F1607", + "aliases": [], + "tags": [ + "Navigation" + ], + "author": "Google", + "version": "5.6.55" + }, + { + "id": "FAF89CE7-022F-4AD0-BCB6-0F4F22EE0B26", + "name": "navigation-variant", + "codepoint": "F18F0", + "aliases": [], + "tags": [ + "Navigation" + ], + "author": "Google", + "version": "6.3.95" + }, + { + "id": "23292DC7-A187-4818-8944-1144B38E183C", + "name": "navigation-variant-outline", + "codepoint": "F18F1", + "aliases": [], + "tags": [ + "Navigation" + ], + "author": "Google", + "version": "6.3.95" + }, + { + "id": "6766F53D-88E4-452A-A222-7F50DDFB757C", + "name": "near-me", + "codepoint": "F05CD", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "70C6DD45-DD16-4629-8BBA-B60FB5D60382", + "name": "necklace", + "codepoint": "F0F0B", + "aliases": [], + "tags": [ + "Clothing" + ], + "author": "Michael Richins", + "version": "3.8.95" + }, + { + "id": "2B76647F-92FE-4F8E-B193-7EC20DADD5D2", + "name": "needle", + "codepoint": "F0391", + "aliases": [ + "syringe", + "injection", + "medicine", + "shot", + "drug", + "immunization", + "pharmaceutical" + ], + "tags": [ + "Medical \/ Hospital" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "EF95D4D3-9095-412A-A109-BF170FA2A1D9", + "name": "needle-off", + "codepoint": "F19D2", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.6.95" + }, + { + "id": "7AEF7097-EC88-4D09-A65E-5244DDA99599", + "name": "netflix", + "codepoint": "F0746", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.9.32" + }, + { + "id": "089C6F75-2FF5-4B48-B4B4-651AEAD3D24F", + "name": "network", + "codepoint": "F06F3", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.8.36" + }, + { + "id": "B4F8AA0D-E5C6-4FC1-A91C-A7E47269FB31", + "name": "network-off", + "codepoint": "F0C9B", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "3.2.89" + }, + { + "id": "6CFA3244-3420-4234-BFC6-80DEA8F38CCC", + "name": "network-off-outline", + "codepoint": "F0C9C", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "3.2.89" + }, + { + "id": "D6F66231-B4F7-4E89-80D5-D9DDD2354D02", + "name": "network-outline", + "codepoint": "F0C9D", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "7AEB6E6A-4B4E-42C3-9AB2-1F47FE1BD29B", + "name": "network-strength-1", + "codepoint": "F08F4", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Simran", + "version": "2.3.50" + }, + { + "id": "9C2C41A2-7BA9-46C3-B017-941C7B2C2E60", + "name": "network-strength-1-alert", + "codepoint": "F08F5", + "aliases": [ + "network-strength-1-warning" + ], + "tags": [ + "Cellphone \/ Phone", + "Alert \/ Error" + ], + "author": "Simran", + "version": "2.3.50" + }, + { + "id": "DF3CEC8C-F6B7-467B-833C-92FE260C6A73", + "name": "network-strength-2", + "codepoint": "F08F6", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Simran", + "version": "2.3.50" + }, + { + "id": "DB8EEB5C-3705-4DE7-A770-D63ACE14F1BD", + "name": "network-strength-2-alert", + "codepoint": "F08F7", + "aliases": [ + "network-strength-2-warning" + ], + "tags": [ + "Cellphone \/ Phone", + "Alert \/ Error" + ], + "author": "Simran", + "version": "2.3.50" + }, + { + "id": "7FAA15D1-1E1D-41F5-98F0-1B640DFB0688", + "name": "network-strength-3", + "codepoint": "F08F8", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Simran", + "version": "2.3.50" + }, + { + "id": "99771A39-B621-45BA-96BE-7589E5A85B9E", + "name": "network-strength-3-alert", + "codepoint": "F08F9", + "aliases": [ + "network-strength-3-warning" + ], + "tags": [ + "Cellphone \/ Phone", + "Alert \/ Error" + ], + "author": "Simran", + "version": "2.3.50" + }, + { + "id": "87FF7D68-6F78-44AB-80C4-DC7FE976E3A3", + "name": "network-strength-4", + "codepoint": "F08FA", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Simran", + "version": "2.3.50" + }, + { + "id": "1173684B-E68C-4BE5-BD9C-53C01A619896", + "name": "network-strength-4-alert", + "codepoint": "F08FB", + "aliases": [ + "network-strength-4-warning" + ], + "tags": [ + "Cellphone \/ Phone", + "Alert \/ Error" + ], + "author": "Simran", + "version": "2.3.50" + }, + { + "id": "AB7248F1-C9F3-4EF3-ACD5-8B7EE11771C3", + "name": "network-strength-4-cog", + "codepoint": "F191A", + "aliases": [ + "network-strength-4-settings", + "data-settings" + ], + "tags": [ + "Settings" + ], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "E3FEE803-9C91-4BAE-9528-D016588E99AD", + "name": "network-strength-off", + "codepoint": "F08FC", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Simran", + "version": "2.3.50" + }, + { + "id": "E7A4CEE7-C6E2-4FD6-B0BF-B3DD131100CB", + "name": "network-strength-off-outline", + "codepoint": "F08FD", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Simran", + "version": "2.3.50" + }, + { + "id": "5A80D579-DF12-4B68-AAD8-AFE8039E6657", + "name": "network-strength-outline", + "codepoint": "F08FE", + "aliases": [ + "network-strength-0" + ], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Simran", + "version": "2.3.50" + }, + { + "id": "1ABEE375-A0DC-4262-9CCD-3B9C78B5FE7D", + "name": "new-box", + "codepoint": "F0394", + "aliases": [ + "fiber-new" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "EE440B14-2E25-4C8E-99A7-A3C98CBC9151", + "name": "newspaper", + "codepoint": "F0395", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "F329B5C0-F6CC-4402-B4BF-A8744C9D802E", + "name": "newspaper-check", + "codepoint": "F1943", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "4949C4CF-3395-466E-B459-9FEBA1BFD1AC", + "name": "newspaper-minus", + "codepoint": "F0F0C", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.8.95" + }, + { + "id": "7B4B8A85-6E8F-4C2B-938C-58DF98E8823B", + "name": "newspaper-plus", + "codepoint": "F0F0D", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.8.95" + }, + { + "id": "9E4ABD6C-A1C6-4209-B977-83A7A03667A8", + "name": "newspaper-remove", + "codepoint": "F1944", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "B7E3A571-DF01-4CBF-A3AE-CDEF835F2A21", + "name": "newspaper-variant", + "codepoint": "F1001", + "aliases": [], + "tags": [], + "author": "Google", + "version": "4.0.96" + }, + { + "id": "2672B224-C14E-41B7-B7F2-632CA02F9D3B", + "name": "newspaper-variant-multiple", + "codepoint": "F1002", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.0.96" + }, + { + "id": "687B9CDE-25C6-49DF-B28F-051B30FD11D3", + "name": "newspaper-variant-multiple-outline", + "codepoint": "F1003", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.0.96" + }, + { + "id": "1859420B-45AE-4AC1-AC8D-91AB0FF84BBA", + "name": "newspaper-variant-outline", + "codepoint": "F1004", + "aliases": [], + "tags": [], + "author": "Google", + "version": "4.0.96" + }, + { + "id": "961106B7-BD56-462C-936C-E2CDC83051B5", + "name": "nfc", + "codepoint": "F0396", + "aliases": [ + "near-field-communication" + ], + "tags": [], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "2AD73512-8D95-4CCB-8A7E-528E70F510B9", + "name": "nfc-search-variant", + "codepoint": "F0E53", + "aliases": [], + "tags": [], + "author": "Terren", + "version": "3.6.95" + }, + { + "id": "656C274C-CDC8-4FB6-AFFA-F704784BC997", + "name": "nfc-tap", + "codepoint": "F0397", + "aliases": [ + "near-field-communication-tap" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "4DFF5414-0EA3-4255-BC50-B40B0E3ADB15", + "name": "nfc-variant", + "codepoint": "F0398", + "aliases": [ + "near-field-communication-variant" + ], + "tags": [ + "Home Automation" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "2BD17DBC-5002-4378-B885-A1952D740C0B", + "name": "nfc-variant-off", + "codepoint": "F0E54", + "aliases": [ + "near-field-communication-off" + ], + "tags": [ + "Home Automation" + ], + "author": "TheChilliPL", + "version": "3.6.95" + }, + { + "id": "8E7C1B4B-C4E8-4072-9FB7-90E207038FFB", + "name": "ninja", + "codepoint": "F0774", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "1.9.32" + }, + { + "id": "A067CF52-3D9E-43DB-9542-44BE780B4117", + "name": "nintendo-game-boy", + "codepoint": "F1393", + "aliases": [], + "tags": [], + "author": "GreenTurtwig", + "version": "5.0.45" + }, + { + "id": "D57C5D23-1122-4DEB-BEC4-77D5A4D685FE", + "name": "nintendo-switch", + "codepoint": "F07E1", + "aliases": [ + "nintendo-switch-online" + ], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "2.0.46" + }, + { + "id": "AA2F2BCF-A9BD-4B3A-83A4-880E518F9428", + "name": "nintendo-wii", + "codepoint": "F05AB", + "aliases": [ + "nintendo-wii" + ], + "tags": [ + "Brand \/ Logo", + "Gaming \/ RPG" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "7D322B2B-5B7D-46B4-ACC3-A8900CFED5C9", + "name": "nintendo-wiiu", + "codepoint": "F072D", + "aliases": [ + "nintendo-wiiu" + ], + "tags": [ + "Brand \/ Logo", + "Gaming \/ RPG" + ], + "author": "Contributors", + "version": "1.8.36" + }, + { + "id": "525A43D5-4292-4C31-9E7D-7B65DB386BF9", + "name": "nix", + "codepoint": "F1105", + "aliases": [], + "tags": [ + "Developer \/ Languages", + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "4.3.95" + }, + { + "id": "46A696BA-7A78-40C1-A685-C9B9851286A6", + "name": "nodejs", + "codepoint": "F0399", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "1655675D-A197-44BD-83E9-76E2BAD31740", + "name": "noodles", + "codepoint": "F117E", + "aliases": [ + "food-ramen", + "asian-noodles" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Google", + "version": "4.4.95" + }, + { + "id": "A301F5C0-B760-4EA0-B803-DEF84D1B01CD", + "name": "not-equal", + "codepoint": "F098D", + "aliases": [], + "tags": [], + "author": "Nick", + "version": "2.4.85" + }, + { + "id": "AF2B1665-3D54-4017-BF7C-AE03A7C6AA52", + "name": "not-equal-variant", + "codepoint": "F098E", + "aliases": [], + "tags": [ + "Math" + ], + "author": "Nick", + "version": "2.4.85" + }, + { + "id": "5E1DF73F-AEF5-48F8-B766-419FBB05C5D0", + "name": "note", + "codepoint": "F039A", + "aliases": [ + "paper", + "sticky-note", + "post-it-note" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "1673B5E0-CB7A-4430-9D36-9B42F1189D4F", + "name": "note-alert", + "codepoint": "F177D", + "aliases": [ + "paper-alert", + "sticky-note-alert", + "post-it-note-alert" + ], + "tags": [ + "Alert \/ Error" + ], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "52710BFA-E892-49B7-9157-8C9A5E08BC21", + "name": "note-alert-outline", + "codepoint": "F177E", + "aliases": [ + "paper-alert-outline", + "post-it-note-alert-outline", + "sticky-note-alert-outline" + ], + "tags": [ + "Alert \/ Error" + ], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "A4B7F3B4-25B2-4786-A02F-FDA4F963E580", + "name": "note-check", + "codepoint": "F177F", + "aliases": [ + "paper-check", + "sticky-note-check", + "post-it-note-check" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "827B10E4-F154-4101-BB5C-492EA37B7D08", + "name": "note-check-outline", + "codepoint": "F1780", + "aliases": [ + "paper-check-outline", + "sticky-note-check-outline", + "post-it-note-check-outline" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "80075448-6EB3-4318-9887-6C199DB9A86E", + "name": "note-edit", + "codepoint": "F1781", + "aliases": [ + "paper-edit", + "sticky-note-edit", + "post-it-note-edit" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "DD82356F-AF1D-4A08-A740-880F31AE563D", + "name": "note-edit-outline", + "codepoint": "F1782", + "aliases": [ + "paper-edit-outline", + "sticky-note-edit-outline", + "post-it-note-edit-outline" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "5F9984C8-D7D1-42A8-9167-52B0B849CF22", + "name": "note-minus", + "codepoint": "F164F", + "aliases": [ + "paper-minus", + "sticky-note-minus", + "post-it-note-minus" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "244AEF5D-38E8-42E6-9C4F-8D4AFF831651", + "name": "note-minus-outline", + "codepoint": "F1650", + "aliases": [ + "paper-minus-outline", + "sticky-note-minus-outline", + "post-it-note-minus-outline" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "0A0E42BA-FE9D-44C6-BF6A-D29D6013F2E0", + "name": "note-multiple", + "codepoint": "F06B8", + "aliases": [ + "notes", + "papers", + "sticky-notes", + "post-it-notes" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.7.22" + }, + { + "id": "6294246C-A524-4121-B141-5262D89FFD4D", + "name": "note-multiple-outline", + "codepoint": "F06B9", + "aliases": [ + "notes-outline", + "papers-outline", + "sticky-notes-outline", + "post-it-notes-outline" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.7.22" + }, + { + "id": "9EE3CDDD-BFF7-4BCF-B07E-B120D646DE0D", + "name": "note-off", + "codepoint": "F1783", + "aliases": [ + "paper-off", + "sticky-note-off", + "post-it-note-off" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "321C9AFB-4A83-4B8F-A361-ADFA32318258", + "name": "note-off-outline", + "codepoint": "F1784", + "aliases": [ + "paper-off-outline", + "sticky-note-off-outline", + "post-it-note-off-outline" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "DD6D5075-A7F5-4183-9F99-93C295F18B0B", + "name": "note-outline", + "codepoint": "F039B", + "aliases": [ + "paper-outline", + "sticky-note-outline", + "post-it-note-outline" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "753F2E09-A32F-4790-9C07-7CD9AB69104D", + "name": "note-plus", + "codepoint": "F039C", + "aliases": [ + "note-add", + "paper-plus", + "paper-add", + "sticky-note-plus", + "sticky-note-add", + "post-it-note-plus", + "post-it-note-add" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "706F4C63-412B-44CD-81DE-612D4483D09C", + "name": "note-plus-outline", + "codepoint": "F039D", + "aliases": [ + "note-add-outline", + "paper-plus-outline", + "paper-add-outline", + "sticky-note-plus-outline", + "sticky-note-add-outline", + "post-it-note-plus-outline", + "post-it-note-add-outline" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "948C92D0-A16F-48FD-8A25-37898D6B9768", + "name": "note-remove", + "codepoint": "F1651", + "aliases": [ + "paper-remove", + "sticky-note-remove", + "post-it-note-remove" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "4F471FC1-C060-4081-9866-21830957AE90", + "name": "note-remove-outline", + "codepoint": "F1652", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "D914BB12-8F9A-4B71-86A0-DA016AA91B90", + "name": "note-search", + "codepoint": "F1653", + "aliases": [ + "paper-search", + "sticky-note-search", + "post-it-note-search" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "FAA55692-47B7-492B-897A-9225E7F0C766", + "name": "note-search-outline", + "codepoint": "F1654", + "aliases": [ + "paper-search-outline", + "sticky-note-search-outline", + "post-it-note-search-outline" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "2ADC4253-F51B-4BC2-B04C-0DDD139425CF", + "name": "note-text", + "codepoint": "F039E", + "aliases": [ + "paper-text", + "sticky-note-text", + "post-it-note-text" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "E39F6865-3E35-4BE8-8440-643FC83351F7", + "name": "note-text-outline", + "codepoint": "F11D7", + "aliases": [ + "paper-text-outline", + "sticky-note-text-outline", + "post-it-note-text-outline" + ], + "tags": [], + "author": "Michael Richins", + "version": "4.5.95" + }, + { + "id": "2D28230E-DAF3-4A49-ACB6-7D9C3E9E6495", + "name": "notebook", + "codepoint": "F082E", + "aliases": [ + "journal", + "planner", + "diary" + ], + "tags": [], + "author": "Gabriel Grant", + "version": "2.1.19" + }, + { + "id": "7DBD97BD-376C-45C2-85BA-74BE45C03F2E", + "name": "notebook-check", + "codepoint": "F14F5", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "5.4.55" + }, + { + "id": "0C11F6D4-B9DE-4927-AB54-B17695167B25", + "name": "notebook-check-outline", + "codepoint": "F14F6", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "5.4.55" + }, + { + "id": "EFBA00EA-395F-47DF-A0B9-8F42C1A697E1", + "name": "notebook-edit", + "codepoint": "F14E7", + "aliases": [], + "tags": [ + "Edit \/ Modify" + ], + "author": "Austin Andrews", + "version": "5.4.55" + }, + { + "id": "31A232F5-6134-4A8D-A9D1-41DC4404922D", + "name": "notebook-edit-outline", + "codepoint": "F14E9", + "aliases": [], + "tags": [ + "Edit \/ Modify" + ], + "author": "Austin Andrews", + "version": "5.4.55" + }, + { + "id": "60952B51-85EE-45B0-9834-7117F8DED9D7", + "name": "notebook-minus", + "codepoint": "F1610", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.6.55" + }, + { + "id": "0B3667B2-5DB3-4C7B-8E01-4601666EE765", + "name": "notebook-minus-outline", + "codepoint": "F1611", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.6.55" + }, + { + "id": "3F75C3D8-9360-4C31-AF58-1C01321620F0", + "name": "notebook-multiple", + "codepoint": "F0E55", + "aliases": [ + "journal-multiple", + "planner-multiple" + ], + "tags": [], + "author": "Gabriel Grant", + "version": "3.6.95" + }, + { + "id": "71D72BE3-C04C-40EF-87B7-A08E74045DC0", + "name": "notebook-outline", + "codepoint": "F0EBF", + "aliases": [ + "journal-outline", + "planner-outline" + ], + "tags": [], + "author": "Austin Andrews", + "version": "3.7.94" + }, + { + "id": "03D29CD4-AFB3-41E3-9B35-80F27ABFDD13", + "name": "notebook-plus", + "codepoint": "F1612", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.6.55" + }, + { + "id": "8652F3A3-ED31-48CA-B051-A4ADCFC722F6", + "name": "notebook-plus-outline", + "codepoint": "F1613", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.6.55" + }, + { + "id": "318A0AA0-55F5-4242-B377-BA972C7B3AD3", + "name": "notebook-remove", + "codepoint": "F1614", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.6.55" + }, + { + "id": "92BD7E81-2B29-48FB-B0B0-F38C94BE4B51", + "name": "notebook-remove-outline", + "codepoint": "F1615", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.6.55" + }, + { + "id": "E758A025-3B14-4A2F-A1D7-2D12C38B47E4", + "name": "notification-clear-all", + "codepoint": "F039F", + "aliases": [], + "tags": [ + "Notification" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "5E072845-A46E-4D62-A65D-28CD7DAD976B", + "name": "npm", + "codepoint": "F06F7", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.8.36" + }, + { + "id": "DB44684C-B1E7-4039-8BAA-C7C0BC4EB075", + "name": "nuke", + "codepoint": "F06A4", + "aliases": [ + "nuclear", + "atomic-bomb" + ], + "tags": [], + "author": "GreenTurtwig", + "version": "1.7.12" + }, + { + "id": "5004722B-DE0B-4F37-BCAD-36B46477E80F", + "name": "null", + "codepoint": "F07E2", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "2.0.46" + }, + { + "id": "1293DBCD-E538-4AD1-97C9-3F17BBD28457", + "name": "numeric", + "codepoint": "F03A0", + "aliases": [ + "numbers", + "1-2-3", + "one-two-three", + "123" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "3396CDF3-94D7-4F1B-B0FF-58FA3935468C", + "name": "numeric-0", + "codepoint": "F0B39", + "aliases": [ + "number-0", + "numeric-zero" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "C676CDFC-A808-4BCA-A670-49EE8478ED32", + "name": "numeric-0-box", + "codepoint": "F03A1", + "aliases": [ + "numeric-zero-box", + "number-0-box" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "D54CC81B-F785-4896-BA17-454BBBE96EC5", + "name": "numeric-0-box-multiple", + "codepoint": "F0F0E", + "aliases": [], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.8.95" + }, + { + "id": "B3652E81-9CA5-4B7C-B603-FE94CB2D1323", + "name": "numeric-0-box-multiple-outline", + "codepoint": "F03A2", + "aliases": [ + "numeric-zero-box-multiple-outline", + "numeric-0-boxes-outline", + "number-0-box-multiple-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "1EB53615-9A62-4377-A2D0-246C8F42CAF8", + "name": "numeric-0-box-outline", + "codepoint": "F03A3", + "aliases": [ + "numeric-zero-box-outline", + "number-0-box-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "802F5332-8865-46C9-890D-130209044E17", + "name": "numeric-0-circle", + "codepoint": "F0C9E", + "aliases": [ + "numeric-zero-circle", + "number-0-circle", + "number-zero-circle" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "BB859C27-AAAC-4ED4-A50B-45427C15CF05", + "name": "numeric-0-circle-outline", + "codepoint": "F0C9F", + "aliases": [ + "numeric-zero-circle-outline", + "number-0-circle-outline", + "number-zero-circle-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "DF225E4A-DED0-43C3-83B1-4867ABA9D45B", + "name": "numeric-1", + "codepoint": "F0B3A", + "aliases": [ + "number-1", + "numeric-one" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "0EF5316E-7978-4F6C-B38E-297837B3CFF5", + "name": "numeric-1-box", + "codepoint": "F03A4", + "aliases": [ + "looks-one", + "numeric-one-box", + "number-1-box" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "9CF3C6FF-4E68-478B-85B9-02ABA9A7980C", + "name": "numeric-1-box-multiple", + "codepoint": "F0F0F", + "aliases": [], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.8.95" + }, + { + "id": "55513DD6-D73E-438E-8834-D6761C47BA4B", + "name": "numeric-1-box-multiple-outline", + "codepoint": "F03A5", + "aliases": [ + "filter-1", + "numeric-one-box-multiple-outline", + "numeric-1-boxes-outline", + "number-1-box-multiple-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "50AEDC65-99B1-45CA-8078-CD6D8633995A", + "name": "numeric-1-box-outline", + "codepoint": "F03A6", + "aliases": [ + "numeric-one-box-outline", + "number-1-box-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "77E2B22B-C6FB-4759-B2BB-0528DAFA6210", + "name": "numeric-1-circle", + "codepoint": "F0CA0", + "aliases": [ + "numeric-one-circle", + "number-1-circle", + "number-one-circle" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "7621E523-93F4-47A9-A7A5-9BC2A01A4DD4", + "name": "numeric-1-circle-outline", + "codepoint": "F0CA1", + "aliases": [ + "numeric-one-circle-outline", + "number-1-circle-outline", + "number-one-circle-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "59F26CDB-B593-4675-941C-68F0E99F2CFF", + "name": "numeric-10", + "codepoint": "F0FE9", + "aliases": [], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "4.0.96" + }, + { + "id": "BD0566FC-D422-4ABD-8D6E-7E08EED3708D", + "name": "numeric-10-box", + "codepoint": "F0F7D", + "aliases": [], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Michael Irigoyen", + "version": "3.9.97" + }, + { + "id": "0ABCD0B7-C95E-4BD9-AFBB-C1CF415FE53C", + "name": "numeric-10-box-multiple", + "codepoint": "F0FEA", + "aliases": [], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "4.0.96" + }, + { + "id": "4C455257-74B0-4140-BA07-71582A9750FD", + "name": "numeric-10-box-multiple-outline", + "codepoint": "F0FEB", + "aliases": [], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "4.0.96" + }, + { + "id": "12AB352E-27A7-43D6-BF2E-EF35BC4CA288", + "name": "numeric-10-box-outline", + "codepoint": "F0F7E", + "aliases": [], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Michael Irigoyen", + "version": "3.9.97" + }, + { + "id": "487FE19B-CDA9-4895-B904-606B73BB66E7", + "name": "numeric-10-circle", + "codepoint": "F0FEC", + "aliases": [], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "4.0.96" + }, + { + "id": "FAABED75-FE76-4109-824D-F16C54E43FA2", + "name": "numeric-10-circle-outline", + "codepoint": "F0FED", + "aliases": [], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "4.0.96" + }, + { + "id": "55F915B1-69CB-4394-9313-F8A0B7A8EBB9", + "name": "numeric-2", + "codepoint": "F0B3B", + "aliases": [ + "number-2", + "numeric-two" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "0F35B058-84BF-42A1-8EC2-4DF8A5F2CB6D", + "name": "numeric-2-box", + "codepoint": "F03A7", + "aliases": [ + "looks-two", + "numeric-two-box", + "number-2-box" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "4950EF31-6A39-4EFE-91CD-10CB750A3634", + "name": "numeric-2-box-multiple", + "codepoint": "F0F10", + "aliases": [], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.8.95" + }, + { + "id": "989BAC0E-21F6-4AF2-849A-3DA35BA5958F", + "name": "numeric-2-box-multiple-outline", + "codepoint": "F03A8", + "aliases": [ + "filter-2", + "numeric-two-box-multiple-outline", + "numeric-2-boxes-outline", + "number-2-box-multiple-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "0C255402-1176-46B5-B38C-60118732FCC7", + "name": "numeric-2-box-outline", + "codepoint": "F03A9", + "aliases": [ + "numeric-two-box-outline", + "number-2-box-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "C8CF7706-2522-4EB4-A304-C25BAD47C1C7", + "name": "numeric-2-circle", + "codepoint": "F0CA2", + "aliases": [ + "numeric-two-circle", + "number-2-circle", + "number-two-circle" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "36906959-9333-4F37-9BB3-BE1481F2A99A", + "name": "numeric-2-circle-outline", + "codepoint": "F0CA3", + "aliases": [ + "numeric-two-circle-outline", + "number-2-circle-outline", + "number-two-circle-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "E7B3F9D9-BC8D-4BE8-B02D-F2E20B3B357A", + "name": "numeric-3", + "codepoint": "F0B3C", + "aliases": [ + "number-3", + "numeric-three" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "F34D170B-4DF1-470D-ABC4-AE0A93035227", + "name": "numeric-3-box", + "codepoint": "F03AA", + "aliases": [ + "looks-3", + "numeric-three-box", + "number-3-box" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "9D8EBAFA-19A3-4E74-9800-570AFD910814", + "name": "numeric-3-box-multiple", + "codepoint": "F0F11", + "aliases": [], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.8.95" + }, + { + "id": "394B1DFD-7009-4057-AD14-7F7D99B3A658", + "name": "numeric-3-box-multiple-outline", + "codepoint": "F03AB", + "aliases": [ + "filter-3", + "numeric-three-box-multiple-outline", + "numeric-3-boxes-outline", + "number-3-box-multiple-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "0A0F7443-4234-4990-9C0B-A8AC88F924E5", + "name": "numeric-3-box-outline", + "codepoint": "F03AC", + "aliases": [ + "numeric-three-box-outline", + "number-3-box-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "07FDE137-E119-45E9-8100-3C0194FFF51D", + "name": "numeric-3-circle", + "codepoint": "F0CA4", + "aliases": [ + "numeric-three-circle", + "number-3-circle", + "number-three-circle" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "4AF81318-EC08-4E9D-9853-F7C8AD694E10", + "name": "numeric-3-circle-outline", + "codepoint": "F0CA5", + "aliases": [ + "numeric-three-circle-outline", + "number-3-circle-outline", + "number-three-circle-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "099C1A7A-865B-4BA2-951B-EED8F8665083", + "name": "numeric-4", + "codepoint": "F0B3D", + "aliases": [ + "number-4", + "numeric-four" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "9C9EEFA4-B764-41CE-A679-3927454AE59A", + "name": "numeric-4-box", + "codepoint": "F03AD", + "aliases": [ + "looks-4", + "numeric-four-box", + "number-4-box" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "DB253DAA-77F7-41F0-A1A4-76388FEFA092", + "name": "numeric-4-box-multiple", + "codepoint": "F0F12", + "aliases": [], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.8.95" + }, + { + "id": "EB320CFB-296A-4C6F-9585-76CA21DDCD04", + "name": "numeric-4-box-multiple-outline", + "codepoint": "F03B2", + "aliases": [ + "filter-4", + "numeric-four-box-multiple-outline", + "numeric-4-boxes-outline", + "number-4-box-multiple-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "18423C69-0B97-4590-A690-1AAF99615875", + "name": "numeric-4-box-outline", + "codepoint": "F03AE", + "aliases": [ + "numeric-four-box-outline", + "number-4-box-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "3C8A2386-5BBE-495F-A1BE-BFBB3385D857", + "name": "numeric-4-circle", + "codepoint": "F0CA6", + "aliases": [ + "numeric-four-circle", + "number-4-circle", + "number-four-circle" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "898E368A-092D-45E4-B84D-9C99ABFFF2AC", + "name": "numeric-4-circle-outline", + "codepoint": "F0CA7", + "aliases": [ + "numeric-four-circle-outline", + "number-4-circle-outline", + "number-four-circle-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "EFB5FA9A-E828-4D71-A35F-011D873DE490", + "name": "numeric-5", + "codepoint": "F0B3E", + "aliases": [ + "number-5", + "numeric-five" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "1F91841C-B56D-486E-8113-187E28F1E53A", + "name": "numeric-5-box", + "codepoint": "F03B1", + "aliases": [ + "looks-5", + "numeric-five-box", + "number-5-box" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "C3FBC921-E4A1-4B04-BDEA-E883EE5FB695", + "name": "numeric-5-box-multiple", + "codepoint": "F0F13", + "aliases": [], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.8.95" + }, + { + "id": "A39788D6-B09D-42CF-ADC3-7575B14DBE79", + "name": "numeric-5-box-multiple-outline", + "codepoint": "F03AF", + "aliases": [ + "filter-5", + "numeric-five-box-multiple-outline", + "numeric-5-boxes-outline", + "number-5-box-multiple-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "38CB37B2-2BF9-4890-8060-5576DDAE6FC6", + "name": "numeric-5-box-outline", + "codepoint": "F03B0", + "aliases": [ + "numeric-five-box-outline", + "number-5-box-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "B4079A0A-5D66-4982-B31F-4145B49E5512", + "name": "numeric-5-circle", + "codepoint": "F0CA8", + "aliases": [ + "numeric-five-circle", + "number-5-circle", + "number-five-circle" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "1FFAD3CC-0B61-4A7A-90F0-E5A5D78D7D3A", + "name": "numeric-5-circle-outline", + "codepoint": "F0CA9", + "aliases": [ + "numeric-five-circle-outline", + "number-5-circle-outline", + "number-five-circle-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "8B73A4D3-4AC9-448B-8C60-497EC2167898", + "name": "numeric-6", + "codepoint": "F0B3F", + "aliases": [ + "number-6", + "numeric-six" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "DC1FE999-3DD7-423B-95A5-89005C66875E", + "name": "numeric-6-box", + "codepoint": "F03B3", + "aliases": [ + "looks-6", + "numeric-six-box", + "number-6-box" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "231F08AC-E082-407D-9EC9-55C2E654EF16", + "name": "numeric-6-box-multiple", + "codepoint": "F0F14", + "aliases": [], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.8.95" + }, + { + "id": "F3AA6A15-D060-40D7-A301-9EB1BAAF2F12", + "name": "numeric-6-box-multiple-outline", + "codepoint": "F03B4", + "aliases": [ + "filter-6", + "numeric-six-box-multiple-outline", + "numeric-6-boxes-outline", + "number-6-box-multiple-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "8ED3719B-D733-46ED-BFCF-0BDE0819F7EF", + "name": "numeric-6-box-outline", + "codepoint": "F03B5", + "aliases": [ + "numeric-six-box-outline", + "number-6-box-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "E15A2826-796D-439A-9A10-4F068C76C6FC", + "name": "numeric-6-circle", + "codepoint": "F0CAA", + "aliases": [ + "numeric-six-circle", + "number-6-circle", + "number-six-circle" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "6D644C9F-A3C4-45E6-A2E8-E3077A170E4A", + "name": "numeric-6-circle-outline", + "codepoint": "F0CAB", + "aliases": [ + "numeric-six-circle-outline", + "number-6-circle-outline", + "number-six-circle-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "19BDA673-8B20-4A75-87B9-7286F0B14730", + "name": "numeric-7", + "codepoint": "F0B40", + "aliases": [ + "number-7", + "numeric-seven" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "C01DF00A-5B63-4B15-B6A5-FEA9E3E084B1", + "name": "numeric-7-box", + "codepoint": "F03B6", + "aliases": [ + "numeric-seven-box", + "number-7-box" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "C69F2D2A-7226-4D0A-87A8-3D53753C0572", + "name": "numeric-7-box-multiple", + "codepoint": "F0F15", + "aliases": [], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.8.95" + }, + { + "id": "CF43DB99-4419-491B-A5E3-2486A36F24DB", + "name": "numeric-7-box-multiple-outline", + "codepoint": "F03B7", + "aliases": [ + "filter-7", + "numeric-seven-box-multiple-outline", + "numeric-7-boxes-outline", + "number-7-box-multiple-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "373DD873-E15F-4B7C-8328-76389DC81DB0", + "name": "numeric-7-box-outline", + "codepoint": "F03B8", + "aliases": [ + "numeric-seven-box-outline", + "number-7-box-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "FE25714F-69B5-463B-8C11-5E4E057C83C3", + "name": "numeric-7-circle", + "codepoint": "F0CAC", + "aliases": [ + "numeric-seven-circle", + "number-7-circle", + "number-seven-circle" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "67707F91-E498-46C6-816B-2A6D1BE437F6", + "name": "numeric-7-circle-outline", + "codepoint": "F0CAD", + "aliases": [ + "numeric-seven-circle-outline", + "number-7-circle-outline", + "number-seven-circle-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "F92BFF4C-3D23-466A-BBE6-AF98DB0F43A9", + "name": "numeric-8", + "codepoint": "F0B41", + "aliases": [ + "number-8", + "numeric-eight" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "863E0667-F376-4303-9261-CAA4B7F073C6", + "name": "numeric-8-box", + "codepoint": "F03B9", + "aliases": [ + "numeric-eight-box", + "number-8-box" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "D032F5F3-670D-4576-AD76-A17562377466", + "name": "numeric-8-box-multiple", + "codepoint": "F0F16", + "aliases": [], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.8.95" + }, + { + "id": "869A508B-5F8E-41A7-BCE5-E205FC66C80F", + "name": "numeric-8-box-multiple-outline", + "codepoint": "F03BA", + "aliases": [ + "filter-8", + "numeric-eight-box-multiple-outline", + "numeric-8-boxes-outline", + "number-8-box-multiple-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "DC2B6D38-A6B3-4171-AAC6-E08EF2C23710", + "name": "numeric-8-box-outline", + "codepoint": "F03BB", + "aliases": [ + "numeric-eight-box-outline", + "number-8-box-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "26382400-22B1-40A6-9C1A-46C649C36783", + "name": "numeric-8-circle", + "codepoint": "F0CAE", + "aliases": [ + "numeric-eight-circle", + "number-8-circle", + "number-eight-circle" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "C1306EC5-E7F0-4152-A19D-84E851537171", + "name": "numeric-8-circle-outline", + "codepoint": "F0CAF", + "aliases": [ + "numeric-eight-circle-outline", + "number-8-circle-outline", + "number-eight-circle-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "11F0ADB8-0CC8-48A3-8653-11E7F58B5C9B", + "name": "numeric-9", + "codepoint": "F0B42", + "aliases": [ + "number-9", + "numeric-nine" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "12DCC44D-8BA2-4D25-A88B-665920C8B730", + "name": "numeric-9-box", + "codepoint": "F03BC", + "aliases": [ + "numeric-nine-box", + "number-9-box" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "3DAA435E-D837-4AD3-9937-0D554F409BB0", + "name": "numeric-9-box-multiple", + "codepoint": "F0F17", + "aliases": [], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.8.95" + }, + { + "id": "A41F44A0-816E-497E-A08C-C9646FE161BE", + "name": "numeric-9-box-multiple-outline", + "codepoint": "F03BD", + "aliases": [ + "filter-9", + "numeric-nine-box-multiple-outline", + "numeric-9-boxes-outline", + "number-9-box-multiple-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "EE2E9486-0C32-4EC9-9D4F-9B8A7287F696", + "name": "numeric-9-box-outline", + "codepoint": "F03BE", + "aliases": [ + "numeric-nine-box-outline", + "number-9-box-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "FB06011B-B2CC-4F3A-8ADE-2F7E78F0AE7C", + "name": "numeric-9-circle", + "codepoint": "F0CB0", + "aliases": [ + "numeric-nine-circle", + "number-9-circle", + "number-nine-circle" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "F27ABCBB-C6D6-4C1E-AF0C-C406057245AA", + "name": "numeric-9-circle-outline", + "codepoint": "F0CB1", + "aliases": [ + "numeric-nine-circle-outline", + "number-9-circle-outline", + "number-nine-circle-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "CF313E88-0D2F-49B9-B2BC-6651ACEAA677", + "name": "numeric-9-plus", + "codepoint": "F0FEE", + "aliases": [], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "GreenTurtwig", + "version": "4.0.96" + }, + { + "id": "7CF309F0-D751-44A3-A313-BA7F2F8865FD", + "name": "numeric-9-plus-box", + "codepoint": "F03BF", + "aliases": [ + "numeric-nine-plus-box", + "number-9-plus-box" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "20E22DC1-795D-432F-9CB9-D339EA3B96DB", + "name": "numeric-9-plus-box-multiple", + "codepoint": "F0F18", + "aliases": [], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.8.95" + }, + { + "id": "46A850FC-F6E6-4000-A93F-6B954DA62886", + "name": "numeric-9-plus-box-multiple-outline", + "codepoint": "F03C0", + "aliases": [ + "filter-9-plus", + "numeric-nine-plus-box-multiple-outline", + "numeric-9-plus-boxes-outline", + "number-9-plus-box-multiple-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "C1F38C40-BD01-45FE-A94C-B3C1432707E0", + "name": "numeric-9-plus-box-outline", + "codepoint": "F03C1", + "aliases": [ + "numeric-nine-plus-box-outline", + "number-9-plus-box-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "757FDF81-DCCF-4B75-9A2A-9ED3D2DB966E", + "name": "numeric-9-plus-circle", + "codepoint": "F0CB2", + "aliases": [ + "numeric-nine-plus-circle", + "number-9-plus-circle", + "number-nine-plus-circle" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "00BD21E8-FAF1-470D-8F64-0030C1C222F3", + "name": "numeric-9-plus-circle-outline", + "codepoint": "F0CB3", + "aliases": [ + "numeric-nine-plus-circle-outline", + "number-9-plus-circle-outline", + "number-nine-plus-circle-outline" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "3.2.89" + }, + { + "id": "B198FE0B-15C3-4FFB-B5C9-2D6E60E825A1", + "name": "numeric-negative-1", + "codepoint": "F1052", + "aliases": [ + "decrement", + "minus-one" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "4.1.95" + }, + { + "id": "560615BB-A023-4B98-88A6-F38FBF3272E2", + "name": "numeric-off", + "codepoint": "F19D3", + "aliases": [ + "numbers-off", + "123-off", + "one-two-three-off" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Piotr \u0141ado\u0144ski", + "version": "6.6.95" + }, + { + "id": "73DE8F6E-A301-42D1-B2C3-3699265BA2BB", + "name": "numeric-positive-1", + "codepoint": "F15CB", + "aliases": [ + "increment", + "plus-one" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Michael Irigoyen", + "version": "5.6.55" + }, + { + "id": "8B702257-4232-459E-BDA8-C4E698DF8E8E", + "name": "nut", + "codepoint": "F06F8", + "aliases": [], + "tags": [ + "Hardware \/ Tools" + ], + "author": "Simran", + "version": "1.8.36" + }, + { + "id": "723E0BBB-78CC-4192-98B1-426B17D694B9", + "name": "nutrition", + "codepoint": "F03C2", + "aliases": [], + "tags": [ + "Food \/ Drink" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "EDCDD59F-BD6B-49C9-B93A-36879031CEA3", + "name": "nuxt", + "codepoint": "F1106", + "aliases": [], + "tags": [ + "Developer \/ Languages", + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "4.3.95" + }, + { + "id": "A065A53E-118C-424A-8A81-0D300975AB04", + "name": "oar", + "codepoint": "F067C", + "aliases": [], + "tags": [], + "author": "Thomas Hunsaker", + "version": "1.7.12" + }, + { + "id": "1C1A3850-DB11-4F6D-B031-8E4CE14E9760", + "name": "ocarina", + "codepoint": "F0DE0", + "aliases": [], + "tags": [ + "Music", + "Gaming \/ RPG" + ], + "author": "Michael Irigoyen", + "version": "3.5.94" + }, + { + "id": "53021908-1FB5-4293-896E-94C5330E6101", + "name": "oci", + "codepoint": "F12E9", + "aliases": [ + "open-container-initiative" + ], + "tags": [ + "Developer \/ Languages", + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "4.8.95" + }, + { + "id": "2943D362-A548-448C-A868-19E6D37C8B2D", + "name": "ocr", + "codepoint": "F113A", + "aliases": [ + "optical-character-recognition" + ], + "tags": [], + "author": "Simran", + "version": "4.4.95" + }, + { + "id": "5E3C88DE-A208-471A-9096-7C7868CC957C", + "name": "octagon", + "codepoint": "F03C3", + "aliases": [ + "stop" + ], + "tags": [ + "Shape", + "Transportation + Road" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "3CF63E10-42E7-4E13-8BFF-10E9257953AB", + "name": "octagon-outline", + "codepoint": "F03C4", + "aliases": [ + "stop-outline" + ], + "tags": [ + "Shape", + "Transportation + Road" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "455C8475-5555-49B7-825B-206581104AB2", + "name": "octagram", + "codepoint": "F06F9", + "aliases": [ + "starburst" + ], + "tags": [ + "Shape" + ], + "author": "Austin Andrews", + "version": "1.8.36" + }, + { + "id": "8316E0F1-5F66-4C4E-ACA8-EE61AD93A42A", + "name": "octagram-outline", + "codepoint": "F0775", + "aliases": [ + "starburst-outline" + ], + "tags": [ + "Shape" + ], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "45CD61D9-B0D0-43FA-B50E-F6E71A95128A", + "name": "octahedron", + "codepoint": "F1950", + "aliases": [], + "tags": [ + "Shape" + ], + "author": "Colton Wiscombe", + "version": "6.4.95" + }, + { + "id": "AD67A41D-5524-4F72-8658-C3F78A06333E", + "name": "octahedron-off", + "codepoint": "F1951", + "aliases": [], + "tags": [ + "Shape" + ], + "author": "Colton Wiscombe", + "version": "6.4.95" + }, + { + "id": "8BB24B94-491F-4465-8E87-45FF8FED7C4A", + "name": "odnoklassniki", + "codepoint": "F03C5", + "aliases": [ + "ok-ru" + ], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "64C3CB40-BBDF-4A82-9B07-62CA527A258C", + "name": "offer", + "codepoint": "F121B", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "4.6.95" + }, + { + "id": "C6BEE3A0-C734-48D4-A2E4-622E9B16CA06", + "name": "office-building", + "codepoint": "F0991", + "aliases": [], + "tags": [ + "Places" + ], + "author": "GreenTurtwig", + "version": "2.4.85" + }, + { + "id": "4A51F91C-857B-454A-8753-7AACF3B085A9", + "name": "office-building-cog", + "codepoint": "F1949", + "aliases": [ + "office-building-settings" + ], + "tags": [ + "Settings", + "Places" + ], + "author": "Joshua Solomon", + "version": "6.4.95" + }, + { + "id": "09BF7DAE-15CA-4539-BD8A-A741EB7E6405", + "name": "office-building-cog-outline", + "codepoint": "F194A", + "aliases": [ + "office-building-settings-outline" + ], + "tags": [ + "Settings", + "Places" + ], + "author": "Joshua Solomon", + "version": "6.4.95" + }, + { + "id": "8409886F-203E-45A5-8A70-C1670406BBA2", + "name": "office-building-marker", + "codepoint": "F1520", + "aliases": [ + "office-building-location" + ], + "tags": [], + "author": "Joshua Solomon", + "version": "5.4.55" + }, + { + "id": "B9C8DF7B-34D7-4D58-B769-B3ABAD0990FC", + "name": "office-building-marker-outline", + "codepoint": "F1521", + "aliases": [ + "office-building-location-outline" + ], + "tags": [], + "author": "Joshua Solomon", + "version": "5.4.55" + }, + { + "id": "1171525F-C510-44B9-9E5C-0F5CAC7A71D2", + "name": "office-building-outline", + "codepoint": "F151F", + "aliases": [], + "tags": [], + "author": "Joshua Solomon", + "version": "5.4.55" + }, + { + "id": "DE398350-B7B7-4E6B-AE4C-F99AAE56C7CF", + "name": "oil", + "codepoint": "F03C7", + "aliases": [], + "tags": [ + "Automotive" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "790DAFDA-8291-47F5-A5B9-9563AE201832", + "name": "oil-lamp", + "codepoint": "F0F19", + "aliases": [ + "wish", + "genie-lamp" + ], + "tags": [], + "author": "Michael Richins", + "version": "3.8.95" + }, + { + "id": "A6579EB0-C38D-4052-A6C9-C1ECD97E482C", + "name": "oil-level", + "codepoint": "F1053", + "aliases": [], + "tags": [ + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "4.1.95" + }, + { + "id": "C8743DBF-39CD-43E8-8EC3-B99D422422FC", + "name": "oil-temperature", + "codepoint": "F0FF8", + "aliases": [], + "tags": [ + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "4.0.96" + }, + { + "id": "F1EE1708-7EAF-4929-97AA-D4BAC093D157", + "name": "om", + "codepoint": "F0973", + "aliases": [ + "religion-hindu", + "hinduism" + ], + "tags": [ + "Religion" + ], + "author": "Nick", + "version": "2.4.85" + }, + { + "id": "A98F63CB-AB27-4A2D-B76C-6994507BCDBB", + "name": "omega", + "codepoint": "F03C9", + "aliases": [ + "ohm", + "electrical-resistance" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "DF8CCF67-8BD2-4632-8647-2B42BA2047A5", + "name": "one-up", + "codepoint": "F0BAD", + "aliases": [ + "1up", + "extra-life" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Michael Irigoyen", + "version": "3.0.39" + }, + { + "id": "2B9B64C7-B799-45C5-BDCC-BEC3B8672CFE", + "name": "onepassword", + "codepoint": "F0881", + "aliases": [ + "1password" + ], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "2.1.99" + }, + { + "id": "27C36043-E269-4223-ADCE-568B1EFB4623", + "name": "opacity", + "codepoint": "F05CC", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "AF69E2E1-8119-49A2-8E24-915E2254522A", + "name": "open-in-app", + "codepoint": "F03CB", + "aliases": [ + "open-in-browser" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "12B95238-1D74-4C6C-9BBD-C055B4DD0E4D", + "name": "open-in-new", + "codepoint": "F03CC", + "aliases": [ + "external-link" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "DA48F078-4BE9-42DC-AF35-F557E16DD2AE", + "name": "open-source-initiative", + "codepoint": "F0BAE", + "aliases": [], + "tags": [], + "author": "Contributors", + "version": "3.0.39" + }, + { + "id": "C9525FF9-FE74-467C-99CE-F8DD8FE3576C", + "name": "openid", + "codepoint": "F03CD", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "A0BCE6D1-D558-487E-9629-F7CCC495C27B", + "name": "opera", + "codepoint": "F03CE", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "D672819E-C3D1-49FC-A1E7-9F4732D034DC", + "name": "orbit", + "codepoint": "F0018", + "aliases": [], + "tags": [ + "Science" + ], + "author": "Roberto Graham", + "version": "1.5.54" + }, + { + "id": "4A0C34D7-1D3D-472B-9E5D-858DBBCBC7B2", + "name": "orbit-variant", + "codepoint": "F15DB", + "aliases": [ + "camera-flip" + ], + "tags": [ + "Photography" + ], + "author": "Michael Irigoyen", + "version": "5.6.55" + }, + { + "id": "B6FBB02F-98A0-4521-BA9B-D00EA8A2FC57", + "name": "order-alphabetical-ascending", + "codepoint": "F020D", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "D9CEAAB0-32D3-4A42-A0F3-74B1FC50E9F0", + "name": "order-alphabetical-descending", + "codepoint": "F0D07", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Simran", + "version": "3.3.92" + }, + { + "id": "2D12922D-3C06-4916-9575-CA9A1014C4BF", + "name": "order-bool-ascending", + "codepoint": "F02BE", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "FA5DB7BA-69CB-4DF5-9DE9-B0681889CB2D", + "name": "order-bool-ascending-variant", + "codepoint": "F098F", + "aliases": [ + "order-checkbox-ascending" + ], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Simran", + "version": "2.4.85" + }, + { + "id": "62006FDB-1540-4E32-B74D-A758C8974661", + "name": "order-bool-descending", + "codepoint": "F1384", + "aliases": [ + "order-checkbox-descending" + ], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Simran", + "version": "5.0.45" + }, + { + "id": "56E79669-E557-4D22-A21D-E07FFDB1C2B6", + "name": "order-bool-descending-variant", + "codepoint": "F0990", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Simran", + "version": "2.4.85" + }, + { + "id": "1ADB886B-B791-42BF-AC04-5EB73E665EA6", + "name": "order-numeric-ascending", + "codepoint": "F0545", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "3979C805-4C53-4F45-A6E5-9CAADE1C2D80", + "name": "order-numeric-descending", + "codepoint": "F0546", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "E41855D5-FB0E-4FAD-8CD8-D085B1577D2F", + "name": "origin", + "codepoint": "F0B43", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "2.8.94" + }, + { + "id": "ADC4F1DD-B840-4C28-8D5C-08F3BE15A424", + "name": "ornament", + "codepoint": "F03CF", + "aliases": [], + "tags": [ + "Holiday" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "9C3E1D75-FB73-44AA-8BCC-9B30692D8D79", + "name": "ornament-variant", + "codepoint": "F03D0", + "aliases": [], + "tags": [ + "Holiday" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "09F61849-C1AA-4755-B49E-75DB800B5273", + "name": "outdoor-lamp", + "codepoint": "F1054", + "aliases": [ + "outdoor-light" + ], + "tags": [ + "Home Automation" + ], + "author": "Borre Haugen", + "version": "4.1.95" + }, + { + "id": "059B5D2A-9B8B-412D-BAF1-F3F9B7E14A44", + "name": "overscan", + "codepoint": "F1005", + "aliases": [ + "fullscreen" + ], + "tags": [], + "author": "Google", + "version": "4.0.96" + }, + { + "id": "1F963457-7A4F-4BEE-AE9C-0E54CF804DD3", + "name": "owl", + "codepoint": "F03D2", + "aliases": [], + "tags": [ + "Animal", + "Holiday" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "29FC6427-61B9-4961-9004-FCD4A6E6522D", + "name": "pac-man", + "codepoint": "F0BAF", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Michael Richins", + "version": "3.0.39" + }, + { + "id": "57771FFC-0E2C-40DE-AF7C-F3F51EFFE2C0", + "name": "package", + "codepoint": "F03D3", + "aliases": [ + "box" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "0C18B335-700A-4D68-BF88-C95A69479F2E", + "name": "package-down", + "codepoint": "F03D4", + "aliases": [ + "archive", + "box-down", + "this-side-down" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "383EF914-6014-473D-8C54-0314432007E3", + "name": "package-up", + "codepoint": "F03D5", + "aliases": [ + "unarchive", + "box-up", + "this-side-up" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "558C8C17-E4E1-4921-874D-F9ACB26C35C8", + "name": "package-variant", + "codepoint": "F03D6", + "aliases": [ + "box-variant" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "290F16B3-147C-446D-B14B-56AECCA76276", + "name": "package-variant-closed", + "codepoint": "F03D7", + "aliases": [ + "box-variant-closed" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "DF9F88A2-7B9A-4881-A2E4-6BC6F4387A0F", + "name": "package-variant-closed-minus", + "codepoint": "F19D4", + "aliases": [ + "package-variant-closed-subtract", + "box-variant-closed-minus", + "box-variant-closed-subtract" + ], + "tags": [], + "author": "Ferenc Szabo", + "version": "6.6.95" + }, + { + "id": "749AB237-2B69-4BB9-9B2D-6F22B1F85D50", + "name": "package-variant-closed-plus", + "codepoint": "F19D5", + "aliases": [ + "box-variant-closed-plus", + "package-variant-closed-add", + "box-variant-closed-add" + ], + "tags": [], + "author": "Ferenc Szabo", + "version": "6.6.95" + }, + { + "id": "425F62CE-0308-47E5-9825-CEE711EE34B2", + "name": "package-variant-closed-remove", + "codepoint": "F19D6", + "aliases": [ + "box-variant-closed-remove" + ], + "tags": [], + "author": "Ferenc Szabo", + "version": "6.6.95" + }, + { + "id": "C204643B-C7FA-48A9-9910-C2258F77E707", + "name": "package-variant-minus", + "codepoint": "F19D7", + "aliases": [ + "box-variant-minus", + "package-variant-subtract", + "box-variant-subtract" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.6.95" + }, + { + "id": "8E0543FE-6EC4-4D0F-9109-E77254414DD7", + "name": "package-variant-plus", + "codepoint": "F19D8", + "aliases": [ + "box-variant-plus", + "package-variant-add", + "box-variant-add" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.6.95" + }, + { + "id": "1E482E98-310D-4A28-B461-DD48ADE915E8", + "name": "package-variant-remove", + "codepoint": "F19D9", + "aliases": [ + "box-variant-remove" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.6.95" + }, + { + "id": "DF23FF47-4DD3-4CB3-9BEC-6EE986B0FA65", + "name": "page-first", + "codepoint": "F0600", + "aliases": [ + "first-page", + "chevron-left-first" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "CF9B4635-FE27-4DA5-BE51-F5F4116AFC54", + "name": "page-last", + "codepoint": "F0601", + "aliases": [ + "last-page", + "chevron-right-last" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "39AF8334-4244-49DD-A8A4-D4F638B9D939", + "name": "page-layout-body", + "codepoint": "F06FA", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.8.36" + }, + { + "id": "74636C38-381A-46B8-97FD-B312735DE60D", + "name": "page-layout-footer", + "codepoint": "F06FB", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.8.36" + }, + { + "id": "3606AC64-ABC8-4DA6-ACE8-64D58E0B0A46", + "name": "page-layout-header", + "codepoint": "F06FC", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.8.36" + }, + { + "id": "C1258752-7002-4714-81E3-D90828B5A896", + "name": "page-layout-header-footer", + "codepoint": "F0F7F", + "aliases": [ + "page-layout-marginals" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.9.97" + }, + { + "id": "6E39564D-2B4B-4940-9E74-5274ED12E800", + "name": "page-layout-sidebar-left", + "codepoint": "F06FD", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.8.36" + }, + { + "id": "29C8714B-1CAD-41B8-829B-2A14F6F87684", + "name": "page-layout-sidebar-right", + "codepoint": "F06FE", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.8.36" + }, + { + "id": "760D3DDF-F710-4BE1-A4E6-CC5AD6AF49DB", + "name": "page-next", + "codepoint": "F0BB0", + "aliases": [ + "read-more" + ], + "tags": [], + "author": "Michael Richins", + "version": "3.0.39" + }, + { + "id": "9213C60D-0232-4ECB-91C6-8D2BF812FE6A", + "name": "page-next-outline", + "codepoint": "F0BB1", + "aliases": [ + "read-more-outline" + ], + "tags": [], + "author": "Michael Richins", + "version": "3.0.39" + }, + { + "id": "AF1A8DA7-B3AC-4E11-A50B-59FBA8B34CF5", + "name": "page-previous", + "codepoint": "F0BB2", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "3.0.39" + }, + { + "id": "A26AE0CE-1223-4A40-B7B6-E4FDCC5AE820", + "name": "page-previous-outline", + "codepoint": "F0BB3", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "3.0.39" + }, + { + "id": "C4C17ED6-0DB6-4A13-9C6F-0C3146B0CD80", + "name": "pail", + "codepoint": "F1417", + "aliases": [ + "bucket" + ], + "tags": [], + "author": "Austin Andrews", + "version": "5.1.45" + }, + { + "id": "ECD25F41-E1C8-438E-BFF3-54F529504071", + "name": "pail-minus", + "codepoint": "F1437", + "aliases": [ + "bucket-minus" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "599354BE-5249-40F9-8E62-466F89203E5B", + "name": "pail-minus-outline", + "codepoint": "F143C", + "aliases": [ + "bucket-minus-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "2F1D4972-0025-4EB4-ADFC-2ACBEF34C7EA", + "name": "pail-off", + "codepoint": "F1439", + "aliases": [ + "bucket-off" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "896E500B-797D-4687-917C-063906BB503F", + "name": "pail-off-outline", + "codepoint": "F143E", + "aliases": [ + "bucket-off-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "02152202-9609-4E5D-A6C5-1C7FE35F97E8", + "name": "pail-outline", + "codepoint": "F143A", + "aliases": [ + "bucket-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "ED64CE31-8F78-4383-A3BF-2AFBE5485E38", + "name": "pail-plus", + "codepoint": "F1436", + "aliases": [ + "bucket-plus" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "63B16204-CDD1-425F-8DDD-7DD80F2639D9", + "name": "pail-plus-outline", + "codepoint": "F143B", + "aliases": [ + "bucket-plus-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "FC5A2451-43C6-40D1-905D-7E473ACA134C", + "name": "pail-remove", + "codepoint": "F1438", + "aliases": [ + "bucket-remove" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "48413062-A335-454F-9349-04CD2B7BC628", + "name": "pail-remove-outline", + "codepoint": "F143D", + "aliases": [ + "bucket-remove-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "954CCE2B-7FEE-4F9C-9923-4E1D567607C3", + "name": "palette", + "codepoint": "F03D8", + "aliases": [ + "color-lens", + "colour-lens", + "paint", + "art", + "color" + ], + "tags": [ + "Color", + "Drawing \/ Art" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "3617B5EE-9A4A-4C3C-9C9A-8C69C7569EB4", + "name": "palette-advanced", + "codepoint": "F03D9", + "aliases": [ + "paint" + ], + "tags": [ + "Color", + "Drawing \/ Art" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "6C41ED7D-CA9F-45BA-B94D-F20ABB54519B", + "name": "palette-outline", + "codepoint": "F0E0C", + "aliases": [ + "paint-outline" + ], + "tags": [ + "Drawing \/ Art", + "Color", + "Geographic Information System" + ], + "author": "Google", + "version": "3.5.95" + }, + { + "id": "158F8306-CE63-45E8-94E5-58484FF5F050", + "name": "palette-swatch", + "codepoint": "F08B5", + "aliases": [ + "style", + "paint", + "material" + ], + "tags": [ + "Drawing \/ Art", + "Color" + ], + "author": "Google", + "version": "2.2.43" + }, + { + "id": "3D2690B4-4A3D-4B7C-B384-1C0AB180DD0B", + "name": "palette-swatch-outline", + "codepoint": "F135C", + "aliases": [ + "style-outline", + "paint-outline" + ], + "tags": [ + "Drawing \/ Art", + "Color" + ], + "author": "Google", + "version": "4.9.95" + }, + { + "id": "C4B3CA22-1868-4216-807B-ED852BAA3C21", + "name": "palette-swatch-variant", + "codepoint": "F195A", + "aliases": [ + "style", + "paint", + "material" + ], + "tags": [ + "Drawing \/ Art", + "Color" + ], + "author": "Erdem YILMAZ", + "version": "6.4.95" + }, + { + "id": "787F9145-5272-4028-94C8-46B0623FE039", + "name": "palm-tree", + "codepoint": "F1055", + "aliases": [], + "tags": [ + "Nature" + ], + "author": "Michael Irigoyen", + "version": "4.1.95" + }, + { + "id": "FEDAC98D-95D1-44FE-81DE-2BAACA196408", + "name": "pan", + "codepoint": "F0BB4", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "3.0.39" + }, + { + "id": "F5AFD529-AD6F-4A1B-AB69-E3E10FD0E654", + "name": "pan-bottom-left", + "codepoint": "F0BB5", + "aliases": [ + "pan-down-left" + ], + "tags": [], + "author": "Simran", + "version": "3.0.39" + }, + { + "id": "BAAF741C-C242-49A8-8A16-DA1EC373385D", + "name": "pan-bottom-right", + "codepoint": "F0BB6", + "aliases": [ + "pan-down-right" + ], + "tags": [], + "author": "Simran", + "version": "3.0.39" + }, + { + "id": "408FB11D-9531-4C8F-A592-48CD10A1AF4B", + "name": "pan-down", + "codepoint": "F0BB7", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "3.0.39" + }, + { + "id": "9881BB2E-CCAF-4698-83B5-452ED749C314", + "name": "pan-horizontal", + "codepoint": "F0BB8", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "3.0.39" + }, + { + "id": "59CEB0A5-75F5-4D3D-AF4D-2F0D8AEAEB0C", + "name": "pan-left", + "codepoint": "F0BB9", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "3.0.39" + }, + { + "id": "D563253F-1895-4DB7-95E9-A0C4C5562D12", + "name": "pan-right", + "codepoint": "F0BBA", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "3.0.39" + }, + { + "id": "C497D005-A9A3-4B1A-B440-CE574E81AF2F", + "name": "pan-top-left", + "codepoint": "F0BBB", + "aliases": [ + "pan-up-left" + ], + "tags": [], + "author": "Simran", + "version": "3.0.39" + }, + { + "id": "E9886955-5257-4E95-A017-C903F5F850C2", + "name": "pan-top-right", + "codepoint": "F0BBC", + "aliases": [ + "pan-up-right" + ], + "tags": [], + "author": "Simran", + "version": "3.0.39" + }, + { + "id": "989DC863-1210-44A7-88A3-B414994983F6", + "name": "pan-up", + "codepoint": "F0BBD", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "3.0.39" + }, + { + "id": "A27AD714-E988-4970-B995-8EEADCDA5D55", + "name": "pan-vertical", + "codepoint": "F0BBE", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "3.0.39" + }, + { + "id": "A797FE46-DF68-4179-85BE-172BD79F0667", + "name": "panda", + "codepoint": "F03DA", + "aliases": [ + "emoji-panda", + "emoticon-panda" + ], + "tags": [ + "Animal" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "24BCD03F-8D84-4154-95F5-086230CE3BBA", + "name": "pandora", + "codepoint": "F03DB", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "4054A322-F348-49BA-B85F-B978EFC1BDAD", + "name": "panorama", + "codepoint": "F03DC", + "aliases": [], + "tags": [ + "Photography" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "6D0BD840-6985-440A-9C55-782B5C3F4F9C", + "name": "panorama-fisheye", + "codepoint": "F03DD", + "aliases": [ + "panorama-fish-eye" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "FCE8C530-5626-4B4A-9260-ECD7C1E93956", + "name": "panorama-horizontal", + "codepoint": "F1928", + "aliases": [], + "tags": [ + "Photography" + ], + "author": "Google", + "version": "6.4.95" + }, + { + "id": "42B1DAD8-8731-49DB-B415-9BFD78A8DDEA", + "name": "panorama-horizontal-outline", + "codepoint": "F03DE", + "aliases": [], + "tags": [ + "Photography" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "E676EFD3-32EC-4F24-9A9A-65EF5518AA01", + "name": "panorama-outline", + "codepoint": "F198C", + "aliases": [], + "tags": [ + "Photography" + ], + "author": "Google", + "version": "6.5.95" + }, + { + "id": "B0B17758-277D-4AA6-8567-E87451EF1139", + "name": "panorama-sphere", + "codepoint": "F198D", + "aliases": [ + "panorama-360" + ], + "tags": [ + "Photography" + ], + "author": "Google", + "version": "6.5.95" + }, + { + "id": "F364E6E7-1129-4076-B915-0DA77003C891", + "name": "panorama-sphere-outline", + "codepoint": "F198E", + "aliases": [ + "panorama-360-outline" + ], + "tags": [ + "Photography" + ], + "author": "Google", + "version": "6.5.95" + }, + { + "id": "06830F7E-C93D-445A-AED5-7832A9E885C5", + "name": "panorama-variant", + "codepoint": "F198F", + "aliases": [ + "panorama-vr", + "image-vr", + "picture-vr", + "picture-360", + "image-360" + ], + "tags": [ + "Photography" + ], + "author": "Google", + "version": "6.5.95" + }, + { + "id": "BE67BFD1-97AD-4EC3-B3E7-19BA48708172", + "name": "panorama-variant-outline", + "codepoint": "F1990", + "aliases": [ + "panorama-vr-outline", + "image-vr-outline", + "picture-vr-outline", + "picture-360-outline", + "image-360-outline" + ], + "tags": [ + "Photography" + ], + "author": "Google", + "version": "6.5.95" + }, + { + "id": "DB54A44E-20B6-435E-9CFE-D53966AE0855", + "name": "panorama-vertical", + "codepoint": "F1929", + "aliases": [], + "tags": [ + "Photography" + ], + "author": "Google", + "version": "6.4.95" + }, + { + "id": "7EC1E0AF-1AC5-4CC8-BDCC-5E2D3BF2AC70", + "name": "panorama-vertical-outline", + "codepoint": "F03DF", + "aliases": [], + "tags": [ + "Photography" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "64F3926D-42E9-4819-92A2-C524031CD9BA", + "name": "panorama-wide-angle", + "codepoint": "F195F", + "aliases": [], + "tags": [ + "Photography" + ], + "author": "Google", + "version": "6.4.95" + }, + { + "id": "12D83006-87DE-49CE-B8C3-7D6492934CDA", + "name": "panorama-wide-angle-outline", + "codepoint": "F03E0", + "aliases": [], + "tags": [ + "Photography" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "4E8B4DBC-83EE-4CBD-BEDD-5866DE057324", + "name": "paper-cut-vertical", + "codepoint": "F03E1", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "1666E605-F46A-4AD2-8345-A599811B7D45", + "name": "paper-roll", + "codepoint": "F1157", + "aliases": [ + "lavatory-roll", + "bathroom-tissue", + "toilet-paper", + "kitchen-roll", + "paper-towels", + "receipt-roll" + ], + "tags": [ + "Home Automation", + "Printer" + ], + "author": "Simran", + "version": "4.4.95" + }, + { + "id": "2A7CBB78-4672-450C-8578-48AFB13243CD", + "name": "paper-roll-outline", + "codepoint": "F1158", + "aliases": [ + "lavatory-roll-outline", + "bathroom-tissue-outline", + "kitchen-roll-outline", + "paper-towels-outline", + "toilet-paper-outline", + "receipt-roll-outline" + ], + "tags": [ + "Home Automation", + "Printer" + ], + "author": "Simran", + "version": "4.4.95" + }, + { + "id": "27BCEC7F-ABF8-4506-B339-EE2425E1BAF9", + "name": "paperclip", + "codepoint": "F03E2", + "aliases": [ + "attachment-vertical", + "attach-file" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "3A005420-791A-45DA-A903-EED63E35C1C6", + "name": "paperclip-lock", + "codepoint": "F19DA", + "aliases": [ + "attachment-lock" + ], + "tags": [], + "author": "Simran", + "version": "6.6.95" + }, + { + "id": "47070C5A-B989-49C6-A635-3B764DC112CB", + "name": "parachute", + "codepoint": "F0CB4", + "aliases": [], + "tags": [ + "Transportation + Flying" + ], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "739633DB-1136-4AD6-8E4E-80077562E9F1", + "name": "parachute-outline", + "codepoint": "F0CB5", + "aliases": [], + "tags": [ + "Transportation + Flying" + ], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "24CD918E-9458-4D8D-A00C-746F8AB5D17E", + "name": "paragliding", + "codepoint": "F1745", + "aliases": [ + "parasail", + "paraglide" + ], + "tags": [ + "Sport" + ], + "author": "Google", + "version": "6.1.95" + }, + { + "id": "07C8266A-A135-443C-B2DD-4148CD718C51", + "name": "parking", + "codepoint": "F03E3", + "aliases": [ + "car-park", + "local-parking" + ], + "tags": [ + "Places" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "AED614C4-13E2-4009-9D9F-950258DB5124", + "name": "party-popper", + "codepoint": "F1056", + "aliases": [ + "celebration" + ], + "tags": [ + "Holiday" + ], + "author": "Google", + "version": "4.1.95" + }, + { + "id": "31BE5768-FCE0-46D5-A20B-E8CBFED471E0", + "name": "passport", + "codepoint": "F07E3", + "aliases": [], + "tags": [], + "author": "GreenTurtwig", + "version": "2.0.46" + }, + { + "id": "86A974C4-6E5A-48F6-A3B9-35B3DCD1DE7A", + "name": "passport-biometric", + "codepoint": "F0DE1", + "aliases": [ + "passport-electronic" + ], + "tags": [], + "author": "GreenTurtwig", + "version": "3.5.94" + }, + { + "id": "8288CA76-67E5-4EEA-82CD-DE0E0842F34D", + "name": "pasta", + "codepoint": "F1160", + "aliases": [ + "food-italian", + "spaghetti" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Google", + "version": "4.4.95" + }, + { + "id": "03B35003-B782-475E-AE4C-13021109AD97", + "name": "patio-heater", + "codepoint": "F0F80", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "3.9.97" + }, + { + "id": "9B72D845-E704-489C-A447-D02306AF5228", + "name": "patreon", + "codepoint": "F0882", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "2.1.99" + }, + { + "id": "2A1F0831-13CA-4419-BBD7-1F1FAF62A32B", + "name": "pause", + "codepoint": "F03E4", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "7AA13CBC-D472-4462-8263-88DA2BDCD6BB", + "name": "pause-circle", + "codepoint": "F03E5", + "aliases": [ + "pause-circle-filled" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "6F271406-B475-45D0-9B37-EF3DBE7D0DAA", + "name": "pause-circle-outline", + "codepoint": "F03E6", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "D0A95719-9B9F-4E86-A6E5-8013C1A6D4A7", + "name": "pause-octagon", + "codepoint": "F03E7", + "aliases": [ + "stop-pause" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "95AA0ED2-4221-4123-B3BF-9FACF3702CA4", + "name": "pause-octagon-outline", + "codepoint": "F03E8", + "aliases": [ + "stop-pause-outline" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "802EBFA2-6D86-4E93-BEBF-7F69F6C98C01", + "name": "paw", + "codepoint": "F03E9", + "aliases": [ + "pets" + ], + "tags": [ + "Animal", + "Nature" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "039D7C7E-AB09-4364-B08D-1FC120442AFE", + "name": "paw-off", + "codepoint": "F0657", + "aliases": [], + "tags": [ + "Animal" + ], + "author": "Simran", + "version": "1.6.50" + }, + { + "id": "EADDFE7F-B2A0-40AD-B060-555080D02BCB", + "name": "paw-off-outline", + "codepoint": "F1676", + "aliases": [], + "tags": [ + "Animal" + ], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "C0FB173F-3D34-4DC2-9D54-C82BEE350FFB", + "name": "paw-outline", + "codepoint": "F1675", + "aliases": [], + "tags": [ + "Animal" + ], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "7E574E80-7DB1-4722-9BC4-60F53509AACD", + "name": "peace", + "codepoint": "F0884", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "2.1.99" + }, + { + "id": "87A5BD64-6069-4C5B-8D50-69D9049B80BC", + "name": "peanut", + "codepoint": "F0FFC", + "aliases": [ + "allergen", + "food-allergy" + ], + "tags": [ + "Food \/ Drink", + "Agriculture" + ], + "author": "Michael Richins", + "version": "4.0.96" + }, + { + "id": "D8BD17A2-5CE7-4219-8363-E87D80C2E7DF", + "name": "peanut-off", + "codepoint": "F0FFD", + "aliases": [ + "allergen-off", + "food-allergy-off" + ], + "tags": [ + "Food \/ Drink", + "Agriculture" + ], + "author": "Michael Richins", + "version": "4.0.96" + }, + { + "id": "A3B86034-EAD9-4DE1-AF76-A11F21285DF9", + "name": "peanut-off-outline", + "codepoint": "F0FFF", + "aliases": [ + "allergen-off-outline", + "food-allergy-off-outline" + ], + "tags": [ + "Food \/ Drink", + "Agriculture" + ], + "author": "Michael Richins", + "version": "4.0.96" + }, + { + "id": "C3883026-99A7-48ED-898E-37AC117A6C4F", + "name": "peanut-outline", + "codepoint": "F0FFE", + "aliases": [ + "allergen-outline", + "food-allergy-outline" + ], + "tags": [ + "Food \/ Drink", + "Agriculture" + ], + "author": "Michael Richins", + "version": "4.0.96" + }, + { + "id": "054B1710-EE28-4AA8-9D7E-705B5703E33E", + "name": "pen", + "codepoint": "F03EA", + "aliases": [], + "tags": [ + "Drawing \/ Art" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "BDCCD15F-231E-4449-AADF-E2D21286396A", + "name": "pen-lock", + "codepoint": "F0DE2", + "aliases": [], + "tags": [ + "Lock" + ], + "author": "Michael Irigoyen", + "version": "3.5.94" + }, + { + "id": "19D98B8F-B4D1-49B2-A870-20F7E72E4133", + "name": "pen-minus", + "codepoint": "F0DE3", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.5.94" + }, + { + "id": "9D2F36EB-BE54-482B-9EBD-083699503E16", + "name": "pen-off", + "codepoint": "F0DE4", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.5.94" + }, + { + "id": "299ED912-E240-41D8-AA28-5FB0025BC782", + "name": "pen-plus", + "codepoint": "F0DE5", + "aliases": [ + "pen-add" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.5.94" + }, + { + "id": "71997C15-3E04-4212-B08D-3F03AA110261", + "name": "pen-remove", + "codepoint": "F0DE6", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.5.94" + }, + { + "id": "BB27CE6C-769A-4C0C-A53C-F1B10B9C4423", + "name": "pencil", + "codepoint": "F03EB", + "aliases": [ + "edit", + "create", + "mode-edit" + ], + "tags": [ + "Drawing \/ Art", + "Edit \/ Modify" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "56CC04F4-4E58-434D-962A-C824F5959D20", + "name": "pencil-box", + "codepoint": "F03EC", + "aliases": [], + "tags": [ + "Drawing \/ Art" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "3E7031C9-56EE-458C-BE57-B1A737E09998", + "name": "pencil-box-multiple", + "codepoint": "F1144", + "aliases": [ + "library-edit" + ], + "tags": [ + "Edit \/ Modify" + ], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "071E2A53-1647-4747-98BE-A7787AF39C15", + "name": "pencil-box-multiple-outline", + "codepoint": "F1145", + "aliases": [ + "library-edit-outline" + ], + "tags": [ + "Edit \/ Modify" + ], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "48A9B269-08B8-4DCB-85F1-68F2334DC004", + "name": "pencil-box-outline", + "codepoint": "F03ED", + "aliases": [], + "tags": [ + "Drawing \/ Art" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "F5C5B903-7160-4B46-AC15-28C965289469", + "name": "pencil-circle", + "codepoint": "F06FF", + "aliases": [], + "tags": [ + "Drawing \/ Art" + ], + "author": "GreenTurtwig", + "version": "1.8.36" + }, + { + "id": "5D68DE43-969F-40BE-8A2D-F5C25F2B0853", + "name": "pencil-circle-outline", + "codepoint": "F0776", + "aliases": [], + "tags": [ + "Drawing \/ Art" + ], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "33BBFD25-1E97-49AA-BA9A-0B42369DF4A6", + "name": "pencil-lock", + "codepoint": "F03EE", + "aliases": [], + "tags": [ + "Lock" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "0EDDA4FC-DC06-4621-AE19-5E0CF693997B", + "name": "pencil-lock-outline", + "codepoint": "F0DE7", + "aliases": [], + "tags": [ + "Lock" + ], + "author": "Michael Irigoyen", + "version": "3.5.94" + }, + { + "id": "07FDD339-D255-4ED3-BDEB-00B57F521A0E", + "name": "pencil-minus", + "codepoint": "F0DE8", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.5.94" + }, + { + "id": "030723AA-4B87-4648-8A6A-CECB909A3140", + "name": "pencil-minus-outline", + "codepoint": "F0DE9", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.5.94" + }, + { + "id": "AEB0F9CD-B3FF-4F64-9D6E-4916D5C720C3", + "name": "pencil-off", + "codepoint": "F03EF", + "aliases": [ + "edit-off" + ], + "tags": [], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "5B4952DA-7867-403A-AC98-12CFA78B52C0", + "name": "pencil-off-outline", + "codepoint": "F0DEA", + "aliases": [ + "edit-off-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.5.94" + }, + { + "id": "A17D67B7-C5FF-45E2-91AE-975584067388", + "name": "pencil-outline", + "codepoint": "F0CB6", + "aliases": [ + "edit-outline", + "create-outline", + "mode-edit-outline" + ], + "tags": [ + "Drawing \/ Art", + "Edit \/ Modify" + ], + "author": "Google", + "version": "3.2.89" + }, + { + "id": "F6194D2A-B09D-416D-98B9-C80FDA45D831", + "name": "pencil-plus", + "codepoint": "F0DEB", + "aliases": [ + "pencil-add" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.5.94" + }, + { + "id": "831CF37A-6530-48BB-8CB7-B3FF50D61860", + "name": "pencil-plus-outline", + "codepoint": "F0DEC", + "aliases": [ + "pencil-add-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.5.94" + }, + { + "id": "B536A740-BC15-4F6B-A923-28450B1ED3BD", + "name": "pencil-remove", + "codepoint": "F0DED", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.5.94" + }, + { + "id": "EEEC97B0-5E06-4D77-9934-6AC66B8F8538", + "name": "pencil-remove-outline", + "codepoint": "F0DEE", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.5.94" + }, + { + "id": "B8F0B132-5AD7-4E4B-ADDB-311FDBDD35CC", + "name": "pencil-ruler", + "codepoint": "F1353", + "aliases": [ + "design" + ], + "tags": [ + "Drawing \/ Art" + ], + "author": "Michael Irigoyen", + "version": "4.9.95" + }, + { + "id": "B2649A8A-D1EC-43AF-9C99-F233AF709155", + "name": "penguin", + "codepoint": "F0EC0", + "aliases": [ + "emoji-penguin", + "emoticon-penguin" + ], + "tags": [ + "Animal" + ], + "author": "Augustin Ursu", + "version": "3.7.94" + }, + { + "id": "A1E0EA60-79AF-42FD-966D-485276671F9C", + "name": "pentagon", + "codepoint": "F0701", + "aliases": [], + "tags": [ + "Shape" + ], + "author": "Michael Irigoyen", + "version": "1.8.36" + }, + { + "id": "7251D20A-5A23-456D-9A68-0107EF2BF01B", + "name": "pentagon-outline", + "codepoint": "F0700", + "aliases": [], + "tags": [ + "Shape" + ], + "author": "Michael Irigoyen", + "version": "1.8.36" + }, + { + "id": "EA9C6D1A-79AE-4114-9AF6-59A2A39FC8DF", + "name": "pentagram", + "codepoint": "F1667", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "5.7.55" + }, + { + "id": "3AB307BF-41D9-4CA4-9D44-58C82304C7BB", + "name": "percent", + "codepoint": "F03F0", + "aliases": [], + "tags": [ + "Math" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "0625AC7C-AD52-4221-8F53-A9AE6DAA57BD", + "name": "percent-outline", + "codepoint": "F1278", + "aliases": [], + "tags": [], + "author": "MC\u7684wither\u83cc", + "version": "4.7.95" + }, + { + "id": "1DB2BD6D-830D-4A4F-8E04-94D14901895A", + "name": "periodic-table", + "codepoint": "F08B6", + "aliases": [], + "tags": [ + "Science" + ], + "author": "Simran", + "version": "2.2.43" + }, + { + "id": "408FA22D-2054-4579-A991-DF061CDE5A00", + "name": "perspective-less", + "codepoint": "F0D23", + "aliases": [ + "perspective-decrease" + ], + "tags": [ + "Math" + ], + "author": "Michael Irigoyen", + "version": "3.3.92" + }, + { + "id": "6F54CAE0-D2B7-4E00-83AA-0B98A7601CF6", + "name": "perspective-more", + "codepoint": "F0D24", + "aliases": [ + "perspective-increase" + ], + "tags": [ + "Math" + ], + "author": "Michael Irigoyen", + "version": "3.3.92" + }, + { + "id": "57738B55-57CB-47EF-9758-32686AA78212", + "name": "ph", + "codepoint": "F17C5", + "aliases": [ + "acid", + "base", + "potential-of-hydrogen", + "power-of-hydrogen" + ], + "tags": [ + "Science", + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "B5BA809F-FCE8-476C-8388-6A9CFFF73015", + "name": "phone", + "codepoint": "F03F2", + "aliases": [ + "call", + "local-phone", + "telephone" + ], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "B7AE9DEE-6F1D-4CAF-9FD8-C6A6BF5D739D", + "name": "phone-alert", + "codepoint": "F0F1A", + "aliases": [], + "tags": [ + "Cellphone \/ Phone", + "Alert \/ Error" + ], + "author": "Patricia Cadenas", + "version": "3.8.95" + }, + { + "id": "A4D67201-7E48-469A-A424-0D772DBAD344", + "name": "phone-alert-outline", + "codepoint": "F118E", + "aliases": [], + "tags": [ + "Cellphone \/ Phone", + "Alert \/ Error" + ], + "author": "Michael Irigoyen", + "version": "4.5.95" + }, + { + "id": "34F52268-8571-4501-93C1-D4BF606BB10E", + "name": "phone-bluetooth", + "codepoint": "F03F3", + "aliases": [ + "phone-bluetooth-speaker", + "telephone-bluetooth" + ], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "64F560E8-6BEE-4CDC-81D4-FE87B76C906C", + "name": "phone-bluetooth-outline", + "codepoint": "F118F", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Google", + "version": "4.5.95" + }, + { + "id": "C97B6119-5EB1-4930-AEFA-7E3E216D3875", + "name": "phone-cancel", + "codepoint": "F10BC", + "aliases": [ + "phone-block" + ], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Patricia Cadenas", + "version": "4.2.95" + }, + { + "id": "70F0895F-EF78-404A-9CBE-D3FCAD39CE32", + "name": "phone-cancel-outline", + "codepoint": "F1190", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Michael Irigoyen", + "version": "4.5.95" + }, + { + "id": "7FA6178B-0275-4545-BBCB-F10B77E9603D", + "name": "phone-check", + "codepoint": "F11A9", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Michael Richins", + "version": "4.5.95" + }, + { + "id": "A91DFA4F-355A-4CB2-9013-F2ADFAA482D4", + "name": "phone-check-outline", + "codepoint": "F11AA", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Michael Richins", + "version": "4.5.95" + }, + { + "id": "A9ED94F7-0ADB-4CB3-AAF1-35B87D9B7724", + "name": "phone-classic", + "codepoint": "F0602", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "4D938684-537A-4ED1-B227-6859EA3DADAF", + "name": "phone-classic-off", + "codepoint": "F1279", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "4.7.95" + }, + { + "id": "1B8EA976-32FD-4A71-94FA-EF40FC346FBD", + "name": "phone-clock", + "codepoint": "F19DB", + "aliases": [ + "phone-schedule", + "phone-time" + ], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Simran", + "version": "6.6.95" + }, + { + "id": "8F4DBE23-BD53-447F-917D-5343B4DDE8B8", + "name": "phone-dial", + "codepoint": "F1559", + "aliases": [ + "phone-keypad" + ], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Fran\u00e7ois Risoud", + "version": "5.5.55" + }, + { + "id": "90BA0013-C6A8-47E9-960C-A1DE13516B25", + "name": "phone-dial-outline", + "codepoint": "F155A", + "aliases": [ + "phone-keypad-outline" + ], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Fran\u00e7ois Risoud", + "version": "5.5.55" + }, + { + "id": "5EF77B27-31D7-47F8-8D72-8BC040CD154E", + "name": "phone-forward", + "codepoint": "F03F4", + "aliases": [ + "phone-forwarded", + "telephone-forward" + ], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "B168C56E-76CD-47CC-AD20-BA116911E3F8", + "name": "phone-forward-outline", + "codepoint": "F1191", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Google", + "version": "4.5.95" + }, + { + "id": "2018B4C8-A296-4D62-A30A-85F988B206EA", + "name": "phone-hangup", + "codepoint": "F03F5", + "aliases": [ + "call-end", + "telephone-hangup" + ], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "56BBAAEB-F773-4C5D-B122-74F698048F5C", + "name": "phone-hangup-outline", + "codepoint": "F1192", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Google", + "version": "4.5.95" + }, + { + "id": "F9BA7066-C1F8-4B19-9860-37BDCEB6F11C", + "name": "phone-in-talk", + "codepoint": "F03F6", + "aliases": [ + "telephone-in-talk" + ], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "BC90A08C-75FB-4E14-9795-3E408CB021AB", + "name": "phone-in-talk-outline", + "codepoint": "F1182", + "aliases": [ + "telephone-in-talk-outline" + ], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Google", + "version": "4.4.95" + }, + { + "id": "AA8EEDF8-EB34-46C5-8117-9258E1349197", + "name": "phone-incoming", + "codepoint": "F03F7", + "aliases": [ + "telephone-incoming" + ], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "75D9229A-5E93-4E44-8259-0808D47D6458", + "name": "phone-incoming-outline", + "codepoint": "F1193", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Google", + "version": "4.5.95" + }, + { + "id": "31349A83-A803-48DF-98C8-55D5E27B81E4", + "name": "phone-lock", + "codepoint": "F03F8", + "aliases": [ + "telephone-locked", + "phone-locked", + "telephone-lock" + ], + "tags": [ + "Cellphone \/ Phone", + "Lock" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "436AB859-CF22-4225-9606-5D2F603C102C", + "name": "phone-lock-outline", + "codepoint": "F1194", + "aliases": [], + "tags": [ + "Cellphone \/ Phone", + "Lock" + ], + "author": "Google", + "version": "4.5.95" + }, + { + "id": "B87821E3-2131-4C50-BB88-880BE6D0066F", + "name": "phone-log", + "codepoint": "F03F9", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "232EE7DD-4AC1-442D-B8E4-B914038E92CB", + "name": "phone-log-outline", + "codepoint": "F1195", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Simran", + "version": "4.5.95" + }, + { + "id": "16930FBE-3379-43F2-BEA6-057D64D18348", + "name": "phone-message", + "codepoint": "F1196", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Google", + "version": "4.5.95" + }, + { + "id": "CBA2C764-2B58-4914-A5C9-F0DAB190BB4C", + "name": "phone-message-outline", + "codepoint": "F1197", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Google", + "version": "4.5.95" + }, + { + "id": "7F431DF5-245C-4572-962C-CC57177BD8D0", + "name": "phone-minus", + "codepoint": "F0658", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Google", + "version": "1.6.50" + }, + { + "id": "F27193C4-051E-4142-A17D-9AFD5D15687D", + "name": "phone-minus-outline", + "codepoint": "F1198", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Google", + "version": "4.5.95" + }, + { + "id": "BF6662C4-D1D0-42E6-8C0A-B071F12975F2", + "name": "phone-missed", + "codepoint": "F03FA", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "1E87E90C-5DCD-4250-81EF-61138B268FBB", + "name": "phone-missed-outline", + "codepoint": "F11A5", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Google", + "version": "4.5.95" + }, + { + "id": "43E0E6E7-ABC0-4146-A3D3-B2355FA84A5E", + "name": "phone-off", + "codepoint": "F0DEF", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "GreenTurtwig", + "version": "3.5.94" + }, + { + "id": "DDD4308D-34BE-4708-B9B6-E547DDAFC6B3", + "name": "phone-off-outline", + "codepoint": "F11A6", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Google", + "version": "4.5.95" + }, + { + "id": "52280181-270B-4624-97FE-F46126C65BE7", + "name": "phone-outgoing", + "codepoint": "F03FB", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "AE3A49AE-0125-448B-8EFF-0146293FD123", + "name": "phone-outgoing-outline", + "codepoint": "F1199", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Simran", + "version": "4.5.95" + }, + { + "id": "79252282-1FDF-4DE8-A00F-51CD9D23311D", + "name": "phone-outline", + "codepoint": "F0DF0", + "aliases": [ + "telephone-outline", + "call-outline" + ], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Google", + "version": "3.5.94" + }, + { + "id": "1ABFB2C1-72CB-46C7-8E8B-B8A24C0285EA", + "name": "phone-paused", + "codepoint": "F03FC", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "3DF9D1F2-FE29-4385-9741-4B7F4B381EE6", + "name": "phone-paused-outline", + "codepoint": "F119A", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Google", + "version": "4.5.95" + }, + { + "id": "E58A5CD8-2D42-4A3A-BCC2-70870B43752C", + "name": "phone-plus", + "codepoint": "F0659", + "aliases": [ + "add-call" + ], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Google", + "version": "1.6.50" + }, + { + "id": "64C853E0-F60C-435D-9E93-261CCE84B0EB", + "name": "phone-plus-outline", + "codepoint": "F119B", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Google", + "version": "4.5.95" + }, + { + "id": "F8A826E0-7094-488F-ADF4-ACC23B865B8E", + "name": "phone-refresh", + "codepoint": "F1993", + "aliases": [ + "phone-redial" + ], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Michael Irigoyen", + "version": "6.5.95" + }, + { + "id": "7B9734DE-AFAE-451B-B4DD-D10361B8148C", + "name": "phone-refresh-outline", + "codepoint": "F1994", + "aliases": [ + "phone-redial-outline" + ], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Michael Irigoyen", + "version": "6.5.95" + }, + { + "id": "7AE0A1C1-0FFD-4182-93B5-95F2419AEE8E", + "name": "phone-remove", + "codepoint": "F152F", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Michael Irigoyen", + "version": "5.4.55" + }, + { + "id": "E829DF09-29F7-4FEF-A934-9C7A2119A628", + "name": "phone-remove-outline", + "codepoint": "F1530", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Michael Irigoyen", + "version": "5.4.55" + }, + { + "id": "B0FC2BB4-6C44-42CA-8F90-52CBCD0F1AD4", + "name": "phone-return", + "codepoint": "F082F", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Michael Richins", + "version": "2.1.19" + }, + { + "id": "7D826B1C-8945-48EA-95F8-30F864E4EA7D", + "name": "phone-return-outline", + "codepoint": "F119C", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Michael Richins", + "version": "4.5.95" + }, + { + "id": "280ECA2D-5D38-4B9E-81FA-58EEB580481A", + "name": "phone-ring", + "codepoint": "F11AB", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Google", + "version": "4.5.95" + }, + { + "id": "172E080A-5125-42C8-83FB-980DDE41715C", + "name": "phone-ring-outline", + "codepoint": "F11AC", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Google", + "version": "4.5.95" + }, + { + "id": "48667BD8-2891-45D0-92E9-F4FF292527A4", + "name": "phone-rotate-landscape", + "codepoint": "F0885", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Michael Richins", + "version": "2.1.99" + }, + { + "id": "B839A0B6-9E89-40C2-811F-2253514267C9", + "name": "phone-rotate-portrait", + "codepoint": "F0886", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Michael Richins", + "version": "2.1.99" + }, + { + "id": "C9E81E97-C4DA-4612-AC4D-0F81C7986CD8", + "name": "phone-settings", + "codepoint": "F03FD", + "aliases": [ + "settings-phone" + ], + "tags": [ + "Settings", + "Cellphone \/ Phone" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "E4A0F700-DF2C-4A72-AE99-8249ADDBB5FD", + "name": "phone-settings-outline", + "codepoint": "F119D", + "aliases": [], + "tags": [ + "Cellphone \/ Phone", + "Settings" + ], + "author": "Google", + "version": "4.5.95" + }, + { + "id": "038DA763-AA65-43B6-B6D6-F6967EE0DC4C", + "name": "phone-sync", + "codepoint": "F1995", + "aliases": [ + "phone-redial" + ], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Michael Irigoyen", + "version": "6.5.95" + }, + { + "id": "E463CA1E-92BB-4389-9EE8-BBA74EDA159F", + "name": "phone-sync-outline", + "codepoint": "F1996", + "aliases": [ + "phone-redial-outline" + ], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Michael Irigoyen", + "version": "6.5.95" + }, + { + "id": "43DAD9DC-C484-452A-9450-1F9C83C6B50E", + "name": "phone-voip", + "codepoint": "F03FE", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "0E3F11DA-8458-4A89-BB7B-D3A6972D3E30", + "name": "pi", + "codepoint": "F03FF", + "aliases": [], + "tags": [ + "Math" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "7C14B1F3-D836-42D6-AC5F-9FD31ADEBFFD", + "name": "pi-box", + "codepoint": "F0400", + "aliases": [], + "tags": [ + "Math" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "C41264FE-89C3-47A7-AE24-36F4B419B4E4", + "name": "pi-hole", + "codepoint": "F0DF1", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "3.5.94" + }, + { + "id": "E7651219-1BF9-4D06-9B4A-7599A2E0A407", + "name": "piano", + "codepoint": "F067D", + "aliases": [], + "tags": [ + "Music" + ], + "author": "Google", + "version": "1.7.12" + }, + { + "id": "F33DB278-2B2B-4731-9FDD-6D053EC2CBAB", + "name": "piano-off", + "codepoint": "F0698", + "aliases": [], + "tags": [ + "Music" + ], + "author": "Google", + "version": "1.7.12" + }, + { + "id": "A4DE211E-02E2-4514-9059-17AEFADA22F7", + "name": "pickaxe", + "codepoint": "F08B7", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "2.2.43" + }, + { + "id": "D184F762-16C9-4266-A485-8AA14A83A575", + "name": "picture-in-picture-bottom-right", + "codepoint": "F0E57", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.6.95" + }, + { + "id": "C9D5809D-900A-418A-98C3-2EF4106E620E", + "name": "picture-in-picture-bottom-right-outline", + "codepoint": "F0E58", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.6.95" + }, + { + "id": "C75700F6-A468-4452-BFFB-FFB4A496563B", + "name": "picture-in-picture-top-right", + "codepoint": "F0E59", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.6.95" + }, + { + "id": "3910AABC-4BEB-4D91-B35D-AAE58A1115C8", + "name": "picture-in-picture-top-right-outline", + "codepoint": "F0E5A", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.6.95" + }, + { + "id": "68AE7D9F-95E4-4AAC-B39F-748FD8677ACF", + "name": "pier", + "codepoint": "F0887", + "aliases": [], + "tags": [ + "Places", + "Transportation + Water" + ], + "author": "Michael Irigoyen", + "version": "2.1.99" + }, + { + "id": "547D5950-A129-411D-92AF-B8477D21230D", + "name": "pier-crane", + "codepoint": "F0888", + "aliases": [], + "tags": [ + "Transportation + Water" + ], + "author": "Michael Irigoyen", + "version": "2.1.99" + }, + { + "id": "5E4A3F96-7779-44C8-86EF-948EDBD53C20", + "name": "pig", + "codepoint": "F0401", + "aliases": [ + "emoji-pig", + "emoticon-pig" + ], + "tags": [ + "Animal", + "Agriculture" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "A25A5576-C967-444E-989D-750CD275BF27", + "name": "pig-variant", + "codepoint": "F1006", + "aliases": [], + "tags": [ + "Animal", + "Agriculture" + ], + "author": "Google", + "version": "4.0.96" + }, + { + "id": "04A432B2-ABA5-49D7-9650-D6518D5D0A94", + "name": "pig-variant-outline", + "codepoint": "F1678", + "aliases": [], + "tags": [ + "Agriculture", + "Animal" + ], + "author": "Google", + "version": "5.7.55" + }, + { + "id": "7168E9C8-32AE-4E0F-B3A4-EA05452C63C0", + "name": "piggy-bank", + "codepoint": "F1007", + "aliases": [], + "tags": [ + "Banking" + ], + "author": "Google", + "version": "4.0.96" + }, + { + "id": "37D67BA6-70A1-44C4-9C62-0647BBB7CDA2", + "name": "piggy-bank-outline", + "codepoint": "F1679", + "aliases": [], + "tags": [ + "Banking" + ], + "author": "Google", + "version": "5.7.55" + }, + { + "id": "6487E4ED-C501-416C-9DCE-1B7C1F676050", + "name": "pill", + "codepoint": "F0402", + "aliases": [ + "medicine", + "capsule", + "drug", + "pharmaceutical" + ], + "tags": [ + "Medical \/ Hospital" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "AD451D24-BA4B-466E-8146-D3FBBDA6E275", + "name": "pillar", + "codepoint": "F0702", + "aliases": [ + "historic", + "column" + ], + "tags": [], + "author": "GreenTurtwig", + "version": "1.8.36" + }, + { + "id": "B1337135-0E57-465F-8C0C-E658C9981A19", + "name": "pin", + "codepoint": "F0403", + "aliases": [ + "keep" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "8C59FE68-D89C-4A86-8E01-5C8109D1B028", + "name": "pin-off", + "codepoint": "F0404", + "aliases": [ + "keep-off" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "0ED785A3-7387-4989-BF3A-11F2F53C81B5", + "name": "pin-off-outline", + "codepoint": "F0930", + "aliases": [ + "keep-off-outline" + ], + "tags": [], + "author": "At Abbey's side", + "version": "2.3.54" + }, + { + "id": "BF736212-EE8D-49D0-8C8B-63A463488E88", + "name": "pin-outline", + "codepoint": "F0931", + "aliases": [ + "keep-outline" + ], + "tags": [], + "author": "Google", + "version": "2.3.54" + }, + { + "id": "F053196C-66BC-4D0D-B75F-24773CA618E5", + "name": "pine-tree", + "codepoint": "F0405", + "aliases": [ + "forest", + "plant" + ], + "tags": [ + "Holiday", + "Nature", + "Places" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "A8F37CBB-10AA-42DE-9CD6-BDCE10C2AF8C", + "name": "pine-tree-box", + "codepoint": "F0406", + "aliases": [ + "plant" + ], + "tags": [ + "Holiday", + "Nature" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "707539BB-56A1-4346-B907-95DEE51799A3", + "name": "pine-tree-fire", + "codepoint": "F141A", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "5.2.45" + }, + { + "id": "6BAC7A7E-340B-474D-8448-2DEC0FE66146", + "name": "pinterest", + "codepoint": "F0407", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "BB298846-B608-4289-987C-A8F2A904409F", + "name": "pinwheel", + "codepoint": "F0AD5", + "aliases": [ + "toys" + ], + "tags": [], + "author": "Google", + "version": "2.7.94" + }, + { + "id": "279BF513-8015-4F28-83FD-B69CE7E0EB78", + "name": "pinwheel-outline", + "codepoint": "F0AD6", + "aliases": [ + "toys-outline" + ], + "tags": [], + "author": "Google", + "version": "2.7.94" + }, + { + "id": "840AF950-F514-452B-AD1F-18EC878CB1F8", + "name": "pipe", + "codepoint": "F07E5", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Richins", + "version": "2.0.46" + }, + { + "id": "01D59BE4-7863-471D-840D-8C810F934344", + "name": "pipe-disconnected", + "codepoint": "F07E6", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Richins", + "version": "2.0.46" + }, + { + "id": "A39D910A-D5C9-4A9D-86CF-F61A60486758", + "name": "pipe-leak", + "codepoint": "F0889", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "2.1.99" + }, + { + "id": "CAF49DCD-781B-4F6A-B692-9E2ED6D68786", + "name": "pipe-valve", + "codepoint": "F184D", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.2.95" + }, + { + "id": "5767EA8C-592F-4CEF-A01D-52F3CD0D111E", + "name": "pipe-wrench", + "codepoint": "F1354", + "aliases": [ + "monkey-wrench" + ], + "tags": [ + "Hardware \/ Tools" + ], + "author": "Google", + "version": "4.9.95" + }, + { + "id": "5CDFFABD-F3B4-4E4D-97A3-F8B1AE403809", + "name": "pirate", + "codepoint": "F0A08", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "2.5.94" + }, + { + "id": "34C9947D-5943-4C3E-9E7A-2CD95061222B", + "name": "pistol", + "codepoint": "F0703", + "aliases": [ + "gun" + ], + "tags": [], + "author": "Michael Richins", + "version": "1.8.36" + }, + { + "id": "212476A4-B98A-4A84-BE27-37F28847A7D2", + "name": "piston", + "codepoint": "F088A", + "aliases": [], + "tags": [ + "Automotive" + ], + "author": "Michael Richins", + "version": "2.1.99" + }, + { + "id": "BD8E12AD-25AA-42FA-9C9C-EA023794A93D", + "name": "pitchfork", + "codepoint": "F1553", + "aliases": [], + "tags": [ + "Hardware \/ Tools" + ], + "author": "Michael Irigoyen", + "version": "5.5.55" + }, + { + "id": "E617E8BD-2C63-4E59-B1F4-EB3F9F3916D3", + "name": "pizza", + "codepoint": "F0409", + "aliases": [ + "pizzeria", + "local-pizza" + ], + "tags": [ + "Food \/ Drink", + "Places" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "90AD6D2A-7986-49D0-8DA5-DC92F9F92A15", + "name": "play", + "codepoint": "F040A", + "aliases": [ + "play-arrow" + ], + "tags": [ + "Home Automation" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "B60DF8C7-F693-4E2B-B5AB-65CA6DC21A8E", + "name": "play-box", + "codepoint": "F127A", + "aliases": [], + "tags": [], + "author": "frankgrinaert", + "version": "4.7.95" + }, + { + "id": "9700DCD7-8658-479A-A817-1241A09F9654", + "name": "play-box-multiple", + "codepoint": "F0D19", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.3.92" + }, + { + "id": "73F0C681-0A20-484A-B276-3EE052090089", + "name": "play-box-multiple-outline", + "codepoint": "F13E6", + "aliases": [], + "tags": [], + "author": "Google", + "version": "5.1.45" + }, + { + "id": "D0431F42-A1C2-409B-9D44-2EDDEF3F9AB3", + "name": "play-box-outline", + "codepoint": "F040B", + "aliases": [ + "slideshow" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "79F68E60-010F-4A8E-8E30-06CB64A5DBF6", + "name": "play-circle", + "codepoint": "F040C", + "aliases": [ + "play-circle-filled" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "E0C875C2-16F3-4C92-BABF-DAB2D08258DC", + "name": "play-circle-outline", + "codepoint": "F040D", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "5B10237B-B7AA-4B35-B8C0-C97747F1E3E7", + "name": "play-network", + "codepoint": "F088B", + "aliases": [ + "media-network" + ], + "tags": [], + "author": "Michael Richins", + "version": "2.1.99" + }, + { + "id": "951FE34F-7D2E-45FF-8014-FB4EBC49BED1", + "name": "play-network-outline", + "codepoint": "F0CB7", + "aliases": [ + "media-network-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "554AC834-1F9C-401A-86F5-E26FFD201683", + "name": "play-outline", + "codepoint": "F0F1B", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.8.95" + }, + { + "id": "93DAA69E-9A21-4D5A-B6B1-0AF0A24B7FEB", + "name": "play-pause", + "codepoint": "F040E", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "FEB9507A-DA7D-4CB3-918A-E64BBB9D4CC9", + "name": "play-protected-content", + "codepoint": "F040F", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "72410FAF-5315-452B-ACE1-C0FEB3B897F8", + "name": "play-speed", + "codepoint": "F08FF", + "aliases": [], + "tags": [], + "author": "Google", + "version": "2.3.50" + }, + { + "id": "F3E26F6E-9F9A-490B-A28A-1BD32A60D143", + "name": "playlist-check", + "codepoint": "F05C7", + "aliases": [ + "subscriptions", + "playlist-add-check", + "playlist-tick" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "EBBE4C11-9C6D-40AA-844A-167B274A4E81", + "name": "playlist-edit", + "codepoint": "F0900", + "aliases": [], + "tags": [ + "Edit \/ Modify" + ], + "author": "GreenTurtwig", + "version": "2.3.50" + }, + { + "id": "1D472295-8F79-4F51-B68A-63A2CD2DF634", + "name": "playlist-minus", + "codepoint": "F0410", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "F7BFD179-3B1E-4347-BD64-C51686B00E65", + "name": "playlist-music", + "codepoint": "F0CB8", + "aliases": [ + "playlist-note", + "queue-music" + ], + "tags": [], + "author": "Google", + "version": "3.2.89" + }, + { + "id": "97526C1D-E3B9-4900-8C13-3969E80949B3", + "name": "playlist-music-outline", + "codepoint": "F0CB9", + "aliases": [ + "playlist-note-outline", + "queue-music-outline" + ], + "tags": [], + "author": "Google", + "version": "3.2.89" + }, + { + "id": "313918D8-1CB9-40FC-B24F-3A974F1A6EAF", + "name": "playlist-play", + "codepoint": "F0411", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "350D7B60-3F36-4FB0-9959-B90625F5267C", + "name": "playlist-plus", + "codepoint": "F0412", + "aliases": [ + "playlist-add" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "526856F3-6DF1-454A-B905-3DA120370563", + "name": "playlist-remove", + "codepoint": "F0413", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "80A0AA10-9B8E-4AAA-BDEA-EDDADB94A7CC", + "name": "playlist-star", + "codepoint": "F0DF2", + "aliases": [ + "playlist-favorite" + ], + "tags": [], + "author": "Google", + "version": "3.5.94" + }, + { + "id": "D390D1E2-571E-49DB-BBB9-9D3821EAF819", + "name": "plex", + "codepoint": "F06BA", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.7.22" + }, + { + "id": "7AD950E9-0961-4D65-9B78-40FC56D5D206", + "name": "pliers", + "codepoint": "F19A4", + "aliases": [], + "tags": [ + "Hardware \/ Tools" + ], + "author": "Michael Irigoyen", + "version": "6.5.95" + }, + { + "id": "2DE4F8E6-F25C-4FCA-8405-109FA8918B78", + "name": "plus", + "codepoint": "F0415", + "aliases": [ + "add" + ], + "tags": [ + "Math" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "87EE041D-81D2-4F1A-A757-F76E9D8686EF", + "name": "plus-box", + "codepoint": "F0416", + "aliases": [ + "add-box" + ], + "tags": [ + "Math" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "BF1B666E-57AC-41B0-950B-4F4060BDF601", + "name": "plus-box-multiple", + "codepoint": "F0334", + "aliases": [ + "add-to-photos", + "library-add", + "queue", + "library-plus" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "910CB053-6597-49C2-A20D-EBC310D03364", + "name": "plus-box-multiple-outline", + "codepoint": "F1143", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "75A7BDE6-40BC-4938-AFCD-D4DDF1B65B2A", + "name": "plus-box-outline", + "codepoint": "F0704", + "aliases": [], + "tags": [ + "Math" + ], + "author": "Google", + "version": "1.8.36" + }, + { + "id": "0F76DADF-2A8D-4C1F-B43E-DC3C6D282BBF", + "name": "plus-circle", + "codepoint": "F0417", + "aliases": [ + "add-circle" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "93BBA1EA-76F8-4D2E-B4D0-98F684B15AC3", + "name": "plus-circle-multiple", + "codepoint": "F034C", + "aliases": [ + "coins-plus" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "1.5.54" + }, + { + "id": "0C5565E9-9E74-4E50-BF9E-6F904BB83E52", + "name": "plus-circle-multiple-outline", + "codepoint": "F0418", + "aliases": [ + "control-point-duplicate", + "plus-circles-outline", + "coins-plus-outline" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "EFB8C700-D60B-4995-B8DE-F3A3E2DA75F3", + "name": "plus-circle-outline", + "codepoint": "F0419", + "aliases": [ + "add-circle-outline", + "control-point", + "circles-add" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "34BDA78C-9BF6-441A-9924-E8619719C333", + "name": "plus-minus", + "codepoint": "F0992", + "aliases": [], + "tags": [ + "Math" + ], + "author": "Nick", + "version": "2.4.85" + }, + { + "id": "C8A8A7E4-7745-4CA1-A99B-724C2471CAF5", + "name": "plus-minus-box", + "codepoint": "F0993", + "aliases": [], + "tags": [ + "Math" + ], + "author": "Nick", + "version": "2.4.85" + }, + { + "id": "D86C99FA-DFA7-4DD2-9EB8-CBB094BD1366", + "name": "plus-minus-variant", + "codepoint": "F14C9", + "aliases": [], + "tags": [ + "Math" + ], + "author": "Austin Andrews", + "version": "5.3.45" + }, + { + "id": "14F6A9EC-BD40-4181-B084-05A9FCFA3973", + "name": "plus-network", + "codepoint": "F041A", + "aliases": [ + "add-network" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "349600D3-B39C-46C2-8E61-5A256C4BA98C", + "name": "plus-network-outline", + "codepoint": "F0CBA", + "aliases": [ + "add-network-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "680B6AD6-C9AD-44D1-9228-EDDB8C242343", + "name": "plus-outline", + "codepoint": "F0705", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "1.8.36" + }, + { + "id": "2FD9933D-7226-4745-B5DB-C8E6245FB170", + "name": "plus-thick", + "codepoint": "F11EC", + "aliases": [ + "add-thick", + "add-bold", + "plus-bold" + ], + "tags": [ + "Math" + ], + "author": "Austin Andrews", + "version": "4.5.95" + }, + { + "id": "56B37BA8-E973-4B53-812A-7F47BCFF217A", + "name": "podcast", + "codepoint": "F0994", + "aliases": [], + "tags": [], + "author": "Google", + "version": "2.4.85" + }, + { + "id": "9C9AF6D4-1E8A-414A-9935-B7B8BE9F0962", + "name": "podium", + "codepoint": "F0D25", + "aliases": [], + "tags": [ + "Sport" + ], + "author": "Michael Richins", + "version": "3.3.92" + }, + { + "id": "4F2BE6B3-071D-4EE3-8E86-71F0AF06619F", + "name": "podium-bronze", + "codepoint": "F0D26", + "aliases": [ + "podium-third" + ], + "tags": [ + "Sport" + ], + "author": "Michael Richins", + "version": "3.3.92" + }, + { + "id": "CB4B60CC-1B22-4288-997F-D59FE2AFC198", + "name": "podium-gold", + "codepoint": "F0D27", + "aliases": [ + "podium-first" + ], + "tags": [ + "Sport" + ], + "author": "Michael Richins", + "version": "3.3.92" + }, + { + "id": "FF783CFF-DD54-492C-A1E1-323AB6CAAFC1", + "name": "podium-silver", + "codepoint": "F0D28", + "aliases": [ + "podium-second" + ], + "tags": [ + "Sport" + ], + "author": "Michael Richins", + "version": "3.3.92" + }, + { + "id": "1DDDF76A-2C40-4BEE-87B1-0B95D4E233DA", + "name": "point-of-sale", + "codepoint": "F0D92", + "aliases": [], + "tags": [], + "author": "Alex Efremo", + "version": "3.4.93" + }, + { + "id": "48329A9B-7B16-469C-9D64-B2E9381620BF", + "name": "pokeball", + "codepoint": "F041D", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "A1D5B3DC-2A72-4548-AB36-985E98BB6FCE", + "name": "pokemon-go", + "codepoint": "F0A09", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Contributors", + "version": "2.5.94" + }, + { + "id": "D73F724D-EEE6-43EC-BA3A-E185ABD7A258", + "name": "poker-chip", + "codepoint": "F0830", + "aliases": [ + "casino-chip", + "gambling-chip" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Michael Richins", + "version": "2.1.19" + }, + { + "id": "8408CE08-26C2-49B9-95CE-C5A9AAF4455E", + "name": "polaroid", + "codepoint": "F041E", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "80E26409-5A5C-4BDC-9722-8A8CC6981B90", + "name": "police-badge", + "codepoint": "F1167", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "9262CC3D-85E6-4881-AE14-B760E93DBBFE", + "name": "police-badge-outline", + "codepoint": "F1168", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "E0ED9455-85A4-4C77-9C79-533CE242ABA5", + "name": "police-station", + "codepoint": "F1839", + "aliases": [], + "tags": [ + "Places" + ], + "author": "Colton Wiscombe", + "version": "6.2.95" + }, + { + "id": "C4A1DAE5-04E0-47EF-84D8-CB81FA58EF87", + "name": "poll", + "codepoint": "F041F", + "aliases": [ + "bar-chart", + "report", + "performance", + "analytics" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "5ACE4E72-9576-405A-A17F-314A1FF864C8", + "name": "polo", + "codepoint": "F14C3", + "aliases": [], + "tags": [ + "Sport" + ], + "author": "Google", + "version": "5.3.45" + }, + { + "id": "528FF16A-C55C-43F9-8E0B-3879A209AEDE", + "name": "polymer", + "codepoint": "F0421", + "aliases": [], + "tags": [ + "Brand \/ Logo", + "Developer \/ Languages" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "F42C2F0C-BEFC-46EB-A46C-665032BD6641", + "name": "pool", + "codepoint": "F0606", + "aliases": [ + "swimming-pool" + ], + "tags": [ + "Places", + "Home Automation" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "3401BCC7-DECF-4A92-9B6C-34AF063B2FED", + "name": "popcorn", + "codepoint": "F0422", + "aliases": [], + "tags": [ + "Food \/ Drink" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "9B1DF082-5266-408A-A057-92E9AEB81BFA", + "name": "post", + "codepoint": "F1008", + "aliases": [ + "blog" + ], + "tags": [], + "author": "Google", + "version": "4.0.96" + }, + { + "id": "A7CB61B3-B3C5-4EEE-AC94-D0B2347FFA1B", + "name": "post-outline", + "codepoint": "F1009", + "aliases": [ + "blog-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.0.96" + }, + { + "id": "D76042A4-6370-4DF4-BF35-B00BE339805A", + "name": "postage-stamp", + "codepoint": "F0CBB", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "3.2.89" + }, + { + "id": "267AF23F-D48A-493E-91BD-E78CD3EFCCBA", + "name": "pot", + "codepoint": "F02E5", + "aliases": [], + "tags": [ + "Food \/ Drink", + "Holiday" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "C264A721-9CFD-4AE5-BD97-404E7DCDC6C2", + "name": "pot-mix", + "codepoint": "F065B", + "aliases": [], + "tags": [ + "Food \/ Drink", + "Holiday" + ], + "author": "Simran", + "version": "1.6.50" + }, + { + "id": "857C302E-0AC9-438D-A8E5-DE3DC9680FAB", + "name": "pot-mix-outline", + "codepoint": "F0677", + "aliases": [], + "tags": [ + "Food \/ Drink", + "Holiday" + ], + "author": "Simran", + "version": "1.7.12" + }, + { + "id": "EB68865A-2308-4667-9B2F-C550923180A9", + "name": "pot-outline", + "codepoint": "F02FF", + "aliases": [], + "tags": [ + "Food \/ Drink", + "Holiday" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "444286FD-F41C-4945-BF9D-7C2913EC663E", + "name": "pot-steam", + "codepoint": "F065A", + "aliases": [], + "tags": [ + "Food \/ Drink", + "Holiday" + ], + "author": "Simran", + "version": "1.6.50" + }, + { + "id": "A6C14603-8189-4CC5-82CF-1231422B6F70", + "name": "pot-steam-outline", + "codepoint": "F0326", + "aliases": [], + "tags": [ + "Food \/ Drink", + "Holiday" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "9344AA1D-FF8B-432F-A314-C416DFA37F12", + "name": "pound", + "codepoint": "F0423", + "aliases": [ + "hashtag" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "597DF175-F0F5-4892-9F13-EA712DBC947E", + "name": "pound-box", + "codepoint": "F0424", + "aliases": [ + "hashtag-box" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "BC212E3B-C9D9-4FC5-B73B-DDA77D94A5C9", + "name": "pound-box-outline", + "codepoint": "F117F", + "aliases": [ + "hashtag-box-outline" + ], + "tags": [], + "author": "Michael Richins", + "version": "4.4.95" + }, + { + "id": "C945D203-9737-4C25-87CA-29D97B862DD2", + "name": "power", + "codepoint": "F0425", + "aliases": [ + "power-settings-new", + "shutdown" + ], + "tags": [ + "Home Automation" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "DD119EDC-92B2-48F6-8014-73AD2AB65DA7", + "name": "power-cycle", + "codepoint": "F0901", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "2.3.50" + }, + { + "id": "39D3928C-2739-4A57-A81C-3DF67328A160", + "name": "power-off", + "codepoint": "F0902", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "2.3.50" + }, + { + "id": "566141F9-DB64-4210-8384-EB77CFA9E8A0", + "name": "power-on", + "codepoint": "F0903", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "2.3.50" + }, + { + "id": "60E77DB8-2D58-462F-8512-41D9E0E42795", + "name": "power-plug", + "codepoint": "F06A5", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Google", + "version": "1.7.12" + }, + { + "id": "ACF38F54-4726-4F8F-9916-8C582137FA69", + "name": "power-plug-off", + "codepoint": "F06A6", + "aliases": [ + "power-off" + ], + "tags": [ + "Home Automation" + ], + "author": "Simran", + "version": "1.7.12" + }, + { + "id": "D4F5AEAB-DD00-4101-8661-13260BE9D087", + "name": "power-plug-off-outline", + "codepoint": "F1424", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "E439723C-E8DA-4BD6-8AE8-F944FD96B31D", + "name": "power-plug-outline", + "codepoint": "F1425", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "B5587844-E70A-4F55-A2DA-CE85D8F79689", + "name": "power-settings", + "codepoint": "F0426", + "aliases": [ + "settings-power" + ], + "tags": [ + "Settings" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "AA011772-1BE4-4E00-A838-9D0D1DCA2773", + "name": "power-sleep", + "codepoint": "F0904", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "2.3.50" + }, + { + "id": "175A9E67-3723-4D49-85EC-8D34B4BA0C14", + "name": "power-socket", + "codepoint": "F0427", + "aliases": [ + "plug-socket" + ], + "tags": [ + "Home Automation" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "CFCF8409-65AC-4E1C-885B-107F9D8B4413", + "name": "power-socket-au", + "codepoint": "F0905", + "aliases": [ + "plug-socket-au", + "power-socket-type-i", + "power-socket-cn", + "power-socket-ar", + "power-socket-nz", + "power-socket-pg", + "power-socket-australia", + "power-socket-china", + "power-socket-argentina", + "power-socket-new-zealand", + "power-socket-papua-new-guinea" + ], + "tags": [ + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "2.3.50" + }, + { + "id": "27B28F1C-C311-49C2-B3EE-6D288A9F1165", + "name": "power-socket-ch", + "codepoint": "F0FB3", + "aliases": [ + "plug-socket-ch", + "power-socket-type-j", + "plug-socket-type-j", + "power-socket-switzerland", + "plug-socket-switzerland" + ], + "tags": [ + "Home Automation" + ], + "author": "Stautob", + "version": "4.0.96" + }, + { + "id": "14654BFB-0D87-43E0-8A47-7CF1EE1CF418", + "name": "power-socket-de", + "codepoint": "F1107", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "4.3.95" + }, + { + "id": "07F4FD1C-A171-4088-BE30-53758CFF45E5", + "name": "power-socket-eu", + "codepoint": "F07E7", + "aliases": [ + "plug-socket-eu", + "power-socket-europe" + ], + "tags": [ + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "2.0.46" + }, + { + "id": "85338D53-181D-46E9-AEA7-D524B0DFBA4A", + "name": "power-socket-fr", + "codepoint": "F1108", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "4.3.95" + }, + { + "id": "D7106221-1ABC-4E8E-9345-E2B23D5D74B9", + "name": "power-socket-it", + "codepoint": "F14FF", + "aliases": [], + "tags": [], + "author": "Angelo Fan", + "version": "5.4.55" + }, + { + "id": "98D7A146-D68E-4E80-B8F1-5235DAECD976", + "name": "power-socket-jp", + "codepoint": "F1109", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Haley Halcyon", + "version": "4.3.95" + }, + { + "id": "E9F0AC95-A660-4FB1-BE5D-20153B709E15", + "name": "power-socket-uk", + "codepoint": "F07E8", + "aliases": [ + "plug-socket-uk", + "power-socket-type-g", + "power-socket-ie", + "power-socket-hk", + "power-socket-my", + "power-socket-cy", + "power-socket-mt", + "power-socket-sg", + "power-socket-united-kingdom", + "power-socket-ireland", + "power-socket-hong-kong", + "power-socket-malaysia", + "power-socket-cyprus", + "power-socket-malta", + "power-socket-singapore" + ], + "tags": [ + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "2.0.46" + }, + { + "id": "C4F7F8FF-3465-4F85-B615-B852A6919100", + "name": "power-socket-us", + "codepoint": "F07E9", + "aliases": [ + "plug-socket-us", + "power-socket-ca", + "power-socket-mx", + "power-socket-type-b", + "power-socket-united-states", + "power-socket-japan", + "power-socket-canada", + "power-socket-mexico" + ], + "tags": [ + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "2.0.46" + }, + { + "id": "3AC74CF9-0EC1-475D-A164-7C9CA0D48B58", + "name": "power-standby", + "codepoint": "F0906", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "2.3.50" + }, + { + "id": "2DB269A5-0CD6-4139-8C24-A4A1F7D96596", + "name": "powershell", + "codepoint": "F0A0A", + "aliases": [], + "tags": [], + "author": "Contributors", + "version": "2.5.94" + }, + { + "id": "DEF7F9EA-ACA8-452E-B587-6524BE7D67EE", + "name": "prescription", + "codepoint": "F0706", + "aliases": [], + "tags": [ + "Medical \/ Hospital" + ], + "author": "Roberto Graham", + "version": "1.8.36" + }, + { + "id": "DAEB5F87-858A-4677-B023-C9EC71F99F6C", + "name": "presentation", + "codepoint": "F0428", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "E182F4B3-B2B0-41CD-90DC-5ADFBE25DA90", + "name": "presentation-play", + "codepoint": "F0429", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "607F7E94-DBF5-4D5D-8F3A-5E1F90E1FF61", + "name": "pretzel", + "codepoint": "F1562", + "aliases": [], + "tags": [ + "Food \/ Drink" + ], + "author": "Nicolas Gres", + "version": "5.5.55" + }, + { + "id": "7365D689-4C10-4EBA-AD9A-09189B8091EE", + "name": "printer", + "codepoint": "F042A", + "aliases": [ + "local-printshop", + "local-print-shop" + ], + "tags": [ + "Printer", + "Home Automation" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "86A3D6B7-6C8B-4883-B51B-753DEF0F4A62", + "name": "printer-3d", + "codepoint": "F042B", + "aliases": [], + "tags": [ + "Printer", + "Home Automation" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "3A3AA67C-5DB4-40CA-9D0B-43843190CCDC", + "name": "printer-3d-nozzle", + "codepoint": "F0E5B", + "aliases": [], + "tags": [ + "Printer" + ], + "author": "Jon-Luke West", + "version": "3.6.95" + }, + { + "id": "5AB50A00-46F7-4294-8462-EDD32EA7309A", + "name": "printer-3d-nozzle-alert", + "codepoint": "F11C0", + "aliases": [], + "tags": [ + "Alert \/ Error" + ], + "author": "Austin Andrews", + "version": "4.5.95" + }, + { + "id": "5EEF9AB7-11DF-4612-A037-55705DA3AB19", + "name": "printer-3d-nozzle-alert-outline", + "codepoint": "F11C1", + "aliases": [], + "tags": [ + "Alert \/ Error" + ], + "author": "Austin Andrews", + "version": "4.5.95" + }, + { + "id": "EB4E1E2E-C462-43D0-8D25-4853F62A5397", + "name": "printer-3d-nozzle-heat", + "codepoint": "F18B8", + "aliases": [], + "tags": [ + "Printer" + ], + "author": "Kinetic Screen", + "version": "6.3.95" + }, + { + "id": "94D5AB5D-C507-4C0A-9C1C-A25C0ADCEC1E", + "name": "printer-3d-nozzle-heat-outline", + "codepoint": "F18B9", + "aliases": [], + "tags": [ + "Printer" + ], + "author": "Kinetic Screen", + "version": "6.3.95" + }, + { + "id": "7B1B16E0-AB42-490D-8D84-62B9AA0AB4BD", + "name": "printer-3d-nozzle-outline", + "codepoint": "F0E5C", + "aliases": [], + "tags": [ + "Printer" + ], + "author": "Jon-Luke West", + "version": "3.6.95" + }, + { + "id": "DD64AF52-2610-43D3-A992-9F3FCCB4A576", + "name": "printer-alert", + "codepoint": "F042C", + "aliases": [ + "printer-warning", + "paper-jam" + ], + "tags": [ + "Printer", + "Home Automation", + "Alert \/ Error" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "3C750D11-158A-4FED-A7A8-22B4D74DF4BC", + "name": "printer-check", + "codepoint": "F1146", + "aliases": [], + "tags": [ + "Printer" + ], + "author": "Terren", + "version": "4.4.95" + }, + { + "id": "22BB79BD-B17E-4002-923E-5B6766B967DC", + "name": "printer-eye", + "codepoint": "F1458", + "aliases": [ + "printer-preview", + "printer-view" + ], + "tags": [ + "Printer" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "328D470F-EEB4-486D-953B-6F84CE809C3C", + "name": "printer-off", + "codepoint": "F0E5D", + "aliases": [], + "tags": [ + "Printer" + ], + "author": "GreenTurtwig", + "version": "3.6.95" + }, + { + "id": "6AE8D5BF-CEFD-40DD-A764-9C9FFE38A003", + "name": "printer-off-outline", + "codepoint": "F1785", + "aliases": [], + "tags": [ + "Printer" + ], + "author": "Google", + "version": "6.1.95" + }, + { + "id": "514C36A5-3B40-4493-A1CE-275B9C482012", + "name": "printer-outline", + "codepoint": "F1786", + "aliases": [], + "tags": [ + "Printer" + ], + "author": "Google", + "version": "6.1.95" + }, + { + "id": "F9D30BAE-7AF6-4C02-83AD-18045895B8B0", + "name": "printer-pos", + "codepoint": "F1057", + "aliases": [ + "printer-point-of-sale" + ], + "tags": [ + "Printer" + ], + "author": "Michael Richins", + "version": "4.1.95" + }, + { + "id": "18383BEA-BF9A-43AD-87BB-F47CEC92F9C3", + "name": "printer-search", + "codepoint": "F1457", + "aliases": [ + "printer-preview", + "printer-magnify" + ], + "tags": [ + "Printer" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "33E4D9A3-F8C1-4C58-9E88-977AE4F4E4CA", + "name": "printer-settings", + "codepoint": "F0707", + "aliases": [], + "tags": [ + "Settings", + "Printer" + ], + "author": "Simran", + "version": "1.8.36" + }, + { + "id": "E9B8B42B-CA7D-4499-B610-CABBDCF51C0E", + "name": "printer-wireless", + "codepoint": "F0A0B", + "aliases": [], + "tags": [ + "Printer" + ], + "author": "Michael Richins", + "version": "2.5.94" + }, + { + "id": "FA96A5AC-D499-4C13-93C7-7A422A5DE4B7", + "name": "priority-high", + "codepoint": "F0603", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "DFC698A7-3040-48F4-A341-C1E667A4FE22", + "name": "priority-low", + "codepoint": "F0604", + "aliases": [ + "low-priority" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "53EA516B-544D-4DC3-90BD-3A5C4838923C", + "name": "professional-hexagon", + "codepoint": "F042D", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "82FBA8C9-B8BE-4CA6-883C-E07C36723627", + "name": "progress-alert", + "codepoint": "F0CBC", + "aliases": [ + "progress-warning" + ], + "tags": [ + "Alert \/ Error" + ], + "author": "Michael Richins", + "version": "3.2.89" + }, + { + "id": "943E027B-964A-4CE2-BDD7-44A9703A73B1", + "name": "progress-check", + "codepoint": "F0995", + "aliases": [ + "progress-tick" + ], + "tags": [], + "author": "GreenTurtwig", + "version": "2.4.85" + }, + { + "id": "D7A33F97-FA45-4719-901A-A1F91E671FC2", + "name": "progress-clock", + "codepoint": "F0996", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Peter Noble", + "version": "2.4.85" + }, + { + "id": "294CC691-6D3C-47DB-B142-8F4DE633DE92", + "name": "progress-close", + "codepoint": "F110A", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.3.95" + }, + { + "id": "9D94B21B-52A0-4F73-AEFB-85FEA76C8624", + "name": "progress-download", + "codepoint": "F0997", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "2.4.85" + }, + { + "id": "2434DDA0-2B39-428D-9764-E8F9A46BF22F", + "name": "progress-pencil", + "codepoint": "F1787", + "aliases": [], + "tags": [], + "author": "Teodor Sandu", + "version": "6.1.95" + }, + { + "id": "DBF80F38-9B3D-4390-B366-51827F97CC0F", + "name": "progress-question", + "codepoint": "F1522", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.4.55" + }, + { + "id": "FF05067C-B5B4-48B1-B63C-75D3CBB24E45", + "name": "progress-star", + "codepoint": "F1788", + "aliases": [], + "tags": [], + "author": "Teodor Sandu", + "version": "6.1.95" + }, + { + "id": "699B5A10-1C4C-448C-A3F4-36A3CACD82EA", + "name": "progress-upload", + "codepoint": "F0998", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "2.4.85" + }, + { + "id": "D0721C85-4507-43CE-8E0B-21522D641993", + "name": "progress-wrench", + "codepoint": "F0CBD", + "aliases": [ + "progress-spanner" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "D23095BD-C1C0-4FED-B114-CE9CF9DD5DB6", + "name": "projector", + "codepoint": "F042E", + "aliases": [], + "tags": [ + "Device \/ Tech", + "Home Automation" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "A152DD64-B013-4AE7-B89F-49FC90B2E471", + "name": "projector-screen", + "codepoint": "F042F", + "aliases": [], + "tags": [ + "Device \/ Tech", + "Home Automation" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "074F1A3B-91A7-47EE-8C68-8C3B64321AC2", + "name": "projector-screen-off", + "codepoint": "F180D", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "pp81381", + "version": "6.1.95" + }, + { + "id": "2E4DBF28-60B7-43E2-8786-376D26DDC431", + "name": "projector-screen-off-outline", + "codepoint": "F180E", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "pp81381", + "version": "6.1.95" + }, + { + "id": "F2AC4968-73F6-4D91-BF2B-D8653E6863E2", + "name": "projector-screen-outline", + "codepoint": "F1724", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "5.9.55" + }, + { + "id": "96090E84-D472-4A0E-B65C-27E1FAB4BCC8", + "name": "projector-screen-variant", + "codepoint": "F180F", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "pp81381", + "version": "6.1.95" + }, + { + "id": "BE2FFED1-BB12-4CBD-A809-7E5BEA984E2F", + "name": "projector-screen-variant-off", + "codepoint": "F1810", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "pp81381", + "version": "6.1.95" + }, + { + "id": "4EED4028-BD43-40F8-B087-D28BCB46DC3F", + "name": "projector-screen-variant-off-outline", + "codepoint": "F1811", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "pp81381", + "version": "6.1.95" + }, + { + "id": "DCA776E3-A4EF-4B2F-A3F4-D8BEC9236502", + "name": "projector-screen-variant-outline", + "codepoint": "F1812", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "pp81381", + "version": "6.1.95" + }, + { + "id": "F6911BCA-14B1-4DD4-9407-20E138FAB878", + "name": "propane-tank", + "codepoint": "F1357", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.9.95" + }, + { + "id": "03A9105D-F79F-454C-9EE2-4E96A1BBA908", + "name": "propane-tank-outline", + "codepoint": "F1358", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.9.95" + }, + { + "id": "16D49AC9-5D43-4401-980B-C9DF4593838A", + "name": "protocol", + "codepoint": "F0FD8", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "4.0.96" + }, + { + "id": "7E1AC29D-46E3-4C7C-9A00-D8803E502795", + "name": "publish", + "codepoint": "F06A7", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.7.12" + }, + { + "id": "57375CB0-5F7F-492E-BB25-3EE90669FE6D", + "name": "publish-off", + "codepoint": "F1945", + "aliases": [ + "publish-disabled" + ], + "tags": [ + "Arrow" + ], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "2A0F7B5D-5D23-4E76-B97D-9D2281D3C4EA", + "name": "pulse", + "codepoint": "F0430", + "aliases": [ + "vitals" + ], + "tags": [ + "Medical \/ Hospital" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "4FDD16EB-0E78-46BF-B077-A9C077C3C1B8", + "name": "pump", + "codepoint": "F1402", + "aliases": [], + "tags": [], + "author": "Anton Verburg", + "version": "5.1.45" + }, + { + "id": "CAA05089-AC62-40FF-96F1-82E34B93F18F", + "name": "pumpkin", + "codepoint": "F0BBF", + "aliases": [], + "tags": [ + "Holiday" + ], + "author": "Austin Andrews", + "version": "3.0.39" + }, + { + "id": "4B431C82-5923-49D9-8849-6E7EF6C7661D", + "name": "purse", + "codepoint": "F0F1C", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "3.8.95" + }, + { + "id": "16CB0045-C446-4384-8031-B3CEDDE555EE", + "name": "purse-outline", + "codepoint": "F0F1D", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "3.8.95" + }, + { + "id": "0773D18C-C6A2-41B5-9685-F3E0507E1770", + "name": "puzzle", + "codepoint": "F0431", + "aliases": [ + "extension", + "jigsaw" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "034B7820-702C-45F8-ABE3-473AC1770BB2", + "name": "puzzle-check", + "codepoint": "F1426", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Austin Andrews", + "version": "5.2.45" + }, + { + "id": "BA363BBC-F40B-4D14-B677-6FEFD1D48B87", + "name": "puzzle-check-outline", + "codepoint": "F1427", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Austin Andrews", + "version": "5.2.45" + }, + { + "id": "DA95A80F-202E-48F3-9BCD-302C5AAD3BA2", + "name": "puzzle-edit", + "codepoint": "F14D3", + "aliases": [], + "tags": [ + "Gaming \/ RPG", + "Edit \/ Modify" + ], + "author": "Michael Irigoyen", + "version": "5.3.45" + }, + { + "id": "824D28CA-335E-4C36-BAD7-8685FF2FB8A7", + "name": "puzzle-edit-outline", + "codepoint": "F14D9", + "aliases": [], + "tags": [ + "Gaming \/ RPG", + "Edit \/ Modify" + ], + "author": "Michael Irigoyen", + "version": "5.3.45" + }, + { + "id": "F489D7C7-0696-4970-86B0-6216D73177D0", + "name": "puzzle-heart", + "codepoint": "F14D4", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Michael Irigoyen", + "version": "5.3.45" + }, + { + "id": "B588380E-4BAD-4787-B699-906B8926068D", + "name": "puzzle-heart-outline", + "codepoint": "F14DA", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Michael Irigoyen", + "version": "5.3.45" + }, + { + "id": "8DAE6108-0411-473A-B835-528DC330D1DF", + "name": "puzzle-minus", + "codepoint": "F14D1", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Michael Irigoyen", + "version": "5.3.45" + }, + { + "id": "56014EED-5E51-46CE-B231-D48463CFBF30", + "name": "puzzle-minus-outline", + "codepoint": "F14D7", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Michael Irigoyen", + "version": "5.3.45" + }, + { + "id": "BBAC40CD-6A3A-4EEF-A381-DB7C8950995E", + "name": "puzzle-outline", + "codepoint": "F0A66", + "aliases": [ + "jigsaw-outline", + "extension-outline" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Google", + "version": "2.6.95" + }, + { + "id": "72A20545-216C-4CD8-B1E4-808B8B2B96B6", + "name": "puzzle-plus", + "codepoint": "F14D0", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Michael Irigoyen", + "version": "5.3.45" + }, + { + "id": "46577FE3-F2BF-4B41-B50D-3E6ABD7484B0", + "name": "puzzle-plus-outline", + "codepoint": "F14D6", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Michael Irigoyen", + "version": "5.3.45" + }, + { + "id": "29CE71EA-2734-48D2-9FFD-FEB8ADF50C12", + "name": "puzzle-remove", + "codepoint": "F14D2", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Michael Irigoyen", + "version": "5.3.45" + }, + { + "id": "05B602BB-4734-4D4B-A268-FE31171DBD66", + "name": "puzzle-remove-outline", + "codepoint": "F14D8", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Michael Irigoyen", + "version": "5.3.45" + }, + { + "id": "0DA18E4C-075B-4DE5-A428-31FB0BA791E4", + "name": "puzzle-star", + "codepoint": "F14D5", + "aliases": [ + "puzzle-favorite" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Michael Irigoyen", + "version": "5.3.45" + }, + { + "id": "72BEE187-7B9C-4106-92EA-CD040D56815F", + "name": "puzzle-star-outline", + "codepoint": "F14DB", + "aliases": [ + "puzzle-favorite-outline" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Michael Irigoyen", + "version": "5.3.45" + }, + { + "id": "EB4E13BA-AB0B-4D32-BAAE-2D37A685768B", + "name": "pyramid", + "codepoint": "F1952", + "aliases": [], + "tags": [ + "Shape" + ], + "author": "Colton Wiscombe", + "version": "6.4.95" + }, + { + "id": "2E5C5383-D159-4741-8970-2E9CCAD0D27D", + "name": "pyramid-off", + "codepoint": "F1953", + "aliases": [], + "tags": [ + "Shape" + ], + "author": "Colton Wiscombe", + "version": "6.4.95" + }, + { + "id": "1F897ED3-17CC-43F5-9A0B-F7804A8DFABF", + "name": "qi", + "codepoint": "F0999", + "aliases": [], + "tags": [], + "author": "Contributors", + "version": "2.4.85" + }, + { + "id": "6EAADAE4-30AE-4F69-888F-364BBAFFF5E7", + "name": "qqchat", + "codepoint": "F0605", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "779E7DDE-0ACE-4752-9966-22761E2A128A", + "name": "qrcode", + "codepoint": "F0432", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "603BF7E7-03A6-4141-8A50-CA124B62C621", + "name": "qrcode-edit", + "codepoint": "F08B8", + "aliases": [], + "tags": [ + "Edit \/ Modify" + ], + "author": "Michael Richins", + "version": "2.2.43" + }, + { + "id": "2DD6D091-2E48-41D6-A9E1-67BF485B103E", + "name": "qrcode-minus", + "codepoint": "F118C", + "aliases": [], + "tags": [], + "author": "Peter Noble", + "version": "4.4.95" + }, + { + "id": "B86DA56E-59D6-4B0B-BE63-D66496C8E6EB", + "name": "qrcode-plus", + "codepoint": "F118B", + "aliases": [], + "tags": [], + "author": "Peter Noble", + "version": "4.4.95" + }, + { + "id": "D41EE63E-AFC3-4A60-891F-841AF0AEBF22", + "name": "qrcode-remove", + "codepoint": "F118D", + "aliases": [], + "tags": [], + "author": "Peter Noble", + "version": "4.4.95" + }, + { + "id": "C8A7580B-5288-4A60-8033-797EB07A05AC", + "name": "qrcode-scan", + "codepoint": "F0433", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "E81082B7-E851-4407-B0D2-08CC105C6A5D", + "name": "quadcopter", + "codepoint": "F0434", + "aliases": [ + "drone" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "C07BA504-080D-4B47-AD4D-7F772E5C92F3", + "name": "quality-high", + "codepoint": "F0435", + "aliases": [ + "high-quality", + "hq" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "51E44ABD-8132-4758-905E-4F46784ED768", + "name": "quality-low", + "codepoint": "F0A0C", + "aliases": [ + "low-quality", + "lq" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "2.5.94" + }, + { + "id": "C987C0CA-2D23-427B-8F9C-F3E10B32156C", + "name": "quality-medium", + "codepoint": "F0A0D", + "aliases": [ + "medium-quality", + "mq" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "2.5.94" + }, + { + "id": "F4C8FDC5-0F7D-4EDA-8242-B356F5E542A4", + "name": "quora", + "codepoint": "F0D29", + "aliases": [], + "tags": [], + "author": "Contributors", + "version": "3.3.92" + }, + { + "id": "1D7338F8-4F44-43E3-906B-571178E63E49", + "name": "rabbit", + "codepoint": "F0907", + "aliases": [ + "bunny", + "hare" + ], + "tags": [ + "Animal" + ], + "author": "Augustin Ursu", + "version": "2.3.50" + }, + { + "id": "59B7D141-A76F-4794-A484-CE089FCF7C46", + "name": "racing-helmet", + "codepoint": "F0D93", + "aliases": [], + "tags": [ + "Sport" + ], + "author": "Google", + "version": "3.4.93" + }, + { + "id": "0E46DC98-E185-4B26-A4E9-FC1CEC750172", + "name": "racquetball", + "codepoint": "F0D94", + "aliases": [ + "lacrosse", + "squash" + ], + "tags": [ + "Sport" + ], + "author": "Google", + "version": "3.4.93" + }, + { + "id": "73BD6C2A-0D5B-4DF6-9FA3-EC489AFBF947", + "name": "radar", + "codepoint": "F0437", + "aliases": [ + "track-changes" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "BFFA61BF-959B-4E15-BE31-4D9AFB5E3FDF", + "name": "radiator", + "codepoint": "F0438", + "aliases": [ + "heater" + ], + "tags": [ + "Home Automation" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "79B0F153-88BE-4FCD-94CB-E44D648DAAE2", + "name": "radiator-disabled", + "codepoint": "F0AD7", + "aliases": [ + "heater-disabled" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "2.7.94" + }, + { + "id": "F1BF1F5D-82C7-41EA-B9CD-325265C3D760", + "name": "radiator-off", + "codepoint": "F0AD8", + "aliases": [ + "heater-off" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "2.7.94" + }, + { + "id": "2FA21C1E-99C3-4C9B-AF46-8DF6B9F2A8FC", + "name": "radio", + "codepoint": "F0439", + "aliases": [], + "tags": [ + "Audio", + "Device \/ Tech" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "D0AEFF89-C011-4445-B685-A1366099D920", + "name": "radio-am", + "codepoint": "F0CBE", + "aliases": [], + "tags": [ + "Audio" + ], + "author": "Michael Richins", + "version": "3.2.89" + }, + { + "id": "55BADC53-06EE-4199-8761-80AF2240DE1D", + "name": "radio-fm", + "codepoint": "F0CBF", + "aliases": [], + "tags": [ + "Audio" + ], + "author": "Michael Richins", + "version": "3.2.89" + }, + { + "id": "6EE69D5F-CF42-4257-B974-470E397E0DC1", + "name": "radio-handheld", + "codepoint": "F043A", + "aliases": [], + "tags": [ + "Device \/ Tech" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "B39962EE-105B-4093-9B4C-6078FEA43DA2", + "name": "radio-off", + "codepoint": "F121C", + "aliases": [], + "tags": [], + "author": "zoara", + "version": "4.6.95" + }, + { + "id": "8E5FC366-E9F8-40ED-A16D-CD6C87B0C5B1", + "name": "radio-tower", + "codepoint": "F043B", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "D70016AF-1FEE-4E66-8D51-3DE1BAAC0031", + "name": "radioactive", + "codepoint": "F043C", + "aliases": [ + "radiation" + ], + "tags": [ + "Science" + ], + "author": "Yasmina Lembachar", + "version": "1.5.54" + }, + { + "id": "DBCBBE8F-7DFA-4C05-8A2C-8BDE851A0322", + "name": "radioactive-circle", + "codepoint": "F185D", + "aliases": [ + "radiation-circle" + ], + "tags": [ + "Science" + ], + "author": "Michael Miday", + "version": "6.2.95" + }, + { + "id": "1C482356-F93E-46FB-B4FF-6142BB859A7F", + "name": "radioactive-circle-outline", + "codepoint": "F185E", + "aliases": [ + "radiation-circle-outline" + ], + "tags": [ + "Science" + ], + "author": "Michael Miday", + "version": "6.2.95" + }, + { + "id": "3AD51A23-9040-4D23-AE50-B28C6DFF82F6", + "name": "radioactive-off", + "codepoint": "F0EC1", + "aliases": [ + "radiation-off" + ], + "tags": [ + "Science" + ], + "author": "TheChilliPL", + "version": "3.7.94" + }, + { + "id": "10BF2326-3190-4C27-9040-E2F8F4961238", + "name": "radiobox-blank", + "codepoint": "F043D", + "aliases": [ + "radio-button-unchecked" + ], + "tags": [ + "Form" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "BA101E5E-CDA9-45AA-B249-BD176AF11D95", + "name": "radiobox-marked", + "codepoint": "F043E", + "aliases": [ + "radio-button-checked", + "record" + ], + "tags": [ + "Form" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "17B9888B-F36F-4D44-9318-BBB6ADA0F61B", + "name": "radiology-box", + "codepoint": "F14C5", + "aliases": [ + "x-ray-box" + ], + "tags": [ + "Medical \/ Hospital" + ], + "author": "Simran", + "version": "5.3.45" + }, + { + "id": "75708207-7E52-443D-B1DE-5BA088AED95E", + "name": "radiology-box-outline", + "codepoint": "F14C6", + "aliases": [ + "x-ray-box-outline" + ], + "tags": [ + "Medical \/ Hospital" + ], + "author": "Michael Irigoyen", + "version": "5.3.45" + }, + { + "id": "DFD4C66B-CD4A-4524-A6DB-E3C2331C5DC6", + "name": "radius", + "codepoint": "F0CC0", + "aliases": [ + "circle-radius", + "sphere-radius" + ], + "tags": [ + "Math" + ], + "author": "Michael Richins", + "version": "3.2.89" + }, + { + "id": "51C82800-F946-45C3-A88B-B5D52BD6B80B", + "name": "radius-outline", + "codepoint": "F0CC1", + "aliases": [ + "circle-radius-outline", + "sphere-radius-outline" + ], + "tags": [ + "Math" + ], + "author": "Michael Richins", + "version": "3.2.89" + }, + { + "id": "7FC3FA6E-ED0B-4BCD-AF44-1125CC2CE3C4", + "name": "railroad-light", + "codepoint": "F0F1E", + "aliases": [], + "tags": [ + "Transportation + Other" + ], + "author": "Michael Richins", + "version": "3.8.95" + }, + { + "id": "0523157C-6328-499C-A114-FDAD94CFDDAE", + "name": "rake", + "codepoint": "F1544", + "aliases": [], + "tags": [ + "Hardware \/ Tools" + ], + "author": "Michael Irigoyen", + "version": "5.4.55" + }, + { + "id": "AFC49CE3-9442-4F15-B3EE-6C841A226040", + "name": "raspberry-pi", + "codepoint": "F043F", + "aliases": [ + "raspberrypi" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "935371AF-0FF0-4D1E-86F8-DB6E5C5510F9", + "name": "ray-end", + "codepoint": "F0440", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "16DEE563-B4C3-4B6D-A47F-B23151965007", + "name": "ray-end-arrow", + "codepoint": "F0441", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "932F0926-4F5D-4ACA-B4E3-461837361212", + "name": "ray-start", + "codepoint": "F0442", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "5D6F58F7-61B8-4461-B284-4B0D6B031CA2", + "name": "ray-start-arrow", + "codepoint": "F0443", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "0C572F61-2EF1-4F4D-9B53-8FE285BC0BFB", + "name": "ray-start-end", + "codepoint": "F0444", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "B911CCA3-1237-45C3-BCE1-34CB034F8739", + "name": "ray-start-vertex-end", + "codepoint": "F15D8", + "aliases": [], + "tags": [], + "author": "Google", + "version": "5.6.55" + }, + { + "id": "B391C303-5456-4746-83DD-7862952E281E", + "name": "ray-vertex", + "codepoint": "F0445", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "5BA6A47A-C308-46D9-B991-1B79CDF92000", + "name": "razor-double-edge", + "codepoint": "F1997", + "aliases": [], + "tags": [ + "Health \/ Beauty" + ], + "author": "Simran", + "version": "6.5.95" + }, + { + "id": "FE06C355-A6BB-464A-9B7D-B07CE7D551FC", + "name": "razor-single-edge", + "codepoint": "F1998", + "aliases": [], + "tags": [ + "Hardware \/ Tools" + ], + "author": "Michael Irigoyen", + "version": "6.5.95" + }, + { + "id": "F13DC81C-DF03-4A33-99D6-489FBDB5B29C", + "name": "react", + "codepoint": "F0708", + "aliases": [], + "tags": [ + "Brand \/ Logo", + "Developer \/ Languages" + ], + "author": "Contributors", + "version": "1.8.36" + }, + { + "id": "36EB4754-ADCF-47B6-9863-4EFFB819FC93", + "name": "read", + "codepoint": "F0447", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "80E9E435-2478-4B48-99B8-D8BEF353AE5F", + "name": "receipt", + "codepoint": "F0449", + "aliases": [ + "invoice" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "C5A53971-FD74-4C82-8CA6-9C1216713365", + "name": "receipt-outline", + "codepoint": "F19DC", + "aliases": [ + "invoice-outline" + ], + "tags": [], + "author": "Google", + "version": "6.6.95" + }, + { + "id": "F84F1E59-868C-42CE-80EA-159588E83462", + "name": "record", + "codepoint": "F044A", + "aliases": [ + "fiber-manual-record" + ], + "tags": [ + "Home Automation" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "4B8F147B-1AE7-4CB5-BAD1-4F6793B79303", + "name": "record-circle", + "codepoint": "F0EC2", + "aliases": [], + "tags": [], + "author": "Peter Noble", + "version": "3.7.94" + }, + { + "id": "E9D05E0B-362E-4D08-A812-D8A6C8D8F0DB", + "name": "record-circle-outline", + "codepoint": "F0EC3", + "aliases": [], + "tags": [], + "author": "Peter Noble", + "version": "3.7.94" + }, + { + "id": "E62E5C13-5DC0-4881-BBD6-EFDEF13B73BB", + "name": "record-player", + "codepoint": "F099A", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Austin Andrews", + "version": "2.4.85" + }, + { + "id": "8C452244-41D8-46F9-AF74-665F62EF5E50", + "name": "record-rec", + "codepoint": "F044B", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "795894B8-2599-4FC8-9B4C-0A0896C6BBB4", + "name": "rectangle", + "codepoint": "F0E5E", + "aliases": [], + "tags": [ + "Shape" + ], + "author": "Terren", + "version": "3.6.95" + }, + { + "id": "14FABBBE-A903-4400-AC7A-338B46DA0342", + "name": "rectangle-outline", + "codepoint": "F0E5F", + "aliases": [], + "tags": [ + "Shape" + ], + "author": "Terren", + "version": "3.6.95" + }, + { + "id": "93C67522-76EA-4A1D-8C9D-29B0901BE55A", + "name": "recycle", + "codepoint": "F044C", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "E4222CF9-9449-4325-A296-1E2897AF0720", + "name": "recycle-variant", + "codepoint": "F139D", + "aliases": [], + "tags": [], + "author": "Moma Design Studio", + "version": "5.0.45" + }, + { + "id": "8CDBB9B4-921B-47CC-9A06-D0F391666654", + "name": "reddit", + "codepoint": "F044D", + "aliases": [], + "tags": [ + "Social Media", + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "C225AD71-CD53-4F22-8A24-7D055457E5A5", + "name": "redhat", + "codepoint": "F111B", + "aliases": [], + "tags": [], + "author": "Contributors", + "version": "4.3.95" + }, + { + "id": "7061BAB7-4413-4666-A919-9DD8C4F405F9", + "name": "redo", + "codepoint": "F044E", + "aliases": [ + "arrow" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "72717CF3-6D1D-4032-9799-1F553CAD067E", + "name": "redo-variant", + "codepoint": "F044F", + "aliases": [ + "arrow" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "345B3651-D634-4069-8D6F-CB4A2CAD63B9", + "name": "reflect-horizontal", + "codepoint": "F0A0E", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "2.5.94" + }, + { + "id": "998E1E1F-98A2-4DA8-9FAD-E31C2677B8D6", + "name": "reflect-vertical", + "codepoint": "F0A0F", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "2.5.94" + }, + { + "id": "AD3C7A2B-0B64-4183-9452-C96EAAF3E08E", + "name": "refresh", + "codepoint": "F0450", + "aliases": [ + "loop" + ], + "tags": [ + "Arrow" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "AD1242A1-160E-4DF0-9E29-15F0A0ECF974", + "name": "refresh-auto", + "codepoint": "F18F2", + "aliases": [ + "auto-start", + "automatic-start", + "auto-stop", + "automatic-stop", + "automatic", + "refresh-automatic" + ], + "tags": [ + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "6.3.95" + }, + { + "id": "9D88AEE3-9749-4B74-8F60-2995BD811AAA", + "name": "refresh-circle", + "codepoint": "F1377", + "aliases": [], + "tags": [], + "author": "Fran\u00e7ois Risoud", + "version": "4.9.95" + }, + { + "id": "3313CE4A-E2EF-4E46-8110-C0BF297D0C16", + "name": "regex", + "codepoint": "F0451", + "aliases": [ + "regular-expression" + ], + "tags": [], + "author": "Doug C. Hardester", + "version": "1.5.54" + }, + { + "id": "7FDB507F-A062-479D-8401-AFD4B723BA60", + "name": "registered-trademark", + "codepoint": "F0A67", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "2.6.95" + }, + { + "id": "DBD21D6F-818C-46D0-860A-89257B1BAB90", + "name": "reiterate", + "codepoint": "F1588", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Nicolas Gres", + "version": "5.5.55" + }, + { + "id": "FF422947-C9DA-45C1-BEBF-47A450A035CA", + "name": "relation-many-to-many", + "codepoint": "F1496", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Michael Richins", + "version": "5.3.45" + }, + { + "id": "DC16CBA8-F156-4EF8-A18C-56A0DBA8B2D5", + "name": "relation-many-to-one", + "codepoint": "F1497", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Michael Richins", + "version": "5.3.45" + }, + { + "id": "A7E9839D-C578-4FE4-ABEB-84FA70BC1926", + "name": "relation-many-to-one-or-many", + "codepoint": "F1498", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Michael Richins", + "version": "5.3.45" + }, + { + "id": "2F3ABDAA-9F84-45DC-8913-51EEE0769D13", + "name": "relation-many-to-only-one", + "codepoint": "F1499", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Michael Richins", + "version": "5.3.45" + }, + { + "id": "187F026D-5528-4DDB-AEDD-B921AD57DEEF", + "name": "relation-many-to-zero-or-many", + "codepoint": "F149A", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Michael Richins", + "version": "5.3.45" + }, + { + "id": "0389409A-7A71-49DC-8296-2F38C2A6E7FE", + "name": "relation-many-to-zero-or-one", + "codepoint": "F149B", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Michael Richins", + "version": "5.3.45" + }, + { + "id": "C3AABB15-5720-463D-B37C-4552C1F4BE34", + "name": "relation-one-or-many-to-many", + "codepoint": "F149C", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Michael Richins", + "version": "5.3.45" + }, + { + "id": "5EABC280-A332-4EA2-A6EE-D5D1E5DE6812", + "name": "relation-one-or-many-to-one", + "codepoint": "F149D", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Michael Richins", + "version": "5.3.45" + }, + { + "id": "F6B51EA0-D90A-4B65-9B0C-8AD08392C943", + "name": "relation-one-or-many-to-one-or-many", + "codepoint": "F149E", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Michael Richins", + "version": "5.3.45" + }, + { + "id": "2DC9A1E1-BE10-4643-B02E-7DE27F7F140C", + "name": "relation-one-or-many-to-only-one", + "codepoint": "F149F", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Michael Richins", + "version": "5.3.45" + }, + { + "id": "E19D3A76-6993-4948-8F18-F777E3CA7383", + "name": "relation-one-or-many-to-zero-or-many", + "codepoint": "F14A0", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Michael Richins", + "version": "5.3.45" + }, + { + "id": "F7CAF815-B3D6-490B-8AC6-B2FAB8F5134D", + "name": "relation-one-or-many-to-zero-or-one", + "codepoint": "F14A1", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Michael Richins", + "version": "5.3.45" + }, + { + "id": "9FCECCB1-41CC-4569-9912-58256B627F37", + "name": "relation-one-to-many", + "codepoint": "F14A2", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Michael Richins", + "version": "5.3.45" + }, + { + "id": "BDF61FAA-2D63-4114-93A8-5E13404E7B03", + "name": "relation-one-to-one", + "codepoint": "F14A3", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Michael Richins", + "version": "5.3.45" + }, + { + "id": "757670CA-87BA-452B-A0D9-ECBB3EF21AA8", + "name": "relation-one-to-one-or-many", + "codepoint": "F14A4", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Michael Richins", + "version": "5.3.45" + }, + { + "id": "56A95C81-F579-4D28-A5E5-32F44CF67BD3", + "name": "relation-one-to-only-one", + "codepoint": "F14A5", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Michael Richins", + "version": "5.3.45" + }, + { + "id": "0FC49382-3ED0-437F-8522-29C5F5352C30", + "name": "relation-one-to-zero-or-many", + "codepoint": "F14A6", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Michael Richins", + "version": "5.3.45" + }, + { + "id": "543B9D69-53A1-4DC3-8074-86123BC0CC70", + "name": "relation-one-to-zero-or-one", + "codepoint": "F14A7", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Michael Richins", + "version": "5.3.45" + }, + { + "id": "55569D10-FC5C-4E3C-8A35-876DCC12D543", + "name": "relation-only-one-to-many", + "codepoint": "F14A8", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Michael Richins", + "version": "5.3.45" + }, + { + "id": "26A310F2-347A-45E5-AD73-1D92443A1827", + "name": "relation-only-one-to-one", + "codepoint": "F14A9", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Michael Richins", + "version": "5.3.45" + }, + { + "id": "57C9B4B7-CE27-4769-9D2F-50926D1F1A29", + "name": "relation-only-one-to-one-or-many", + "codepoint": "F14AA", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Michael Richins", + "version": "5.3.45" + }, + { + "id": "23DF7622-E2D4-45E0-A646-CA10B71EBC10", + "name": "relation-only-one-to-only-one", + "codepoint": "F14AB", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Michael Richins", + "version": "5.3.45" + }, + { + "id": "53287B7C-9B73-48F6-B558-BBFC529D1D48", + "name": "relation-only-one-to-zero-or-many", + "codepoint": "F14AC", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Michael Richins", + "version": "5.3.45" + }, + { + "id": "F93B3000-FF04-4374-94AB-7E703AE780AD", + "name": "relation-only-one-to-zero-or-one", + "codepoint": "F14AD", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Michael Richins", + "version": "5.3.45" + }, + { + "id": "3F67D802-700C-4692-9B30-88129AF5C954", + "name": "relation-zero-or-many-to-many", + "codepoint": "F14AE", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Michael Richins", + "version": "5.3.45" + }, + { + "id": "8884AF49-A6E9-4442-A648-72C365E8B7B8", + "name": "relation-zero-or-many-to-one", + "codepoint": "F14AF", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Michael Richins", + "version": "5.3.45" + }, + { + "id": "DB4A4065-5FCF-4563-A725-7FF82BF05524", + "name": "relation-zero-or-many-to-one-or-many", + "codepoint": "F14B0", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Michael Richins", + "version": "5.3.45" + }, + { + "id": "D5FECDF0-F04F-40DA-A4EE-5F1659883460", + "name": "relation-zero-or-many-to-only-one", + "codepoint": "F14B1", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Michael Richins", + "version": "5.3.45" + }, + { + "id": "1E86EED5-2458-46D6-8AD0-E14DC65FE7FA", + "name": "relation-zero-or-many-to-zero-or-many", + "codepoint": "F14B2", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Michael Richins", + "version": "5.3.45" + }, + { + "id": "26C96921-576B-42F4-B424-2E3F3FF83346", + "name": "relation-zero-or-many-to-zero-or-one", + "codepoint": "F14B3", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Michael Richins", + "version": "5.3.45" + }, + { + "id": "C09E5EAE-BC42-480C-842F-EBADFD035886", + "name": "relation-zero-or-one-to-many", + "codepoint": "F14B4", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Michael Richins", + "version": "5.3.45" + }, + { + "id": "E262BBDE-079C-4DF6-8C5C-00F9FB3503B5", + "name": "relation-zero-or-one-to-one", + "codepoint": "F14B5", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Michael Richins", + "version": "5.3.45" + }, + { + "id": "4A6CE6A7-7F49-42E3-8EC5-DEA80D1A2559", + "name": "relation-zero-or-one-to-one-or-many", + "codepoint": "F14B6", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Michael Richins", + "version": "5.3.45" + }, + { + "id": "78BC5AAC-0D19-49F6-AF3F-523739CA933C", + "name": "relation-zero-or-one-to-only-one", + "codepoint": "F14B7", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Michael Richins", + "version": "5.3.45" + }, + { + "id": "79676BBB-E83B-4661-AEAB-E3FC622BDD00", + "name": "relation-zero-or-one-to-zero-or-many", + "codepoint": "F14B8", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Michael Richins", + "version": "5.3.45" + }, + { + "id": "1B446467-7655-425C-A7C1-ED97D7599D80", + "name": "relation-zero-or-one-to-zero-or-one", + "codepoint": "F14B9", + "aliases": [], + "tags": [ + "Database" + ], + "author": "Michael Richins", + "version": "5.3.45" + }, + { + "id": "912AD329-9B77-4959-9407-0F64BABFAC7D", + "name": "relative-scale", + "codepoint": "F0452", + "aliases": [ + "image-aspect-ratio" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "8E25B2CE-4DAF-4BD1-9D3F-27F86DA55D21", + "name": "reload", + "codepoint": "F0453", + "aliases": [ + "car-engine-start", + "loop", + "rotate-clockwise" + ], + "tags": [ + "Automotive", + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "01D5FD19-E2FA-4BD0-9F6C-ECA058F469F1", + "name": "reload-alert", + "codepoint": "F110B", + "aliases": [], + "tags": [ + "Alert \/ Error" + ], + "author": "Michael Irigoyen", + "version": "4.3.95" + }, + { + "id": "1BD93F0A-87D1-4B55-A0EF-D9F05A8B3826", + "name": "reminder", + "codepoint": "F088C", + "aliases": [], + "tags": [], + "author": "Google", + "version": "2.1.99" + }, + { + "id": "49C7BBC2-6C7F-442E-A6EE-B58AB758A8D4", + "name": "remote", + "codepoint": "F0454", + "aliases": [ + "settings-remote" + ], + "tags": [ + "Home Automation" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "A237199B-0B22-475F-93D1-DB45FA4D3205", + "name": "remote-desktop", + "codepoint": "F08B9", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "2.2.43" + }, + { + "id": "6DC5640C-42D8-45A0-8CEC-B78E045600FE", + "name": "remote-off", + "codepoint": "F0EC4", + "aliases": [], + "tags": [], + "author": "idevo89", + "version": "3.7.94" + }, + { + "id": "7B245C49-09E7-425A-AFF2-714E9634436E", + "name": "remote-tv", + "codepoint": "F0EC5", + "aliases": [], + "tags": [ + "Device \/ Tech" + ], + "author": "GreenTurtwig", + "version": "3.7.94" + }, + { + "id": "D0485B00-63FF-44F5-8DE2-480F970D5ADD", + "name": "remote-tv-off", + "codepoint": "F0EC6", + "aliases": [], + "tags": [ + "Device \/ Tech" + ], + "author": "idevo89", + "version": "3.7.94" + }, + { + "id": "1DFADA84-47E4-40EF-B1F8-D0A34D1482BA", + "name": "rename-box", + "codepoint": "F0455", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "08CB23B7-EC19-4FE5-9CBB-C308CC89C10B", + "name": "reorder-horizontal", + "codepoint": "F0688", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.7.12" + }, + { + "id": "F189DB12-9323-47A1-89C9-451EF2A886CB", + "name": "reorder-vertical", + "codepoint": "F0689", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.7.12" + }, + { + "id": "9AEE0CB7-46B9-414F-A8A8-AFB127CB7057", + "name": "repeat", + "codepoint": "F0456", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "06540FC6-0AF2-40C7-895A-B8C98BD143D1", + "name": "repeat-off", + "codepoint": "F0457", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "D27E266C-5F69-4E4F-9DE3-65A47B5208F5", + "name": "repeat-once", + "codepoint": "F0458", + "aliases": [ + "repeat-one" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "2788034C-2A06-46C0-82B9-A34CB23C88E0", + "name": "repeat-variant", + "codepoint": "F0547", + "aliases": [ + "twitter-retweet" + ], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "A15D2CB0-E938-4894-8BF3-BC6C628E6433", + "name": "replay", + "codepoint": "F0459", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "CC3BEE2C-0FEA-46D2-BC53-F7D248AAF47C", + "name": "reply", + "codepoint": "F045A", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "0BDA0697-946D-4B4C-AD02-2FC6ECA4A528", + "name": "reply-all", + "codepoint": "F045B", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "C89953B0-3E41-4F03-B0C3-4ED8F96C1234", + "name": "reply-all-outline", + "codepoint": "F0F1F", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Michael Irigoyen", + "version": "3.8.95" + }, + { + "id": "25084C11-A1EE-4158-BC41-5E80E00E837E", + "name": "reply-circle", + "codepoint": "F11AE", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Michael Irigoyen", + "version": "4.5.95" + }, + { + "id": "7FBB6798-7E14-45FC-973A-8F4FD184F92A", + "name": "reply-outline", + "codepoint": "F0F20", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Michael Irigoyen", + "version": "3.8.95" + }, + { + "id": "A522A51F-EE61-473F-97D6-9D5106FD11CA", + "name": "reproduction", + "codepoint": "F045C", + "aliases": [], + "tags": [ + "Medical \/ Hospital" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "37D62FB9-6BB0-49D6-8C3E-DF75338DD275", + "name": "resistor", + "codepoint": "F0B44", + "aliases": [], + "tags": [], + "author": "Louistwee", + "version": "2.8.94" + }, + { + "id": "8DB0A5C4-31AD-42A8-A42E-4690B20D5AA0", + "name": "resistor-nodes", + "codepoint": "F0B45", + "aliases": [], + "tags": [], + "author": "Louistwee", + "version": "2.8.94" + }, + { + "id": "5D2EF9DD-38C1-4D2B-A24B-7270C66A6667", + "name": "resize", + "codepoint": "F0A68", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "2.6.95" + }, + { + "id": "84916A68-B413-4D71-B4E7-5FD64914B354", + "name": "resize-bottom-right", + "codepoint": "F045D", + "aliases": [ + "drag" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "0C72C131-779D-460F-A059-B9DF2B79E40C", + "name": "responsive", + "codepoint": "F045E", + "aliases": [], + "tags": [], + "author": "Gabriel", + "version": "1.5.54" + }, + { + "id": "15954B5D-3ADA-4B6B-BE15-F95B6A5D4659", + "name": "restart", + "codepoint": "F0709", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.8.36" + }, + { + "id": "08CBB3AA-B72C-4381-A295-37EC2550AF63", + "name": "restart-alert", + "codepoint": "F110C", + "aliases": [], + "tags": [ + "Alert \/ Error" + ], + "author": "Michael Irigoyen", + "version": "4.3.95" + }, + { + "id": "CE31B2C3-939B-4039-9ADC-797509A68F35", + "name": "restart-off", + "codepoint": "F0D95", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.4.93" + }, + { + "id": "FF1CAAB4-2192-442F-88F1-08DEB67E21F0", + "name": "restore", + "codepoint": "F099B", + "aliases": [ + "loop", + "rotate-counter-clockwise" + ], + "tags": [ + "Arrow" + ], + "author": "Google", + "version": "2.4.85" + }, + { + "id": "A9EF3AB2-700F-422A-AE07-0F6C3DB5BDB6", + "name": "restore-alert", + "codepoint": "F110D", + "aliases": [], + "tags": [ + "Alert \/ Error" + ], + "author": "Michael Irigoyen", + "version": "4.3.95" + }, + { + "id": "28BCDF41-AA93-4C25-B87A-95A3F5DD8805", + "name": "rewind", + "codepoint": "F045F", + "aliases": [ + "fast-rewind" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "3A7C53D9-B7BB-49A7-9393-38F16B0F5D52", + "name": "rewind-10", + "codepoint": "F0D2A", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "3.3.92" + }, + { + "id": "2DB4A76F-04DC-4E7A-88F0-72C936921B48", + "name": "rewind-15", + "codepoint": "F1946", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "21F6D751-0E5A-41F8-980C-2C4385A59CC4", + "name": "rewind-30", + "codepoint": "F0D96", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "3.4.93" + }, + { + "id": "167E7244-A6F8-400E-8CF7-F71B3FAEEEBE", + "name": "rewind-5", + "codepoint": "F11F9", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "4.6.95" + }, + { + "id": "7C7A1566-44FB-4A53-AE61-95F5A03F6978", + "name": "rewind-60", + "codepoint": "F160C", + "aliases": [], + "tags": [], + "author": "Terren", + "version": "5.6.55" + }, + { + "id": "61E83433-F6D1-442D-9EDE-EDEF27AB789D", + "name": "rewind-outline", + "codepoint": "F070A", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.8.36" + }, + { + "id": "68CFD178-A6FE-4DB5-9C39-FCA6A3EA83A5", + "name": "rhombus", + "codepoint": "F070B", + "aliases": [ + "diamond" + ], + "tags": [ + "Shape" + ], + "author": "Michael Irigoyen", + "version": "1.8.36" + }, + { + "id": "F6FA48B9-85C9-4287-8883-6A549AC290D2", + "name": "rhombus-medium", + "codepoint": "F0A10", + "aliases": [], + "tags": [ + "Shape" + ], + "author": "Michael Irigoyen", + "version": "2.5.94" + }, + { + "id": "01D071A4-DA5C-4735-A72F-53D0B8EC9EDF", + "name": "rhombus-medium-outline", + "codepoint": "F14DC", + "aliases": [], + "tags": [ + "Shape" + ], + "author": "Simran", + "version": "5.3.45" + }, + { + "id": "101A7558-A38E-48E8-93EA-A21F37238E78", + "name": "rhombus-outline", + "codepoint": "F070C", + "aliases": [ + "diamond-outline" + ], + "tags": [ + "Shape" + ], + "author": "Michael Irigoyen", + "version": "1.8.36" + }, + { + "id": "A19BB3EC-ED3D-41C6-9088-ACB372959E01", + "name": "rhombus-split", + "codepoint": "F0A11", + "aliases": [ + "collection" + ], + "tags": [ + "Shape" + ], + "author": "Michael Irigoyen", + "version": "2.5.94" + }, + { + "id": "E9499838-BF7F-48DB-843A-F98796B0D8BB", + "name": "rhombus-split-outline", + "codepoint": "F14DD", + "aliases": [], + "tags": [ + "Shape" + ], + "author": "Simran", + "version": "5.3.45" + }, + { + "id": "1C09CB9B-162B-486B-966C-1FCB18C0F633", + "name": "ribbon", + "codepoint": "F0460", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "B90B4B7C-9FDD-427A-834C-F3DFB5EC1823", + "name": "rice", + "codepoint": "F07EA", + "aliases": [], + "tags": [ + "Food \/ Drink" + ], + "author": "Colton Wiscombe", + "version": "2.0.46" + }, + { + "id": "5B4966BE-753B-4777-A8D8-B67B3BC57C0D", + "name": "rickshaw", + "codepoint": "F15BB", + "aliases": [], + "tags": [ + "Transportation + Road", + "Transportation + Other" + ], + "author": "nilsfast", + "version": "5.6.55" + }, + { + "id": "8869DCB9-04E3-41B9-B56C-D4BC5CF2DD7A", + "name": "rickshaw-electric", + "codepoint": "F15BC", + "aliases": [], + "tags": [ + "Transportation + Road", + "Transportation + Other" + ], + "author": "nilsfast", + "version": "5.6.55" + }, + { + "id": "7D845AED-5EA2-44C0-8F38-6A2C4E08C8A3", + "name": "ring", + "codepoint": "F07EB", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "2.0.46" + }, + { + "id": "DA8B7A3A-5971-4875-AA0A-ED17E8A69E22", + "name": "rivet", + "codepoint": "F0E60", + "aliases": [], + "tags": [ + "Hardware \/ Tools" + ], + "author": "Simran", + "version": "3.6.95" + }, + { + "id": "2AA1C93A-17BE-4BB6-A85C-C477A4FF1069", + "name": "road", + "codepoint": "F0461", + "aliases": [], + "tags": [ + "Transportation + Road" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "0BBDD64A-3C67-43DD-9B3A-580E12DDA2D7", + "name": "road-variant", + "codepoint": "F0462", + "aliases": [], + "tags": [ + "Transportation + Road" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "45B05AE1-4E78-431F-AAB3-669A72AED11E", + "name": "robber", + "codepoint": "F1058", + "aliases": [], + "tags": [], + "author": "Andrew Nenakhov", + "version": "4.1.95" + }, + { + "id": "EC6C8D3D-0315-4C3A-B37A-97411758DF34", + "name": "robot", + "codepoint": "F06A9", + "aliases": [ + "emoji-robot", + "emoticon-robot" + ], + "tags": [ + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "1.7.12" + }, + { + "id": "D77B4057-E06B-49B7-BBC7-DD4A7B39BC2A", + "name": "robot-angry", + "codepoint": "F169D", + "aliases": [ + "emoji-robot-angry", + "emoticon-robot-angry" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "D922E043-E4B6-4FAA-9717-51C1935DD20A", + "name": "robot-angry-outline", + "codepoint": "F169E", + "aliases": [ + "emoji-robot-angry-outline", + "emoticon-robot-angry-outline" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "535C4A09-5555-45A6-8409-BF12E1CDA2DE", + "name": "robot-confused", + "codepoint": "F169F", + "aliases": [ + "emoji-robot-confused", + "emoticon-robot-confused" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "8361794A-9B3E-44CA-9AA4-EA842227D7C2", + "name": "robot-confused-outline", + "codepoint": "F16A0", + "aliases": [ + "emoji-robot-confused-outline", + "emoticon-robot-confused-outline" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "04405E02-7C38-409E-8F92-785431ECC76F", + "name": "robot-dead", + "codepoint": "F16A1", + "aliases": [ + "emoji-robot-dead", + "emoticon-robot-dead" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "15D146E0-3683-43D8-8500-905EEAC98010", + "name": "robot-dead-outline", + "codepoint": "F16A2", + "aliases": [ + "emoji-robot-dead-outline", + "emoticon-robot-dead-outline" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "B32D5968-FE0C-46FB-916E-52D0103DA2C7", + "name": "robot-excited", + "codepoint": "F16A3", + "aliases": [ + "emoticon-robot-excited", + "emoji-robot-excited" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "8013E3FE-34B6-49F3-919B-85A5E0A5873C", + "name": "robot-excited-outline", + "codepoint": "F16A4", + "aliases": [ + "emoji-robot-excited-outline", + "emoticon-robot-excited-outline" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "6AE4D050-1B64-4AAB-B57B-DD738276E82F", + "name": "robot-happy", + "codepoint": "F1719", + "aliases": [ + "emoji-robot-happy", + "emoticon-robot-happy" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "62023A79-6DF7-4B3B-BDCA-FEEAE73C9F89", + "name": "robot-happy-outline", + "codepoint": "F171A", + "aliases": [ + "emoji-robot-happy-outline", + "emoticon-robot-happy-outline" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "C008FBCE-4D0A-4003-8811-FF15D08C3313", + "name": "robot-industrial", + "codepoint": "F0B46", + "aliases": [ + "autonomous", + "assembly" + ], + "tags": [], + "author": "Michael Richins", + "version": "2.8.94" + }, + { + "id": "2EFA6B95-27BD-4A52-90AF-991A3574FD2C", + "name": "robot-love", + "codepoint": "F16A5", + "aliases": [ + "emoji-robot-love", + "emoticon-robot-love" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "FA128C47-3C41-4B0D-8F18-8E28E9F3EA0C", + "name": "robot-love-outline", + "codepoint": "F16A6", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "2029DE02-EC25-4242-945F-D7495F35D071", + "name": "robot-mower", + "codepoint": "F11F7", + "aliases": [ + "lawn-mower" + ], + "tags": [ + "Home Automation" + ], + "author": "Kristian Mohl", + "version": "4.6.95" + }, + { + "id": "D40FCE9F-E14E-4F2E-83BD-39704B38E446", + "name": "robot-mower-outline", + "codepoint": "F11F3", + "aliases": [ + "lawn-mower-outline" + ], + "tags": [ + "Home Automation" + ], + "author": "Kristian Mohl", + "version": "4.5.95" + }, + { + "id": "B62D8FF2-AF07-4D20-8C8B-93E585EF6EFB", + "name": "robot-off", + "codepoint": "F16A7", + "aliases": [ + "emoji-robot-off", + "emoticon-robot-off" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "0BA0757D-0E1F-4484-86AF-7476790AE21C", + "name": "robot-off-outline", + "codepoint": "F167B", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "C0F3E15B-2DFB-4EAF-B41A-2D18EEA22C25", + "name": "robot-outline", + "codepoint": "F167A", + "aliases": [ + "emoji-robot-outline", + "emoticon-robot-outline" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "E091C285-7AA8-4907-9398-EBFDAC7A179D", + "name": "robot-vacuum", + "codepoint": "F070D", + "aliases": [ + "roomba" + ], + "tags": [ + "Device \/ Tech", + "Home Automation" + ], + "author": "Roberto Graham", + "version": "1.8.36" + }, + { + "id": "C7938632-FA58-4686-9B82-5E9CCDD0EC83", + "name": "robot-vacuum-variant", + "codepoint": "F0908", + "aliases": [ + "neato" + ], + "tags": [ + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "2.3.50" + }, + { + "id": "96BE0E43-42AB-4F93-8045-0C7B61BF69CC", + "name": "rocket", + "codepoint": "F0463", + "aliases": [], + "tags": [ + "Transportation + Flying", + "Science" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "E2791217-9CAB-41CA-9899-9BD0964B4DF9", + "name": "rocket-launch", + "codepoint": "F14DE", + "aliases": [], + "tags": [ + "Science", + "Transportation + Flying" + ], + "author": "Michael Irigoyen", + "version": "5.3.45" + }, + { + "id": "F6DA21B8-C4AD-48D1-9F97-9A59F721956B", + "name": "rocket-launch-outline", + "codepoint": "F14DF", + "aliases": [], + "tags": [ + "Science", + "Transportation + Flying" + ], + "author": "Michael Irigoyen", + "version": "5.3.45" + }, + { + "id": "934FA95E-C5B3-4A5E-B99D-85B0E65CBDBA", + "name": "rocket-outline", + "codepoint": "F13AF", + "aliases": [], + "tags": [ + "Science", + "Transportation + Flying" + ], + "author": "Google", + "version": "5.0.45" + }, + { + "id": "AA8B7EA9-2DB2-4591-94E0-A457373E64C1", + "name": "rodent", + "codepoint": "F1327", + "aliases": [ + "mouse", + "rat" + ], + "tags": [ + "Animal" + ], + "author": "Google", + "version": "4.9.95" + }, + { + "id": "6EFB213D-87A6-454A-AB37-AB87CE853E4B", + "name": "roller-skate", + "codepoint": "F0D2B", + "aliases": [], + "tags": [ + "Sport" + ], + "author": "Michael Irigoyen", + "version": "3.3.92" + }, + { + "id": "A6387660-7DB0-41DC-9ECF-EBBA5A78FC82", + "name": "roller-skate-off", + "codepoint": "F0145", + "aliases": [], + "tags": [ + "Sport" + ], + "author": "Michael Irigoyen", + "version": "1.5.54" + }, + { + "id": "366C920F-6DC6-46FF-94C6-44A8D22A7D1D", + "name": "rollerblade", + "codepoint": "F0D2C", + "aliases": [], + "tags": [ + "Sport" + ], + "author": "Michael Irigoyen", + "version": "3.3.92" + }, + { + "id": "BC1934AD-28E6-4E7C-8C7E-1557CE482CCB", + "name": "rollerblade-off", + "codepoint": "F002E", + "aliases": [], + "tags": [ + "Sport" + ], + "author": "Michael Irigoyen", + "version": "1.5.54" + }, + { + "id": "9BBAB3C0-02B2-436A-94C8-0EBD388289D8", + "name": "rollupjs", + "codepoint": "F0BC0", + "aliases": [ + "rollup-js" + ], + "tags": [ + "Brand \/ Logo", + "Developer \/ Languages" + ], + "author": "Contributors", + "version": "3.0.39" + }, + { + "id": "7E900912-C3AE-4D82-BCF0-1162ACC7EB15", + "name": "roman-numeral-1", + "codepoint": "F1088", + "aliases": [], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "4.2.95" + }, + { + "id": "76685845-20ED-49A8-A8ED-EA967F25B5CF", + "name": "roman-numeral-10", + "codepoint": "F1091", + "aliases": [], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "4.2.95" + }, + { + "id": "4C14E293-1951-4481-9ECC-3D868B764444", + "name": "roman-numeral-2", + "codepoint": "F1089", + "aliases": [], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Michael Irigoyen", + "version": "4.2.95" + }, + { + "id": "6594655A-5BB0-43B5-B3BD-CF04D4B59562", + "name": "roman-numeral-3", + "codepoint": "F108A", + "aliases": [], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Michael Irigoyen", + "version": "4.2.95" + }, + { + "id": "9D572A82-B0D2-4961-B467-32AD78FF551C", + "name": "roman-numeral-4", + "codepoint": "F108B", + "aliases": [], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Michael Irigoyen", + "version": "4.2.95" + }, + { + "id": "EF5F2939-4E4A-4688-B7F5-DD6BC5C14CD1", + "name": "roman-numeral-5", + "codepoint": "F108C", + "aliases": [], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Contributors", + "version": "4.2.95" + }, + { + "id": "8E746FAF-3C9D-48B9-8378-A73EAB7C69F4", + "name": "roman-numeral-6", + "codepoint": "F108D", + "aliases": [], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Michael Irigoyen", + "version": "4.2.95" + }, + { + "id": "D725A70F-2F5D-43B1-99B5-A70220CCAD7A", + "name": "roman-numeral-7", + "codepoint": "F108E", + "aliases": [], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Michael Irigoyen", + "version": "4.2.95" + }, + { + "id": "CD729113-BA16-44AE-A012-D8C5BE2D2D7F", + "name": "roman-numeral-8", + "codepoint": "F108F", + "aliases": [], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Michael Irigoyen", + "version": "4.2.95" + }, + { + "id": "A53BFEB9-4F94-42AA-928D-0A0A28A44FD9", + "name": "roman-numeral-9", + "codepoint": "F1090", + "aliases": [], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Michael Irigoyen", + "version": "4.2.95" + }, + { + "id": "C525BD2B-2BA8-4158-AC0A-FAEE9E353047", + "name": "room-service", + "codepoint": "F088D", + "aliases": [], + "tags": [], + "author": "Google", + "version": "2.1.99" + }, + { + "id": "A94493FF-30FD-4490-8ABC-F6F03F958D17", + "name": "room-service-outline", + "codepoint": "F0D97", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.4.93" + }, + { + "id": "38F235DA-809D-4F32-B88E-870A02826E75", + "name": "rotate-360", + "codepoint": "F1999", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Google", + "version": "6.5.95" + }, + { + "id": "E288FD83-7397-4DF3-BAB8-DF7094955B83", + "name": "rotate-3d", + "codepoint": "F0EC7", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.7.94" + }, + { + "id": "D09D0551-14A0-470B-A24C-0AC38F739FFA", + "name": "rotate-3d-variant", + "codepoint": "F0464", + "aliases": [ + "3d-rotation" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "1E960D83-0632-47D2-8CC9-D8A137887BAB", + "name": "rotate-left", + "codepoint": "F0465", + "aliases": [ + "arrow-rotate-left" + ], + "tags": [ + "Arrow" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "CC6E0E23-9F7B-40F5-B00F-0690A5F7B400", + "name": "rotate-left-variant", + "codepoint": "F0466", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "41DBDBBC-7E7A-4E2A-A7E9-A22707957334", + "name": "rotate-orbit", + "codepoint": "F0D98", + "aliases": [ + "gyro", + "accelerometer" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.4.93" + }, + { + "id": "5324E881-FACF-4CAC-9118-FD963EDCDD27", + "name": "rotate-right", + "codepoint": "F0467", + "aliases": [ + "arrow-rotate-right" + ], + "tags": [ + "Arrow" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "02105B39-715B-4989-93DC-1DDC338A4552", + "name": "rotate-right-variant", + "codepoint": "F0468", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "FEBD153A-F07E-4329-A727-D75F13F3133D", + "name": "rounded-corner", + "codepoint": "F0607", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "7D8AE8B4-4A72-45DE-9EA7-B4B6502C0FDD", + "name": "router", + "codepoint": "F11E2", + "aliases": [], + "tags": [], + "author": "sergiocarlotto", + "version": "4.5.95" + }, + { + "id": "8CCE5060-8983-4F75-B672-32B7599F1082", + "name": "router-network", + "codepoint": "F1087", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "4.2.95" + }, + { + "id": "3244EAC8-8349-4CFB-BE35-A0812368CEDA", + "name": "router-wireless", + "codepoint": "F0469", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "E6CF3E53-C5EF-48AF-BA3B-AD339E6A3FA3", + "name": "router-wireless-off", + "codepoint": "F15A3", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.5.55" + }, + { + "id": "3881E4FA-15D1-4051-991C-B4B4F0791576", + "name": "router-wireless-settings", + "codepoint": "F0A69", + "aliases": [], + "tags": [ + "Settings" + ], + "author": "Google", + "version": "2.6.95" + }, + { + "id": "4E7234E7-AB5F-491D-BA6F-674B3BAD9027", + "name": "routes", + "codepoint": "F046A", + "aliases": [ + "sign-routes" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "70E2EE84-23BF-4C5A-9AE7-06D1156042CA", + "name": "routes-clock", + "codepoint": "F1059", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Fran\u00e7ois Risoud", + "version": "4.1.95" + }, + { + "id": "72F11BA0-1557-4500-8235-2E3F2346FE69", + "name": "rowing", + "codepoint": "F0608", + "aliases": [], + "tags": [ + "Sport", + "Transportation + Water" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "9E877D76-9BC5-496D-99E4-1E6029DE1B4D", + "name": "rss", + "codepoint": "F046B", + "aliases": [ + "rss-feed" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "649343BD-3C91-43EA-9000-AE10520CAA2D", + "name": "rss-box", + "codepoint": "F046C", + "aliases": [ + "rss-feed-box" + ], + "tags": [], + "author": "Gabriel", + "version": "1.5.54" + }, + { + "id": "45AA2B72-8538-41CB-BAD4-20C43E40D21C", + "name": "rss-off", + "codepoint": "F0F21", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "3.8.95" + }, + { + "id": "C43D28FD-C647-41B4-A710-E8FFE81D8EAF", + "name": "rug", + "codepoint": "F1475", + "aliases": [ + "carpet" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Richins", + "version": "5.2.45" + }, + { + "id": "19489FCE-DD25-4670-BC6F-4FC3AF1E66D3", + "name": "rugby", + "codepoint": "F0D99", + "aliases": [ + "rugby-ball" + ], + "tags": [ + "Sport" + ], + "author": "Google", + "version": "3.4.93" + }, + { + "id": "66A2EA92-0743-4740-B3F2-254C38E9027F", + "name": "ruler", + "codepoint": "F046D", + "aliases": [], + "tags": [ + "Hardware \/ Tools", + "Drawing \/ Art" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "A94D1ED1-576F-4E2C-B165-ABAD797E8192", + "name": "ruler-square", + "codepoint": "F0CC2", + "aliases": [ + "square", + "carpentry", + "architecture" + ], + "tags": [ + "Hardware \/ Tools", + "Drawing \/ Art" + ], + "author": "Michael Richins", + "version": "3.2.89" + }, + { + "id": "2E24CF4F-2EC9-46C2-ABB9-341869D562EE", + "name": "ruler-square-compass", + "codepoint": "F0EBE", + "aliases": [ + "mason", + "masonic", + "freemasonry" + ], + "tags": [ + "Hardware \/ Tools" + ], + "author": "Michael Richins", + "version": "3.7.94" + }, + { + "id": "2A869029-60EB-4965-9BE4-9B3DB964C707", + "name": "run", + "codepoint": "F070E", + "aliases": [ + "directions-run" + ], + "tags": [ + "Sport" + ], + "author": "Google", + "version": "1.8.36" + }, + { + "id": "D541EB73-227A-419B-A5F7-7242EB02D916", + "name": "run-fast", + "codepoint": "F046E", + "aliases": [], + "tags": [ + "Home Automation", + "Sport" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "43C3E250-2842-4973-8D19-CA1E48BCF61C", + "name": "rv-truck", + "codepoint": "F11D4", + "aliases": [ + "recreational-vehicle", + "campervan" + ], + "tags": [ + "Transportation + Road" + ], + "author": "Michael Richins", + "version": "4.5.95" + }, + { + "id": "025FEA9C-17F9-4293-BD59-A8D53B7B4124", + "name": "sack", + "codepoint": "F0D2E", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Michael Irigoyen", + "version": "3.3.92" + }, + { + "id": "9DA8E933-0065-43E6-9416-0EAA104BEF6F", + "name": "sack-percent", + "codepoint": "F0D2F", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.3.92" + }, + { + "id": "013E121E-A100-48D2-941B-854832E70793", + "name": "safe", + "codepoint": "F0A6A", + "aliases": [], + "tags": [ + "Banking" + ], + "author": "GreenTurtwig", + "version": "2.6.95" + }, + { + "id": "B12FE612-BEB7-45A2-BB7D-B04C6F33AE1B", + "name": "safe-square", + "codepoint": "F127C", + "aliases": [], + "tags": [], + "author": "Yaroslav Bandura", + "version": "4.7.95" + }, + { + "id": "6F471894-793E-4F7F-848D-CE2AA2F4C67D", + "name": "safe-square-outline", + "codepoint": "F127D", + "aliases": [], + "tags": [], + "author": "Yaroslav Bandura", + "version": "4.7.95" + }, + { + "id": "438888DA-342B-4861-95EA-026A3F4E2F95", + "name": "safety-goggles", + "codepoint": "F0D30", + "aliases": [ + "safety-glasses" + ], + "tags": [ + "Science" + ], + "author": "Michael Irigoyen", + "version": "3.3.92" + }, + { + "id": "F1921E38-A25D-41F6-94B6-B6D01C3E0593", + "name": "sail-boat", + "codepoint": "F0EC8", + "aliases": [ + "sailing", + "boat" + ], + "tags": [ + "Sport", + "Transportation + Water" + ], + "author": "Google", + "version": "3.7.94" + }, + { + "id": "688543EC-EC01-474C-883C-C2EA2EDE75BF", + "name": "sale", + "codepoint": "F046F", + "aliases": [ + "discount" + ], + "tags": [], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "D7963D7C-396F-45DB-A5D7-AA18AE32FE53", + "name": "salesforce", + "codepoint": "F088E", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "2.1.99" + }, + { + "id": "2AFE6E3E-61AB-48D2-A333-E5324AD534CD", + "name": "sass", + "codepoint": "F07EC", + "aliases": [], + "tags": [ + "Brand \/ Logo", + "Developer \/ Languages" + ], + "author": "Contributors", + "version": "2.0.46" + }, + { + "id": "D77BED79-19CC-45A9-9940-5EB621E95C11", + "name": "satellite", + "codepoint": "F0470", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "9627DDC0-A33C-4B0E-A14F-915809E377AA", + "name": "satellite-uplink", + "codepoint": "F0909", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "2.3.50" + }, + { + "id": "3945E491-7E92-4A9F-BD2A-C436200B3716", + "name": "satellite-variant", + "codepoint": "F0471", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "191AE0C8-5DBD-4B51-8D52-2872CA89E376", + "name": "sausage", + "codepoint": "F08BA", + "aliases": [], + "tags": [ + "Food \/ Drink" + ], + "author": "Nick", + "version": "2.2.43" + }, + { + "id": "AA9C348E-83F3-4EC8-87D5-0E7C8BAAA2DB", + "name": "sausage-off", + "codepoint": "F1789", + "aliases": [], + "tags": [ + "Food \/ Drink" + ], + "author": "SvenVdv", + "version": "6.1.95" + }, + { + "id": "65F29350-AC15-4F53-B3D0-B7304BA8791A", + "name": "saw-blade", + "codepoint": "F0E61", + "aliases": [], + "tags": [ + "Hardware \/ Tools" + ], + "author": "Michael Irigoyen", + "version": "3.6.95" + }, + { + "id": "2C8473E2-22E8-4E6E-B929-99D2FCE9937B", + "name": "sawtooth-wave", + "codepoint": "F147A", + "aliases": [], + "tags": [ + "Audio" + ], + "author": "Haley Halcyon", + "version": "5.2.45" + }, + { + "id": "64F494E1-5B39-488D-B46E-0FC1B9567478", + "name": "saxophone", + "codepoint": "F0609", + "aliases": [], + "tags": [ + "Music" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "3FE1D769-A292-44DB-BB8A-E60F3A020D2A", + "name": "scale", + "codepoint": "F0472", + "aliases": [], + "tags": [ + "Food \/ Drink", + "Science" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "82048BA4-F949-4572-B59B-23197F9B36D6", + "name": "scale-balance", + "codepoint": "F05D1", + "aliases": [ + "justice", + "legal" + ], + "tags": [ + "Science" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "F4501EC3-6AB0-4A69-B840-F07DDFC45A19", + "name": "scale-bathroom", + "codepoint": "F0473", + "aliases": [], + "tags": [ + "Home Automation", + "Medical \/ Hospital" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "69824E77-BE70-49EB-9F26-C06042E86F1D", + "name": "scale-off", + "codepoint": "F105A", + "aliases": [], + "tags": [ + "Science" + ], + "author": "Michael Richins", + "version": "4.1.95" + }, + { + "id": "18C68B6F-89AD-4F9D-B0AF-AF6185C86AD6", + "name": "scale-unbalanced", + "codepoint": "F19B8", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.5.95" + }, + { + "id": "C74BA4DC-A838-471E-AA2D-A5C2D0B74BF3", + "name": "scan-helper", + "codepoint": "F13D8", + "aliases": [], + "tags": [], + "author": "Peter Noble", + "version": "5.1.45" + }, + { + "id": "BE9A1BD3-1DF7-407F-98B7-24070994D472", + "name": "scanner", + "codepoint": "F06AB", + "aliases": [], + "tags": [ + "Device \/ Tech" + ], + "author": "Google", + "version": "1.7.12" + }, + { + "id": "B2E1C852-B55A-40D0-969B-0CD7389660A4", + "name": "scanner-off", + "codepoint": "F090A", + "aliases": [], + "tags": [ + "Device \/ Tech" + ], + "author": "GreenTurtwig", + "version": "2.3.50" + }, + { + "id": "5DE8E9D7-420A-43BE-AF94-B1364BC46D41", + "name": "scatter-plot", + "codepoint": "F0EC9", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.7.94" + }, + { + "id": "C438C63A-0E60-4EA8-B795-EE6D329253F1", + "name": "scatter-plot-outline", + "codepoint": "F0ECA", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.7.94" + }, + { + "id": "B473C27C-5557-4B1F-89F1-46DC7700E73A", + "name": "scent", + "codepoint": "F1958", + "aliases": [ + "aroma", + "fragrance", + "smell", + "odor" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "2263B3A2-8BC3-4E1B-B86F-46E9E7CAA92A", + "name": "scent-off", + "codepoint": "F1959", + "aliases": [ + "aroma-off", + "smell-off", + "fragrance-off", + "odor-off" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "A671C11E-0A75-4F41-AA32-EAA99955DEDE", + "name": "school", + "codepoint": "F0474", + "aliases": [ + "graduation-cap", + "university", + "college", + "academic-cap", + "education", + "learn" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "282BA7AF-AFFD-491F-BA34-8DFD88378AFF", + "name": "school-outline", + "codepoint": "F1180", + "aliases": [ + "academic-cap-outline", + "college-outline", + "graduation-cap-outline", + "university-outline", + "education-outline", + "learn-outline" + ], + "tags": [], + "author": "Google", + "version": "4.4.95" + }, + { + "id": "D5D8FF62-F955-4DB5-8EC3-1C314F401ECD", + "name": "scissors-cutting", + "codepoint": "F0A6B", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "2.6.95" + }, + { + "id": "0299DD49-341B-4979-91A9-FB3BF6AEFB87", + "name": "scooter", + "codepoint": "F15BD", + "aliases": [], + "tags": [ + "Transportation + Other" + ], + "author": "Google", + "version": "5.6.55" + }, + { + "id": "09653048-04BF-4EDE-A6F5-7DAAE4157D21", + "name": "scooter-electric", + "codepoint": "F15BE", + "aliases": [], + "tags": [ + "Transportation + Other" + ], + "author": "Google", + "version": "5.6.55" + }, + { + "id": "C20508AC-CC67-48DF-9B05-72DE40E417AF", + "name": "scoreboard", + "codepoint": "F127E", + "aliases": [], + "tags": [ + "Sport" + ], + "author": "Yaroslav Bandura", + "version": "4.7.95" + }, + { + "id": "3E4214BB-1283-436F-A658-7F6015745C88", + "name": "scoreboard-outline", + "codepoint": "F127F", + "aliases": [], + "tags": [ + "Sport" + ], + "author": "Yaroslav Bandura", + "version": "4.7.95" + }, + { + "id": "913EA106-BCB3-410B-A5F4-6FAAA1B79880", + "name": "screen-rotation", + "codepoint": "F0475", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "0C15E49D-5D29-4A3D-803B-0B9695295E04", + "name": "screen-rotation-lock", + "codepoint": "F0478", + "aliases": [ + "screen-lock-rotation" + ], + "tags": [ + "Lock" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "744539B5-EC00-481D-9A78-274A157CF130", + "name": "screw-flat-top", + "codepoint": "F0DF3", + "aliases": [], + "tags": [ + "Hardware \/ Tools" + ], + "author": "Michael Irigoyen", + "version": "3.5.94" + }, + { + "id": "34D5E55D-131E-4EB2-9053-53B10F6F40D5", + "name": "screw-lag", + "codepoint": "F0DF4", + "aliases": [], + "tags": [ + "Hardware \/ Tools" + ], + "author": "Michael Irigoyen", + "version": "3.5.94" + }, + { + "id": "AD403C97-C12B-4590-A156-EEF43629F655", + "name": "screw-machine-flat-top", + "codepoint": "F0DF5", + "aliases": [], + "tags": [ + "Hardware \/ Tools" + ], + "author": "Michael Irigoyen", + "version": "3.5.94" + }, + { + "id": "C19DAE9D-F5EE-4968-99AD-7F1C55B6ACB4", + "name": "screw-machine-round-top", + "codepoint": "F0DF6", + "aliases": [], + "tags": [ + "Hardware \/ Tools" + ], + "author": "Michael Irigoyen", + "version": "3.5.94" + }, + { + "id": "AC9042F5-C2D0-4C97-AA6E-C364026950B0", + "name": "screw-round-top", + "codepoint": "F0DF7", + "aliases": [], + "tags": [ + "Hardware \/ Tools" + ], + "author": "Michael Irigoyen", + "version": "3.5.94" + }, + { + "id": "2F75C2DC-FAAD-4D59-BAAB-3922EF9AF376", + "name": "screwdriver", + "codepoint": "F0476", + "aliases": [], + "tags": [ + "Hardware \/ Tools" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "89D63ACC-0EB2-4C0C-BAFF-65846D32B937", + "name": "script", + "codepoint": "F0BC1", + "aliases": [ + "scroll" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Michael Irigoyen", + "version": "3.0.39" + }, + { + "id": "6E18A0EA-1F19-47E3-83DD-25732C1D318D", + "name": "script-outline", + "codepoint": "F0477", + "aliases": [ + "scroll-outline" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "100A6987-09AC-4A60-B6D6-E9DA1E4FCBCE", + "name": "script-text", + "codepoint": "F0BC2", + "aliases": [ + "scroll-text" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Michael Irigoyen", + "version": "3.0.39" + }, + { + "id": "2789A595-8195-448F-BD8A-2FB71B712BD8", + "name": "script-text-key", + "codepoint": "F1725", + "aliases": [], + "tags": [], + "author": "Claire Casaregola", + "version": "5.9.55" + }, + { + "id": "1343F1A4-86DB-432D-BE9D-F3EFEB1321F8", + "name": "script-text-key-outline", + "codepoint": "F1726", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.9.55" + }, + { + "id": "DF9F9175-8E37-4241-8AFD-360606A444A5", + "name": "script-text-outline", + "codepoint": "F0BC3", + "aliases": [ + "scroll-text-outline" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Austin Andrews", + "version": "3.0.39" + }, + { + "id": "0F931BB6-3336-430E-85C2-9EDEDCC4E9B4", + "name": "script-text-play", + "codepoint": "F1727", + "aliases": [], + "tags": [], + "author": "Claire Casaregola", + "version": "5.9.55" + }, + { + "id": "7357F674-281E-49F1-8161-424877AC6DD3", + "name": "script-text-play-outline", + "codepoint": "F1728", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.9.55" + }, + { + "id": "68B68EDB-6CDA-4488-A213-5E6DF4146EA6", + "name": "sd", + "codepoint": "F0479", + "aliases": [ + "sd-card", + "sd-storage" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "82C413A0-A055-4527-87B7-F977B6CD3F74", + "name": "seal", + "codepoint": "F047A", + "aliases": [ + "ribbon", + "prize", + "award" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "9B878309-6513-4C41-B2F5-B69D24F6024B", + "name": "seal-variant", + "codepoint": "F0FD9", + "aliases": [ + "ribbon", + "prize", + "award" + ], + "tags": [], + "author": "Tarilonte", + "version": "4.0.96" + }, + { + "id": "F6E7F332-1625-4A46-8E10-B6DEC4059E7E", + "name": "search-web", + "codepoint": "F070F", + "aliases": [ + "search-globe", + "global-search", + "internet-search" + ], + "tags": [], + "author": "Michael Richins", + "version": "1.8.36" + }, + { + "id": "C9A796D6-1A7D-47AD-A036-B3B9035FBDA3", + "name": "seat", + "codepoint": "F0CC3", + "aliases": [ + "event-seat", + "chair", + "chair-accent" + ], + "tags": [], + "author": "Google", + "version": "3.2.89" + }, + { + "id": "FDDF112E-DFF5-4D31-9821-69902F92E6CF", + "name": "seat-flat", + "codepoint": "F047B", + "aliases": [ + "airline-seat-flat" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "22BC78FF-895C-497C-B6F0-143F60901C20", + "name": "seat-flat-angled", + "codepoint": "F047C", + "aliases": [ + "airline-seat-flat-angled" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "A8F9F185-D2AE-4DEE-845C-3C74801E2CD0", + "name": "seat-individual-suite", + "codepoint": "F047D", + "aliases": [ + "airline-seat-individual-suite" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "F73EE06A-6898-40A7-9B0E-784A4280C075", + "name": "seat-legroom-extra", + "codepoint": "F047E", + "aliases": [ + "airline-seat-legroom-extra" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "1FC39B1E-567E-452C-B923-581F9A90F06D", + "name": "seat-legroom-normal", + "codepoint": "F047F", + "aliases": [ + "airline-seat-legroom-normal" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "4306743D-7833-44E7-88AB-659DD694C8B0", + "name": "seat-legroom-reduced", + "codepoint": "F0480", + "aliases": [ + "airline-seat-legroom-reduced" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "2F61EAD1-DF0E-4E90-8260-875EA5221F35", + "name": "seat-outline", + "codepoint": "F0CC4", + "aliases": [ + "event-seat-outline", + "chair-outline", + "chair-accent-outline" + ], + "tags": [], + "author": "Google", + "version": "3.2.89" + }, + { + "id": "BF015C93-A5AD-47BF-9451-A9B5DFFAD50C", + "name": "seat-passenger", + "codepoint": "F1249", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.6.95" + }, + { + "id": "EB83D5D9-0439-476C-9BFD-04B5D6789940", + "name": "seat-recline-extra", + "codepoint": "F0481", + "aliases": [ + "airline-seat-recline-extra" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "B6642D7A-EE36-4C22-945E-88A218708CB6", + "name": "seat-recline-normal", + "codepoint": "F0482", + "aliases": [ + "airline-seat-recline-normal" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "00F06E5E-5A05-4D5E-9D07-0573CA62E0BA", + "name": "seatbelt", + "codepoint": "F0CC5", + "aliases": [ + "seat-belt", + "safety-belt" + ], + "tags": [ + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "0C2F3617-9710-4265-AFB5-29C52AD2FBE0", + "name": "security", + "codepoint": "F0483", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "C9FA8517-7CD1-4AB7-86AD-0A2BF1016466", + "name": "security-network", + "codepoint": "F0484", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "75A03574-02AA-4377-8DE3-86CBE77A0957", + "name": "seed", + "codepoint": "F0E62", + "aliases": [], + "tags": [ + "Agriculture", + "Nature", + "Food \/ Drink" + ], + "author": "Michael Irigoyen", + "version": "3.6.95" + }, + { + "id": "22CC568F-81CD-4DEA-A4E1-7DE207BD15F3", + "name": "seed-off", + "codepoint": "F13FD", + "aliases": [], + "tags": [ + "Nature", + "Food \/ Drink", + "Agriculture" + ], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "372ACCAF-E322-40AC-8CE9-1F2066D3BF97", + "name": "seed-off-outline", + "codepoint": "F13FE", + "aliases": [], + "tags": [ + "Nature", + "Food \/ Drink", + "Agriculture" + ], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "80AE8DF8-0E9B-4A56-B2EF-2CA1244D99D3", + "name": "seed-outline", + "codepoint": "F0E63", + "aliases": [], + "tags": [ + "Agriculture", + "Nature", + "Food \/ Drink" + ], + "author": "Michael Irigoyen", + "version": "3.6.95" + }, + { + "id": "B2FB9E28-A275-4BC8-AFD9-8A8D90153ED9", + "name": "seesaw", + "codepoint": "F15A4", + "aliases": [ + "playground-seesaw" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.5.55" + }, + { + "id": "5AFE282B-CAE1-4D7F-A2BF-37E8655537DD", + "name": "segment", + "codepoint": "F0ECB", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.7.94" + }, + { + "id": "B350D031-599B-4BB7-9D21-EC955B7FEF43", + "name": "select", + "codepoint": "F0485", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "7C2879B0-6BFE-42A3-9EDF-4A42AC3C9D70", + "name": "select-all", + "codepoint": "F0486", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "8B757895-25B7-4C24-B6A2-7C71C9C12138", + "name": "select-color", + "codepoint": "F0D31", + "aliases": [ + "select-colour" + ], + "tags": [ + "Color" + ], + "author": "Google", + "version": "3.3.92" + }, + { + "id": "4BC4C702-7484-4B80-95EB-F98125F1332D", + "name": "select-compare", + "codepoint": "F0AD9", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "2.7.94" + }, + { + "id": "BA35374B-03BB-421D-ABCD-5F8C4B492C4C", + "name": "select-drag", + "codepoint": "F0A6C", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "2.6.95" + }, + { + "id": "FEDE670C-F1CD-493D-B201-0C0410DB04C8", + "name": "select-group", + "codepoint": "F0F82", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.9.97" + }, + { + "id": "DAA46B9D-9215-4BF8-BDA7-52E575817ABC", + "name": "select-inverse", + "codepoint": "F0487", + "aliases": [ + "selection-invert" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "A312AB96-5A12-4223-AF67-7067653E17E5", + "name": "select-marker", + "codepoint": "F1280", + "aliases": [ + "select-location" + ], + "tags": [], + "author": "Austin Andrews", + "version": "4.7.95" + }, + { + "id": "1958E6ED-3D6C-4341-8F21-DDE80D030CEF", + "name": "select-multiple", + "codepoint": "F1281", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "4.7.95" + }, + { + "id": "0A8AB6EF-B388-4086-BF8D-1F0015ADC972", + "name": "select-multiple-marker", + "codepoint": "F1282", + "aliases": [ + "select-multiple-location" + ], + "tags": [], + "author": "Austin Andrews", + "version": "4.7.95" + }, + { + "id": "B2C462E1-44F0-456A-8A73-919DB480D978", + "name": "select-off", + "codepoint": "F0488", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "0090BCFA-124B-484B-BFA1-AA39413F0156", + "name": "select-place", + "codepoint": "F0FDA", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.0.96" + }, + { + "id": "1421D2ED-7592-4771-81F9-53A9EADFA95A", + "name": "select-remove", + "codepoint": "F17C1", + "aliases": [], + "tags": [], + "author": "John Martini", + "version": "6.1.95" + }, + { + "id": "5D558A02-EC98-47D7-AD04-D02E225AF4C6", + "name": "select-search", + "codepoint": "F1204", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.6.95" + }, + { + "id": "33A5D3FF-E2A7-4E3A-95B5-86D4C6604911", + "name": "selection", + "codepoint": "F0489", + "aliases": [], + "tags": [], + "author": "Doug C. Hardester", + "version": "1.5.54" + }, + { + "id": "62E94CCE-BCD0-4DF3-9AFB-B14169345612", + "name": "selection-drag", + "codepoint": "F0A6D", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "2.6.95" + }, + { + "id": "F1A52E3C-0E56-48FA-ADC4-A20A6CE2E4DF", + "name": "selection-ellipse", + "codepoint": "F0D32", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "3.3.92" + }, + { + "id": "DD7E2731-0D5F-42EC-8F73-99DC2E80398C", + "name": "selection-ellipse-arrow-inside", + "codepoint": "F0F22", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.8.95" + }, + { + "id": "44145803-0893-44BE-9B63-8BC586FFCCAB", + "name": "selection-ellipse-remove", + "codepoint": "F17C2", + "aliases": [], + "tags": [], + "author": "John Martini", + "version": "6.1.95" + }, + { + "id": "DA670815-123E-4443-B813-5BB4A556AB1C", + "name": "selection-marker", + "codepoint": "F1283", + "aliases": [ + "selection-location" + ], + "tags": [], + "author": "Austin Andrews", + "version": "4.7.95" + }, + { + "id": "31DDE08D-A49D-4B2D-9D90-3E79FDDF49C9", + "name": "selection-multiple", + "codepoint": "F1285", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "4.7.95" + }, + { + "id": "5B06BC81-DA70-41F2-B05C-31E9BD7F571E", + "name": "selection-multiple-marker", + "codepoint": "F1284", + "aliases": [ + "selection-multiple-location" + ], + "tags": [], + "author": "Austin Andrews", + "version": "4.7.95" + }, + { + "id": "DE8BF55F-05A8-4CB8-86FC-63D6EAC57A6C", + "name": "selection-off", + "codepoint": "F0777", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "374F7C71-E33D-47CD-9A4E-898B853094C0", + "name": "selection-remove", + "codepoint": "F17C3", + "aliases": [], + "tags": [], + "author": "John Martini", + "version": "6.1.95" + }, + { + "id": "2123E467-F48C-4AC6-8061-FEEB686ADB19", + "name": "selection-search", + "codepoint": "F1205", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.6.95" + }, + { + "id": "43AB1D06-4033-4F02-8147-B692F4534174", + "name": "semantic-web", + "codepoint": "F1316", + "aliases": [ + "rdf", + "resource-description-framework", + "owl", + "web-ontology-language", + "w3c" + ], + "tags": [ + "Developer \/ Languages", + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "4.8.95" + }, + { + "id": "6791A1E4-DBF8-471C-AA27-0D4540A23678", + "name": "send", + "codepoint": "F048A", + "aliases": [ + "paper-airplane", + "paper-plane" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "688C66E3-B436-4900-83EF-ADCEBBEDE627", + "name": "send-check", + "codepoint": "F1161", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "4.4.95" + }, + { + "id": "0C6541E7-CC47-4FF5-BEB4-F261296D7DAD", + "name": "send-check-outline", + "codepoint": "F1162", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "4.4.95" + }, + { + "id": "52E3C504-34AB-4EE5-954F-768B1044B2A6", + "name": "send-circle", + "codepoint": "F0DF8", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "3.5.94" + }, + { + "id": "DE0BE96B-9A65-4B97-B3F3-67FBDF240B7A", + "name": "send-circle-outline", + "codepoint": "F0DF9", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "3.5.94" + }, + { + "id": "1225563F-5E41-4B85-8E01-FF53C5453B56", + "name": "send-clock", + "codepoint": "F1163", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Google", + "version": "4.4.95" + }, + { + "id": "281F054F-8F0A-4790-9165-154E297B9283", + "name": "send-clock-outline", + "codepoint": "F1164", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Google", + "version": "4.4.95" + }, + { + "id": "343A4B08-D77B-453B-A8A7-AF40D1A98DD2", + "name": "send-lock", + "codepoint": "F07ED", + "aliases": [ + "send-secure" + ], + "tags": [ + "Lock" + ], + "author": "Michael Richins", + "version": "2.0.46" + }, + { + "id": "23F855E5-3F55-48BA-8C2A-7FBA5EAE8CED", + "name": "send-lock-outline", + "codepoint": "F1166", + "aliases": [], + "tags": [ + "Lock" + ], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "B4F0331A-3E21-40C4-AED4-A28FD929AD21", + "name": "send-outline", + "codepoint": "F1165", + "aliases": [ + "paper-airplane-outline", + "paper-plane-outline" + ], + "tags": [], + "author": "Simran", + "version": "4.4.95" + }, + { + "id": "5D18BB49-3214-49C0-BD5C-B4581172C650", + "name": "serial-port", + "codepoint": "F065C", + "aliases": [ + "vga" + ], + "tags": [], + "author": "Simran", + "version": "1.6.50" + }, + { + "id": "692F85E2-79A8-4207-ACF7-DEC8D675BE38", + "name": "server", + "codepoint": "F048B", + "aliases": [ + "storage" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "09F53FF1-31D7-44CA-A00E-8CDDF55DB716", + "name": "server-minus", + "codepoint": "F048C", + "aliases": [ + "server-remove" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "21F268BE-CC44-49CE-B59A-121D073ADBA5", + "name": "server-network", + "codepoint": "F048D", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "E01B3638-DE80-4D1E-93D1-1A0C5E9AFCF4", + "name": "server-network-off", + "codepoint": "F048E", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "578A1213-5F0D-4C6B-A929-9157D126A9F8", + "name": "server-off", + "codepoint": "F048F", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "99AC1D59-A2F0-4B53-872D-0374D0804E0A", + "name": "server-plus", + "codepoint": "F0490", + "aliases": [ + "server-add" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "C7C1A659-403B-44E0-9EF5-94B5C722CAFD", + "name": "server-remove", + "codepoint": "F0491", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "E42A523C-D28D-4AAB-8A86-4816DD872B78", + "name": "server-security", + "codepoint": "F0492", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "501D1421-A50E-470A-A05B-87864461C4ED", + "name": "set-all", + "codepoint": "F0778", + "aliases": [ + "set-union", + "set-or", + "full-outer-join", + "sql-full-outer-join" + ], + "tags": [ + "Database" + ], + "author": "Simran", + "version": "1.9.32" + }, + { + "id": "0267D77C-9968-45EF-87FC-CD3368D56383", + "name": "set-center", + "codepoint": "F0779", + "aliases": [ + "set-centre", + "set-intersection", + "set-and", + "inner-join", + "sql-inner-join" + ], + "tags": [ + "Database" + ], + "author": "Simran", + "version": "1.9.32" + }, + { + "id": "614D2F8D-5170-4FE8-87C7-419903F205CB", + "name": "set-center-right", + "codepoint": "F077A", + "aliases": [ + "set-centre-right", + "outer-join-right", + "sql-right-outer-join" + ], + "tags": [ + "Database" + ], + "author": "Simran", + "version": "1.9.32" + }, + { + "id": "FB4645C1-DF04-49E0-BA0B-7C02C87AF3A9", + "name": "set-left", + "codepoint": "F077B", + "aliases": [ + "difference-left" + ], + "tags": [ + "Database" + ], + "author": "Simran", + "version": "1.9.32" + }, + { + "id": "9C04991C-6A68-4634-885F-A4D6E2816AFF", + "name": "set-left-center", + "codepoint": "F077C", + "aliases": [ + "set-left-centre", + "outer-join-left", + "sql-left-outer-join" + ], + "tags": [ + "Database" + ], + "author": "Simran", + "version": "1.9.32" + }, + { + "id": "E1BE2EC4-D5D5-475C-A562-9855DA1612FB", + "name": "set-left-right", + "codepoint": "F077D", + "aliases": [ + "exclusion", + "set-xor" + ], + "tags": [ + "Database" + ], + "author": "Simran", + "version": "1.9.32" + }, + { + "id": "414C136F-7BB5-47BB-BB58-136C5E1C2E5B", + "name": "set-merge", + "codepoint": "F14E0", + "aliases": [], + "tags": [], + "author": "s-ki", + "version": "5.3.45" + }, + { + "id": "9674B809-B544-45E8-BBD8-4E8D9E1A966E", + "name": "set-none", + "codepoint": "F077E", + "aliases": [ + "set-null", + "set-not", + "venn-diagram" + ], + "tags": [ + "Database" + ], + "author": "Simran", + "version": "1.9.32" + }, + { + "id": "27D4B799-E231-49DF-AB06-0201493C83E9", + "name": "set-right", + "codepoint": "F077F", + "aliases": [ + "difference-right" + ], + "tags": [ + "Database" + ], + "author": "Simran", + "version": "1.9.32" + }, + { + "id": "7100DDA3-3A7A-4A02-A717-D33D1A170E41", + "name": "set-split", + "codepoint": "F14E1", + "aliases": [], + "tags": [], + "author": "s-ki", + "version": "5.3.45" + }, + { + "id": "C57170BC-B363-470F-B209-D713700B7C89", + "name": "set-square", + "codepoint": "F145D", + "aliases": [], + "tags": [ + "Hardware \/ Tools" + ], + "author": "Google", + "version": "5.2.45" + }, + { + "id": "944304C3-3513-4544-8DC2-B14307049311", + "name": "set-top-box", + "codepoint": "F099F", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Austin Andrews", + "version": "2.4.85" + }, + { + "id": "6AE3B6F5-8896-4AED-A4B2-B1B021DE1DE9", + "name": "settings-helper", + "codepoint": "F0A6E", + "aliases": [], + "tags": [ + "Settings" + ], + "author": "Peter Noble", + "version": "2.6.95" + }, + { + "id": "4E49931C-2FF9-4957-942A-F2F0B8485E68", + "name": "shaker", + "codepoint": "F110E", + "aliases": [ + "pepper", + "fish-food" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Michael Irigoyen", + "version": "4.3.95" + }, + { + "id": "1A2E13B0-421D-460F-87C2-63C1DEC6525A", + "name": "shaker-outline", + "codepoint": "F110F", + "aliases": [ + "salt", + "fish-food-outline" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Michael Irigoyen", + "version": "4.3.95" + }, + { + "id": "B29246C8-6014-4019-8CCC-F803DBC0FA95", + "name": "shape", + "codepoint": "F0831", + "aliases": [ + "category", + "theme" + ], + "tags": [ + "Shape" + ], + "author": "Google", + "version": "2.1.19" + }, + { + "id": "C989421F-7F77-45D9-9BB4-97D3DE8C8FB4", + "name": "shape-circle-plus", + "codepoint": "F065D", + "aliases": [ + "shape-circle-add" + ], + "tags": [ + "Shape" + ], + "author": "Kai Faust", + "version": "1.6.50" + }, + { + "id": "FC3A1E7D-F8CD-443E-A685-9C7F0FA9FC10", + "name": "shape-outline", + "codepoint": "F0832", + "aliases": [ + "theme-outline", + "category-outline" + ], + "tags": [ + "Shape" + ], + "author": "Google", + "version": "2.1.19" + }, + { + "id": "CE4CFCD5-20D8-4248-A3E8-0B1EFDCC8EC4", + "name": "shape-oval-plus", + "codepoint": "F11FA", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "4.6.95" + }, + { + "id": "C91D9DCD-5ADA-4D48-857C-39D38CD37A6B", + "name": "shape-plus", + "codepoint": "F0495", + "aliases": [ + "shape-add" + ], + "tags": [ + "Shape" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "CFE631FF-AAD1-49D9-BA22-84BAC90B8787", + "name": "shape-polygon-plus", + "codepoint": "F065E", + "aliases": [ + "shape-polygon-add" + ], + "tags": [ + "Shape" + ], + "author": "Kai Faust", + "version": "1.6.50" + }, + { + "id": "C92D4248-E908-4B39-A6D0-296E6FB5FFE1", + "name": "shape-rectangle-plus", + "codepoint": "F065F", + "aliases": [ + "shape-rectangle-add" + ], + "tags": [ + "Shape" + ], + "author": "Kai Faust", + "version": "1.6.50" + }, + { + "id": "56A31026-C5C6-45D5-A9D4-1C660357F430", + "name": "shape-square-plus", + "codepoint": "F0660", + "aliases": [ + "shape-square-add" + ], + "tags": [ + "Shape" + ], + "author": "Kai Faust", + "version": "1.6.50" + }, + { + "id": "783621A3-B8D0-4340-BE29-0399B02EAE6B", + "name": "shape-square-rounded-plus", + "codepoint": "F14FA", + "aliases": [], + "tags": [], + "author": "Jeff Anders", + "version": "5.4.55" + }, + { + "id": "F0053E35-64B2-45D5-92D6-EE9F8A8839A1", + "name": "share", + "codepoint": "F0496", + "aliases": [ + "forward" + ], + "tags": [ + "Arrow" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "3A9176D6-A724-4E82-9F8B-00CEEC8A9D64", + "name": "share-all", + "codepoint": "F11F4", + "aliases": [], + "tags": [], + "author": "sergiocarlotto", + "version": "4.6.95" + }, + { + "id": "E9397228-BC9E-4B65-9301-948CBB1D0905", + "name": "share-all-outline", + "codepoint": "F11F5", + "aliases": [], + "tags": [], + "author": "sergiocarlotto", + "version": "4.6.95" + }, + { + "id": "2381C112-2883-4B31-829E-D656430AB707", + "name": "share-circle", + "codepoint": "F11AD", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Michael Irigoyen", + "version": "4.5.95" + }, + { + "id": "8F694E89-2460-4790-820F-BCFA1A4CB660", + "name": "share-off", + "codepoint": "F0F23", + "aliases": [ + "forward-off" + ], + "tags": [ + "Arrow" + ], + "author": "GreenTurtwig", + "version": "3.8.95" + }, + { + "id": "E65D2036-B0D1-4957-B114-A6FA6DFC67A5", + "name": "share-off-outline", + "codepoint": "F0F24", + "aliases": [ + "forward-off-outline" + ], + "tags": [ + "Arrow" + ], + "author": "GreenTurtwig", + "version": "3.8.95" + }, + { + "id": "B8DDA534-033E-42FF-9F81-62EC636DD3C6", + "name": "share-outline", + "codepoint": "F0932", + "aliases": [ + "forward-outline" + ], + "tags": [ + "Arrow" + ], + "author": "Nick", + "version": "2.3.54" + }, + { + "id": "C25D5913-39C7-4215-B372-88F90EE2B6E5", + "name": "share-variant", + "codepoint": "F0497", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "82009437-57EA-4B83-97A2-A6AA6F305CBE", + "name": "share-variant-outline", + "codepoint": "F1514", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.4.55" + }, + { + "id": "4D7D5865-0AEE-40A3-9015-86661A60DA8C", + "name": "shark", + "codepoint": "F18BA", + "aliases": [ + "jaws" + ], + "tags": [ + "Animal" + ], + "author": "Colton Wiscombe", + "version": "6.3.95" + }, + { + "id": "7A618386-2E3E-4B23-BF63-184B76C9CF61", + "name": "shark-fin", + "codepoint": "F1673", + "aliases": [], + "tags": [ + "Animal" + ], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "15736C41-B312-436C-B081-67F0C561A97A", + "name": "shark-fin-outline", + "codepoint": "F1674", + "aliases": [], + "tags": [ + "Animal" + ], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "4CF1A54B-034F-4AB6-A3B2-6ED16E550261", + "name": "shark-off", + "codepoint": "F18BB", + "aliases": [ + "jaws-off" + ], + "tags": [ + "Animal" + ], + "author": "Colton Wiscombe", + "version": "6.3.95" + }, + { + "id": "DEA01DF4-6FBD-45B7-AC58-CBF70545FBBA", + "name": "sheep", + "codepoint": "F0CC6", + "aliases": [ + "emoji-sheep", + "emoticon-sheep" + ], + "tags": [ + "Animal", + "Agriculture" + ], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "A3709A80-3219-4E83-9D4F-EF74F31EEAAE", + "name": "shield", + "codepoint": "F0498", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "CA71D276-C056-45E5-883E-B3D15868D859", + "name": "shield-account", + "codepoint": "F088F", + "aliases": [ + "security-account", + "shield-user", + "shield-person", + "alarm-arm-home" + ], + "tags": [ + "Account \/ User", + "Home Automation" + ], + "author": "Michael Richins", + "version": "2.1.99" + }, + { + "id": "E74ADD51-598F-4194-868C-3A9F7B62BCFA", + "name": "shield-account-outline", + "codepoint": "F0A12", + "aliases": [ + "security-account-outline", + "shield-user-outline", + "shield-person-outline", + "alarm-arm-home-outline" + ], + "tags": [ + "Account \/ User", + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "2.5.94" + }, + { + "id": "54FF705E-9453-4D1A-B2AC-1EB2F815F518", + "name": "shield-account-variant", + "codepoint": "F15A7", + "aliases": [], + "tags": [ + "Account \/ User" + ], + "author": "Google", + "version": "5.5.55" + }, + { + "id": "8229B887-45A8-496A-9A8D-0140F438CB65", + "name": "shield-account-variant-outline", + "codepoint": "F15A8", + "aliases": [], + "tags": [ + "Account \/ User" + ], + "author": "Google", + "version": "5.5.55" + }, + { + "id": "B8FB8784-2E21-4D35-9DE8-95E8E2A42591", + "name": "shield-airplane", + "codepoint": "F06BB", + "aliases": [ + "shield-aeroplane", + "shield-plane", + "plane-shield" + ], + "tags": [ + "Transportation + Flying" + ], + "author": "GreenTurtwig", + "version": "1.7.22" + }, + { + "id": "C14BAFFB-948A-45C3-ABFD-4F6215318D65", + "name": "shield-airplane-outline", + "codepoint": "F0CC7", + "aliases": [ + "shield-aeroplane-outline", + "shield-plane-outline" + ], + "tags": [ + "Transportation + Flying" + ], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "B5DC36AC-6F79-4CDE-B1CD-02F221BF8CE4", + "name": "shield-alert", + "codepoint": "F0ECC", + "aliases": [ + "shield-warning" + ], + "tags": [ + "Alert \/ Error" + ], + "author": "Peter Noble", + "version": "3.7.94" + }, + { + "id": "51584101-DF6C-49FF-8ACB-13F7064DEE89", + "name": "shield-alert-outline", + "codepoint": "F0ECD", + "aliases": [ + "shield-warning-outline" + ], + "tags": [ + "Alert \/ Error" + ], + "author": "Peter Noble", + "version": "3.7.94" + }, + { + "id": "1FB00AC4-94AE-4677-8F7F-0B6A47F7382C", + "name": "shield-bug", + "codepoint": "F13DA", + "aliases": [ + "antivirus" + ], + "tags": [], + "author": "Michael Richins", + "version": "5.1.45" + }, + { + "id": "DCD9B7FB-8730-4C65-8805-50B6B51A5EF7", + "name": "shield-bug-outline", + "codepoint": "F13DB", + "aliases": [ + "antivirus-outline" + ], + "tags": [], + "author": "MaksUr", + "version": "5.1.45" + }, + { + "id": "2A7B43E0-4BA1-41EB-9040-F943AA9FD02C", + "name": "shield-car", + "codepoint": "F0F83", + "aliases": [ + "car-security", + "car-insurance" + ], + "tags": [ + "Automotive" + ], + "author": "Nick", + "version": "3.9.97" + }, + { + "id": "FC112FD8-5338-49C0-B4E0-FE1816A71E74", + "name": "shield-check", + "codepoint": "F0565", + "aliases": [ + "verified-user", + "shield-tick", + "verified" + ], + "tags": [ + "Account \/ User" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "26E9DF2C-21C8-48FF-B402-733E33673C7E", + "name": "shield-check-outline", + "codepoint": "F0CC8", + "aliases": [ + "shield-tick-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "8D47ED6A-831A-49F2-8E43-67F16F8351E6", + "name": "shield-cross", + "codepoint": "F0CC9", + "aliases": [ + "shield-templar", + "shield-christianity" + ], + "tags": [ + "Gaming \/ RPG", + "Religion" + ], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "6C722CF2-67CA-4CEC-9197-56C4F99D2866", + "name": "shield-cross-outline", + "codepoint": "F0CCA", + "aliases": [ + "shield-templar-outline", + "shield-christianity-outline" + ], + "tags": [ + "Gaming \/ RPG", + "Religion" + ], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "E251CF58-8A10-4069-AB6C-CF9DD2383335", + "name": "shield-crown", + "codepoint": "F18BC", + "aliases": [ + "administrator" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Michael Miday", + "version": "6.3.95" + }, + { + "id": "97DA53AC-FC83-467F-A814-752C981BFEDE", + "name": "shield-crown-outline", + "codepoint": "F18BD", + "aliases": [ + "administrator-outline" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Michael Miday", + "version": "6.3.95" + }, + { + "id": "8CF352CF-2ED0-4DFB-ADCF-AD77FDA6DD25", + "name": "shield-edit", + "codepoint": "F11A0", + "aliases": [], + "tags": [ + "Edit \/ Modify" + ], + "author": "Fran\u00e7ois Risoud", + "version": "4.5.95" + }, + { + "id": "F55E4962-5730-4735-B362-42FFB640F202", + "name": "shield-edit-outline", + "codepoint": "F11A1", + "aliases": [], + "tags": [ + "Edit \/ Modify" + ], + "author": "Fran\u00e7ois Risoud", + "version": "4.5.95" + }, + { + "id": "DC82606F-2ABB-4C09-BAC5-1C3C4DA38BEC", + "name": "shield-half", + "codepoint": "F1360", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.9.95" + }, + { + "id": "9E908727-9325-4FC6-B8B8-C5CA52A7A827", + "name": "shield-half-full", + "codepoint": "F0780", + "aliases": [], + "tags": [], + "author": "GreenTurtwig", + "version": "1.9.32" + }, + { + "id": "2A5A98F5-ED95-40DE-8EC5-1293795CF661", + "name": "shield-home", + "codepoint": "F068A", + "aliases": [ + "security-home", + "shield-house", + "alarm-arm-home" + ], + "tags": [ + "Home Automation" + ], + "author": "Austin Andrews", + "version": "1.7.12" + }, + { + "id": "4D4B922B-D9AA-47AC-8E02-33F88EC69B38", + "name": "shield-home-outline", + "codepoint": "F0CCB", + "aliases": [ + "shield-house-outline", + "alarm-arm-home" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "9894EABF-10A1-4A07-BB4B-D94F596F5D6A", + "name": "shield-key", + "codepoint": "F0BC4", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.0.39" + }, + { + "id": "90122FEA-99CC-4B64-BD21-E3DD8CB83948", + "name": "shield-key-outline", + "codepoint": "F0BC5", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.0.39" + }, + { + "id": "9F5D8008-32E1-4A90-B040-2C8AF2C00F81", + "name": "shield-link-variant", + "codepoint": "F0D33", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.3.92" + }, + { + "id": "8A6D2649-CF2C-43AF-A90B-79B554B1385A", + "name": "shield-link-variant-outline", + "codepoint": "F0D34", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.3.92" + }, + { + "id": "C2E5EBC9-F1AD-4D93-BA3F-C81E18411E09", + "name": "shield-lock", + "codepoint": "F099D", + "aliases": [ + "security-lock", + "alarm-arm-away" + ], + "tags": [ + "Lock", + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "2.4.85" + }, + { + "id": "5B854DDA-2B72-49FC-881D-E88ED51EA636", + "name": "shield-lock-open", + "codepoint": "F199A", + "aliases": [ + "shield-unlocked" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.5.95" + }, + { + "id": "F9C92AC8-D26D-4AAD-8C34-22759EA2CA2D", + "name": "shield-lock-open-outline", + "codepoint": "F199B", + "aliases": [ + "shield-unlocked-outline" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.5.95" + }, + { + "id": "7F797AEE-648F-4FB8-BA7F-4EF60235A061", + "name": "shield-lock-outline", + "codepoint": "F0CCC", + "aliases": [ + "alarm-arm-away-outline", + "security-lock-outline" + ], + "tags": [ + "Lock", + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "622FF7DE-FDD6-4831-9D3D-09157A5FC8AE", + "name": "shield-moon", + "codepoint": "F1828", + "aliases": [ + "alarm-arm-night" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "C70DD8EF-9F17-41E0-825C-C5AAC60DBF1E", + "name": "shield-moon-outline", + "codepoint": "F1829", + "aliases": [ + "alarm-arm-night-outline" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "BC537F52-4A49-433B-A031-5C698A234A35", + "name": "shield-off", + "codepoint": "F099E", + "aliases": [ + "security-off" + ], + "tags": [], + "author": "Michael Richins", + "version": "2.4.85" + }, + { + "id": "8ED2BB68-83C4-49BE-A730-1853C228781B", + "name": "shield-off-outline", + "codepoint": "F099C", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "2.4.85" + }, + { + "id": "A8FF94DD-6BA5-4DBA-AE23-59BB22DD733B", + "name": "shield-outline", + "codepoint": "F0499", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "872F02FE-ABEF-4187-B6B2-87A548988EAA", + "name": "shield-plus", + "codepoint": "F0ADA", + "aliases": [ + "shield-add" + ], + "tags": [], + "author": "Google", + "version": "2.7.94" + }, + { + "id": "4348C9BA-B7EE-4DC9-9B75-102726C978F7", + "name": "shield-plus-outline", + "codepoint": "F0ADB", + "aliases": [ + "shield-add-outline" + ], + "tags": [], + "author": "Google", + "version": "2.7.94" + }, + { + "id": "2E0E0624-1F5D-4998-B0F9-A957EC2ADD49", + "name": "shield-refresh", + "codepoint": "F00AA", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "1.5.54" + }, + { + "id": "D3FD64E5-2836-4527-8861-29D53D101672", + "name": "shield-refresh-outline", + "codepoint": "F01E0", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "1.5.54" + }, + { + "id": "F6E9D9DF-7266-4D03-BE3E-4F3B4612B77F", + "name": "shield-remove", + "codepoint": "F0ADC", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "2.7.94" + }, + { + "id": "4C54DF65-6F23-4FEE-A579-C329A32192BA", + "name": "shield-remove-outline", + "codepoint": "F0ADD", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "2.7.94" + }, + { + "id": "89E736DC-2E57-413E-A044-40871A51CB72", + "name": "shield-search", + "codepoint": "F0D9A", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.4.93" + }, + { + "id": "9C6B0512-02BF-4C33-ADAF-54D75B3AD2FB", + "name": "shield-star", + "codepoint": "F113B", + "aliases": [ + "badge", + "shield-favorite" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "122D14B5-1EB6-4ED3-8765-7C8A58D6071B", + "name": "shield-star-outline", + "codepoint": "F113C", + "aliases": [ + "badge-outline", + "shield-favorite-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "144E5B1F-A406-440D-B8B0-CC662F359D12", + "name": "shield-sun", + "codepoint": "F105D", + "aliases": [ + "sun-protection" + ], + "tags": [], + "author": "Perth Totty", + "version": "4.1.95" + }, + { + "id": "36B9C70C-5576-459A-AF44-A8E8F97B5DA8", + "name": "shield-sun-outline", + "codepoint": "F105E", + "aliases": [ + "sun-protection-outline" + ], + "tags": [], + "author": "Perth Totty", + "version": "4.1.95" + }, + { + "id": "614C104E-8424-4D0B-AAFB-3D35CCBDF291", + "name": "shield-sword", + "codepoint": "F18BE", + "aliases": [ + "moderator" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Michael Miday", + "version": "6.3.95" + }, + { + "id": "3F8FADE9-864C-4B66-921A-A0DC30683E2A", + "name": "shield-sword-outline", + "codepoint": "F18BF", + "aliases": [ + "moderator-outline" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Michael Miday", + "version": "6.3.95" + }, + { + "id": "AE87ED6F-DF56-449E-A3EF-D010AB6F4D17", + "name": "shield-sync", + "codepoint": "F11A2", + "aliases": [], + "tags": [], + "author": "Fran\u00e7ois Risoud", + "version": "4.5.95" + }, + { + "id": "55F6BCDE-A55A-4206-B079-1684F6E1FF0F", + "name": "shield-sync-outline", + "codepoint": "F11A3", + "aliases": [], + "tags": [], + "author": "Fran\u00e7ois Risoud", + "version": "4.5.95" + }, + { + "id": "C09567B5-B5C0-4C51-A246-0CA46C928F96", + "name": "shimmer", + "codepoint": "F1545", + "aliases": [ + "sparkles" + ], + "tags": [], + "author": "Austin Andrews", + "version": "5.4.55" + }, + { + "id": "1F35A20C-CF6C-4C2A-9A72-82269F4ECCF7", + "name": "ship-wheel", + "codepoint": "F0833", + "aliases": [ + "voyager", + "helm" + ], + "tags": [ + "Transportation + Water" + ], + "author": "Google", + "version": "2.1.19" + }, + { + "id": "E5A72C59-D7AF-47F4-939E-F9F882E3F2FF", + "name": "shipping-pallet", + "codepoint": "F184E", + "aliases": [], + "tags": [], + "author": "Teodor Sandu", + "version": "6.2.95" + }, + { + "id": "B5B68323-60DD-45BF-83FC-892B436D0400", + "name": "shoe-ballet", + "codepoint": "F15CA", + "aliases": [ + "slippers-ballet" + ], + "tags": [ + "Sport", + "Clothing" + ], + "author": "Michael Irigoyen", + "version": "5.6.55" + }, + { + "id": "F6831C58-3C18-44F4-A2A8-4AD96444F012", + "name": "shoe-cleat", + "codepoint": "F15C7", + "aliases": [], + "tags": [ + "Sport", + "Clothing" + ], + "author": "Michael Irigoyen", + "version": "5.6.55" + }, + { + "id": "DFEA1FD2-F6A5-4670-83D6-9861A0FA272C", + "name": "shoe-formal", + "codepoint": "F0B47", + "aliases": [], + "tags": [ + "Clothing" + ], + "author": "SarinManS", + "version": "2.8.94" + }, + { + "id": "E97AD67E-DD75-4FD8-9E25-44F3042B4172", + "name": "shoe-heel", + "codepoint": "F0B48", + "aliases": [], + "tags": [ + "Clothing" + ], + "author": "SarinManS", + "version": "2.8.94" + }, + { + "id": "4008AB1C-4D92-4D8B-9423-5182FC505664", + "name": "shoe-print", + "codepoint": "F0DFA", + "aliases": [ + "footprints" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.5.94" + }, + { + "id": "EA78AFA5-70F2-4878-A1D5-746B410E1DA0", + "name": "shoe-sneaker", + "codepoint": "F15C8", + "aliases": [ + "shoe-running" + ], + "tags": [ + "Sport", + "Clothing" + ], + "author": "Michael Irigoyen", + "version": "5.6.55" + }, + { + "id": "7A5ED547-B142-4921-8050-647B2B9F4DC0", + "name": "shopping", + "codepoint": "F049A", + "aliases": [ + "local-mall", + "marketplace" + ], + "tags": [ + "Shopping" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "E3FDDEB1-6D36-4E18-914E-06E2887E7D96", + "name": "shopping-music", + "codepoint": "F049B", + "aliases": [], + "tags": [ + "Shopping" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "EBE771F9-2EF2-41D9-AE7D-8FDBA1B4C684", + "name": "shopping-outline", + "codepoint": "F11D5", + "aliases": [ + "local-mall-outline", + "marketplace-outline" + ], + "tags": [ + "Shopping" + ], + "author": "Google", + "version": "4.5.95" + }, + { + "id": "6FB38390-3C7C-423A-AC1C-691C3358E04B", + "name": "shopping-search", + "codepoint": "F0F84", + "aliases": [], + "tags": [ + "Shopping" + ], + "author": "Michael Richins", + "version": "3.9.97" + }, + { + "id": "9F0501F0-7F2C-4806-8AC4-F8D76AA194CD", + "name": "shore", + "codepoint": "F14F9", + "aliases": [], + "tags": [], + "author": "Jeff Anders", + "version": "5.4.55" + }, + { + "id": "16D35D19-90C2-42DD-9E83-8F47E21A53DF", + "name": "shovel", + "codepoint": "F0710", + "aliases": [ + "gardening" + ], + "tags": [ + "Hardware \/ Tools" + ], + "author": "Michael Richins", + "version": "1.8.36" + }, + { + "id": "01E7F800-E769-4A3F-9A30-D1B8E96F617B", + "name": "shovel-off", + "codepoint": "F0711", + "aliases": [], + "tags": [ + "Hardware \/ Tools" + ], + "author": "Michael Richins", + "version": "1.8.36" + }, + { + "id": "1F29D513-0EFE-454A-B766-579A010C51B6", + "name": "shower", + "codepoint": "F09A0", + "aliases": [ + "bathtub" + ], + "tags": [ + "Home Automation" + ], + "author": "Augustin Ursu", + "version": "2.4.85" + }, + { + "id": "F0E6B2EB-7E10-42C8-AEF1-84A461E1E2B3", + "name": "shower-head", + "codepoint": "F09A1", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Augustin Ursu", + "version": "2.4.85" + }, + { + "id": "BCE4CF23-0A2B-430F-89C9-7597F1132919", + "name": "shredder", + "codepoint": "F049C", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "99537665-2115-40D6-9725-0F4B4730C99A", + "name": "shuffle", + "codepoint": "F049D", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "DAA3B240-E394-46A8-83FE-6EE6712BF806", + "name": "shuffle-disabled", + "codepoint": "F049E", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "84D958BE-5145-4490-BA8F-D00E6870CC9D", + "name": "shuffle-variant", + "codepoint": "F049F", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "70BBF348-E5D1-4C4C-AD93-17246A78DE13", + "name": "shuriken", + "codepoint": "F137F", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "4.9.95" + }, + { + "id": "AEA5AABF-3305-44A8-9E85-67F2351CB2E6", + "name": "sickle", + "codepoint": "F18C0", + "aliases": [], + "tags": [ + "Hardware \/ Tools" + ], + "author": "Michael Irigoyen", + "version": "6.3.95" + }, + { + "id": "59A98F47-9067-492A-8454-42BEFA2391C1", + "name": "sigma", + "codepoint": "F04A0", + "aliases": [ + "summation" + ], + "tags": [ + "Math" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "DD1EAF89-C6AC-4E61-BF78-93425B16DD24", + "name": "sigma-lower", + "codepoint": "F062B", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.6.50" + }, + { + "id": "159F7B23-A336-4F8C-A3BB-D8AB143D6661", + "name": "sign-caution", + "codepoint": "F04A1", + "aliases": [ + "barrier" + ], + "tags": [ + "Transportation + Road" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "93E3355E-36F9-4B26-A337-C5F794D98941", + "name": "sign-direction", + "codepoint": "F0781", + "aliases": [ + "milestone" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "110700C4-EF32-4835-B9C6-ECE259438B80", + "name": "sign-direction-minus", + "codepoint": "F1000", + "aliases": [ + "milestone-minus" + ], + "tags": [], + "author": "Michael Richins", + "version": "4.0.96" + }, + { + "id": "298F86D9-24E7-4780-A891-1A7C36D65D77", + "name": "sign-direction-plus", + "codepoint": "F0FDC", + "aliases": [ + "milestone-plus", + "sign-direction-add", + "milestone-add" + ], + "tags": [], + "author": "Michael Richins", + "version": "4.0.96" + }, + { + "id": "93DA424E-0D38-4DD4-B06A-2E3D0754EEC0", + "name": "sign-direction-remove", + "codepoint": "F0FDD", + "aliases": [ + "milestone-remove" + ], + "tags": [], + "author": "Michael Richins", + "version": "4.0.96" + }, + { + "id": "AE565EF0-BC09-44FB-B94A-A5F2CF2B2CB2", + "name": "sign-pole", + "codepoint": "F14F8", + "aliases": [], + "tags": [], + "author": "Jeff Anders", + "version": "5.4.55" + }, + { + "id": "A24BD314-F1AF-4BAF-A33B-F9BAD9D54089", + "name": "sign-real-estate", + "codepoint": "F1118", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "4.3.95" + }, + { + "id": "6AC6C6C2-8925-4ECC-BD95-6B961B2CD0A5", + "name": "sign-text", + "codepoint": "F0782", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "7099FDF8-B653-4C49-BE2B-5B96147A709D", + "name": "signal", + "codepoint": "F04A2", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "C281EBBF-23FD-4F0A-8908-BFBA18F75FDD", + "name": "signal-2g", + "codepoint": "F0712", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "GreenTurtwig", + "version": "1.8.36" + }, + { + "id": "F0ACC092-8F79-43C9-9F8F-72E41AE557F2", + "name": "signal-3g", + "codepoint": "F0713", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "GreenTurtwig", + "version": "1.8.36" + }, + { + "id": "7D633D1D-C265-4D2F-860E-43263B34A06F", + "name": "signal-4g", + "codepoint": "F0714", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "GreenTurtwig", + "version": "1.8.36" + }, + { + "id": "5E2711B0-C417-434F-BE9A-F4FA6A666A56", + "name": "signal-5g", + "codepoint": "F0A6F", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "GreenTurtwig", + "version": "2.6.95" + }, + { + "id": "F5CC42C0-FA38-488C-AD3F-DCF5329DFBB8", + "name": "signal-cellular-1", + "codepoint": "F08BC", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Michael Richins", + "version": "2.2.43" + }, + { + "id": "5E21DB8A-BFFC-4038-8EBF-D3E462A43CD9", + "name": "signal-cellular-2", + "codepoint": "F08BD", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Michael Richins", + "version": "2.2.43" + }, + { + "id": "85A2D38F-5AB3-430C-9794-032E991A4956", + "name": "signal-cellular-3", + "codepoint": "F08BE", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Michael Richins", + "version": "2.2.43" + }, + { + "id": "AA11AD00-4A6D-4D7F-911C-137CDDCF34B6", + "name": "signal-cellular-outline", + "codepoint": "F08BF", + "aliases": [ + "signal-cellular-0" + ], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Michael Richins", + "version": "2.2.43" + }, + { + "id": "D0767E67-DC33-4B2B-9715-7408FD4F502D", + "name": "signal-distance-variant", + "codepoint": "F0E64", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "3.6.95" + }, + { + "id": "A960C38F-7EFE-4FE6-94AB-C7B0CD07DD50", + "name": "signal-hspa", + "codepoint": "F0715", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "GreenTurtwig", + "version": "1.8.36" + }, + { + "id": "CDCB7012-AD69-4B80-A64E-FDA1375271AD", + "name": "signal-hspa-plus", + "codepoint": "F0716", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "GreenTurtwig", + "version": "1.8.36" + }, + { + "id": "9DAFE242-BF4B-43F8-8A6E-89EBB0EEDCAA", + "name": "signal-off", + "codepoint": "F0783", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "GreenTurtwig", + "version": "1.9.32" + }, + { + "id": "F4D628E8-ADAA-48B7-9ED2-83560FF4583F", + "name": "signal-variant", + "codepoint": "F060A", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "CA1E5FB5-D8FA-4B61-9C96-988F6829C4F5", + "name": "signature", + "codepoint": "F0DFB", + "aliases": [], + "tags": [ + "Form" + ], + "author": "Michael Irigoyen", + "version": "3.5.94" + }, + { + "id": "4DD4EB10-012B-4A70-8C9A-256B3F575BD5", + "name": "signature-freehand", + "codepoint": "F0DFC", + "aliases": [], + "tags": [ + "Form" + ], + "author": "Michael Irigoyen", + "version": "3.5.94" + }, + { + "id": "3A24A33E-C173-4E3C-8D8B-BA7E7E3E093A", + "name": "signature-image", + "codepoint": "F0DFD", + "aliases": [], + "tags": [ + "Form" + ], + "author": "Michael Irigoyen", + "version": "3.5.94" + }, + { + "id": "70DE882E-E115-42F9-A023-FBEE394DA396", + "name": "signature-text", + "codepoint": "F0DFE", + "aliases": [], + "tags": [ + "Form" + ], + "author": "Michael Irigoyen", + "version": "3.5.94" + }, + { + "id": "73A40E8E-7F62-454C-BFD9-A10796BA4A0A", + "name": "silo", + "codepoint": "F0B49", + "aliases": [ + "farm" + ], + "tags": [ + "Agriculture" + ], + "author": "Benjamin Watson", + "version": "2.8.94" + }, + { + "id": "F7C26535-863F-4295-9E48-9847B740FEE7", + "name": "silverware", + "codepoint": "F04A3", + "aliases": [ + "local-dining", + "restaurant-menu", + "local-restaurant", + "cutlery" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "57F11CAE-4E4B-4406-A5A8-2F5A283ABF99", + "name": "silverware-clean", + "codepoint": "F0FDE", + "aliases": [ + "silverware-shimmer", + "cutlery-clean" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Simran", + "version": "4.0.96" + }, + { + "id": "7B00A99C-3766-4939-993F-657333EE430B", + "name": "silverware-fork", + "codepoint": "F04A4", + "aliases": [ + "cutlery-fork" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "C3D19BD6-D474-4F86-94AA-1A4B04FE8E3A", + "name": "silverware-fork-knife", + "codepoint": "F0A70", + "aliases": [ + "restaurant", + "fortnite", + "cutlery-fork-knife", + "place-setting" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Google", + "version": "2.6.95" + }, + { + "id": "5FCBB812-F381-4E83-B60E-E126992910FB", + "name": "silverware-spoon", + "codepoint": "F04A5", + "aliases": [ + "cutlery-spoon" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "A91FC6E1-2613-41E7-A8CA-58740B3322DA", + "name": "silverware-variant", + "codepoint": "F04A6", + "aliases": [ + "cutlery-variant" + ], + "tags": [ + "Food \/ Drink", + "Places" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "93020F21-A0FE-427D-8685-B74EE39B9921", + "name": "sim", + "codepoint": "F04A7", + "aliases": [ + "sim-card", + "subscriber-identity-module", + "subscriber-identification-module" + ], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "43CD286A-D183-474F-9B8A-93D43A355117", + "name": "sim-alert", + "codepoint": "F04A8", + "aliases": [ + "sim-warning", + "sim-card-alert" + ], + "tags": [ + "Alert \/ Error", + "Cellphone \/ Phone" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "23E2DADA-D539-422C-B925-9DCB1445B344", + "name": "sim-alert-outline", + "codepoint": "F15D3", + "aliases": [], + "tags": [ + "Cellphone \/ Phone", + "Alert \/ Error" + ], + "author": "Michael Irigoyen", + "version": "5.6.55" + }, + { + "id": "65B6C060-C1A9-4049-A6B6-FEAC02A899D3", + "name": "sim-off", + "codepoint": "F04A9", + "aliases": [ + "signal-cellular-no-sim" + ], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "D7CAB5D9-2494-4528-B45E-A8EA49EA8262", + "name": "sim-off-outline", + "codepoint": "F15D4", + "aliases": [], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Michael Irigoyen", + "version": "5.6.55" + }, + { + "id": "C886D757-3CAE-4BAF-9F51-0747142FC508", + "name": "sim-outline", + "codepoint": "F15D5", + "aliases": [ + "sim-card-outline", + "subscriber-identity-module-outline", + "subscriber-identification-module-outline" + ], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Michael Irigoyen", + "version": "5.6.55" + }, + { + "id": "A062A6A1-E475-41CD-AFB2-283199B67CC8", + "name": "simple-icons", + "codepoint": "F131D", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "4.8.95" + }, + { + "id": "2AA993E0-4C1C-4993-84E6-D0BA0AC89EB0", + "name": "sina-weibo", + "codepoint": "F0ADF", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "2.7.94" + }, + { + "id": "2099C23C-E6F6-4C9B-AA3C-49A693E73E2E", + "name": "sine-wave", + "codepoint": "F095B", + "aliases": [ + "alternating-current", + "current-ac", + "wave", + "analog", + "frequency", + "amplitude" + ], + "tags": [ + "Audio" + ], + "author": "Nick", + "version": "2.4.85" + }, + { + "id": "673CE0A7-8AA2-4BFD-9308-B51589FBF520", + "name": "sitemap", + "codepoint": "F04AA", + "aliases": [ + "workflow", + "flowchart" + ], + "tags": [], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "34B0F8F6-2E20-4B64-B683-2B1789140CA9", + "name": "sitemap-outline", + "codepoint": "F199C", + "aliases": [ + "workflow-outline", + "flowchart-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.5.95" + }, + { + "id": "81D1F53A-2A63-4C9A-9CA9-547E68BB1329", + "name": "size-l", + "codepoint": "F13A6", + "aliases": [ + "size-large" + ], + "tags": [], + "author": "Austin Andrews", + "version": "5.0.45" + }, + { + "id": "D0FECA65-0432-4231-AFA5-EDD331188CD6", + "name": "size-m", + "codepoint": "F13A5", + "aliases": [ + "size-medium" + ], + "tags": [], + "author": "Austin Andrews", + "version": "5.0.45" + }, + { + "id": "AE5079DB-D7D6-4F38-85C1-FAE6CDF14CC2", + "name": "size-s", + "codepoint": "F13A4", + "aliases": [ + "size-small" + ], + "tags": [], + "author": "Austin Andrews", + "version": "5.0.45" + }, + { + "id": "E7FCE878-E3CA-4EF8-B0B5-D926ACE33122", + "name": "size-xl", + "codepoint": "F13A7", + "aliases": [ + "size-extra-large" + ], + "tags": [], + "author": "Austin Andrews", + "version": "5.0.45" + }, + { + "id": "D0173A61-33D3-43A2-8DB3-2E95EEEF7D7E", + "name": "size-xs", + "codepoint": "F13A3", + "aliases": [ + "size-extra-small" + ], + "tags": [], + "author": "Austin Andrews", + "version": "5.0.45" + }, + { + "id": "5E24686F-4675-4E74-93B4-DA7886270F3B", + "name": "size-xxl", + "codepoint": "F13A8", + "aliases": [ + "size-extra-extra-large" + ], + "tags": [], + "author": "Austin Andrews", + "version": "5.0.45" + }, + { + "id": "97AAC6A1-8F86-49CD-AAE2-3F9CFDDCBD82", + "name": "size-xxs", + "codepoint": "F13A2", + "aliases": [ + "size-extra-extra-small" + ], + "tags": [], + "author": "Austin Andrews", + "version": "5.0.45" + }, + { + "id": "3B3E6BCE-E0D1-4A4E-B720-D73C03C88C64", + "name": "size-xxxl", + "codepoint": "F13A9", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "5.0.45" + }, + { + "id": "CB0C6DC2-0A4E-41C8-9E6A-9A8531F754CF", + "name": "skate", + "codepoint": "F0D35", + "aliases": [ + "ice-skate" + ], + "tags": [ + "Sport" + ], + "author": "Google", + "version": "3.3.92" + }, + { + "id": "092B5CD3-BB99-492C-9784-4BE71B0C7F5B", + "name": "skate-off", + "codepoint": "F0699", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "1.7.12" + }, + { + "id": "56BF6222-BEC1-44B6-845C-AD6F84552D90", + "name": "skateboard", + "codepoint": "F14C2", + "aliases": [], + "tags": [ + "Sport" + ], + "author": "Google", + "version": "5.3.45" + }, + { + "id": "47F1C290-ED78-4459-B33C-6E2ACC867CC6", + "name": "skateboarding", + "codepoint": "F0501", + "aliases": [], + "tags": [ + "Sport" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "43E5E22F-AEEB-406D-BEF3-898BE3C91FC1", + "name": "skew-less", + "codepoint": "F0D36", + "aliases": [ + "skew-decrease" + ], + "tags": [ + "Math" + ], + "author": "Michael Irigoyen", + "version": "3.3.92" + }, + { + "id": "D84076D2-8C7C-4CD7-98EA-05108B10FF1A", + "name": "skew-more", + "codepoint": "F0D37", + "aliases": [ + "skew-increase" + ], + "tags": [ + "Math" + ], + "author": "Michael Irigoyen", + "version": "3.3.92" + }, + { + "id": "197B0D1A-34DB-4FD7-825B-FFE5C28297BB", + "name": "ski", + "codepoint": "F1304", + "aliases": [], + "tags": [ + "Sport" + ], + "author": "Google", + "version": "4.8.95" + }, + { + "id": "BD9C05A6-55EA-4F72-A216-85F990F65EDA", + "name": "ski-cross-country", + "codepoint": "F1305", + "aliases": [ + "nordic-walking" + ], + "tags": [ + "Sport" + ], + "author": "Google", + "version": "4.8.95" + }, + { + "id": "51D8DB1F-FA7C-4527-AD8E-495024CD4E2D", + "name": "ski-water", + "codepoint": "F1306", + "aliases": [], + "tags": [ + "Sport" + ], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "45260E4C-E8EB-4E35-85A8-F19A91FE1A2C", + "name": "skip-backward", + "codepoint": "F04AB", + "aliases": [ + "title-backward", + "previous-title" + ], + "tags": [ + "Home Automation" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "22E55747-AE80-4DE9-8BC8-10B61C69F161", + "name": "skip-backward-outline", + "codepoint": "F0F25", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.8.95" + }, + { + "id": "760EA0AB-7906-4FA4-86E0-CD18A4073302", + "name": "skip-forward", + "codepoint": "F04AC", + "aliases": [ + "title-forward", + "next-title" + ], + "tags": [ + "Home Automation" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "1EB18C03-3143-42C6-ACA9-D62086DA371D", + "name": "skip-forward-outline", + "codepoint": "F0F26", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.8.95" + }, + { + "id": "D2F19A25-4EF4-41A7-A91A-C03C77E32186", + "name": "skip-next", + "codepoint": "F04AD", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "0D688B5D-27F8-47CF-9234-87DB3F25D28E", + "name": "skip-next-circle", + "codepoint": "F0661", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "1.6.50" + }, + { + "id": "5AE3DE91-B2E8-48DD-A170-1F26E391F830", + "name": "skip-next-circle-outline", + "codepoint": "F0662", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "1.6.50" + }, + { + "id": "FB14BE1B-5BAD-44CD-9E68-CABE4A79F527", + "name": "skip-next-outline", + "codepoint": "F0F27", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.8.95" + }, + { + "id": "8D8B924F-0AD5-4458-9BCE-0A5887D935B6", + "name": "skip-previous", + "codepoint": "F04AE", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "3584845F-971C-45BB-8184-CFEBE0044474", + "name": "skip-previous-circle", + "codepoint": "F0663", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "1.6.50" + }, + { + "id": "FF83529F-FAA5-4FAD-9EE8-9F9A74409F93", + "name": "skip-previous-circle-outline", + "codepoint": "F0664", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "1.6.50" + }, + { + "id": "F1415D50-592B-4480-94D6-1FA82CDBA7B9", + "name": "skip-previous-outline", + "codepoint": "F0F28", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.8.95" + }, + { + "id": "AD1B00BA-C98D-4961-A444-9484EF434BEC", + "name": "skull", + "codepoint": "F068C", + "aliases": [], + "tags": [ + "Holiday", + "Gaming \/ RPG" + ], + "author": "Haley Halcyon", + "version": "1.7.12" + }, + { + "id": "C85F31B5-3C18-480D-B3A6-7F4FB7095273", + "name": "skull-crossbones", + "codepoint": "F0BC6", + "aliases": [ + "jolly-roger" + ], + "tags": [ + "Gaming \/ RPG", + "Holiday" + ], + "author": "Michael Irigoyen", + "version": "3.0.39" + }, + { + "id": "5DBA18AE-EED4-4F73-A0FD-ACC5E731A70C", + "name": "skull-crossbones-outline", + "codepoint": "F0BC7", + "aliases": [ + "jolly-roger-outline" + ], + "tags": [ + "Gaming \/ RPG", + "Holiday" + ], + "author": "Michael Irigoyen", + "version": "3.0.39" + }, + { + "id": "31E17B6D-1AD2-43C5-9FF3-6A8D2FA32C17", + "name": "skull-outline", + "codepoint": "F0BC8", + "aliases": [], + "tags": [ + "Holiday", + "Gaming \/ RPG" + ], + "author": "Michael Irigoyen", + "version": "3.0.39" + }, + { + "id": "3FF20BCB-0BFF-4F46-ABE9-954C8F2EB154", + "name": "skull-scan", + "codepoint": "F14C7", + "aliases": [ + "x-ray", + "radiology" + ], + "tags": [ + "Medical \/ Hospital" + ], + "author": "Simran", + "version": "5.3.45" + }, + { + "id": "FFA72D4C-C2EE-4492-B556-95C873FF1677", + "name": "skull-scan-outline", + "codepoint": "F14C8", + "aliases": [ + "x-ray-outline", + "radiology-outline" + ], + "tags": [ + "Medical \/ Hospital" + ], + "author": "Michael Irigoyen", + "version": "5.3.45" + }, + { + "id": "07E9D89D-2D58-40C6-9D41-49722CFC0DAE", + "name": "skype", + "codepoint": "F04AF", + "aliases": [ + "microsoft-skype" + ], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "813333B0-4A34-4AC6-819C-0FBEABC06246", + "name": "skype-business", + "codepoint": "F04B0", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "EA0E061F-B48E-4443-BBE8-6080C2258730", + "name": "slack", + "codepoint": "F04B1", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "355F6D86-E6B6-4EA4-91BA-95370240E9CF", + "name": "slash-forward", + "codepoint": "F0FDF", + "aliases": [ + "divide", + "division" + ], + "tags": [ + "Math" + ], + "author": "Michael Irigoyen", + "version": "4.0.96" + }, + { + "id": "D6A5CF49-38A9-4911-ACAC-FF9A09BBEC76", + "name": "slash-forward-box", + "codepoint": "F0FE0", + "aliases": [ + "divide-box", + "division-box" + ], + "tags": [ + "Math" + ], + "author": "Michael Irigoyen", + "version": "4.0.96" + }, + { + "id": "E67044BA-8025-4D61-916C-56DF4D6FFE6D", + "name": "sledding", + "codepoint": "F041B", + "aliases": [], + "tags": [ + "Sport" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "C9CF20D8-55F4-4997-8019-F8056ED86702", + "name": "sleep", + "codepoint": "F04B2", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "0801B02C-2187-40D1-8A03-D521D0214662", + "name": "sleep-off", + "codepoint": "F04B3", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "799D9561-AC12-4E30-8CA8-2FBF9E5597B8", + "name": "slide", + "codepoint": "F15A5", + "aliases": [ + "playground-slide" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.5.55" + }, + { + "id": "34D7190A-2B00-4B61-9A55-1E97E6F962A5", + "name": "slope-downhill", + "codepoint": "F0DFF", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "3.5.94" + }, + { + "id": "99641F5F-1036-4092-B230-C1CBC7E6A746", + "name": "slope-uphill", + "codepoint": "F0E00", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "3.5.94" + }, + { + "id": "8DAEB736-3A62-475D-81A5-47BD881EA912", + "name": "slot-machine", + "codepoint": "F1114", + "aliases": [ + "casino", + "gambling" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.3.95" + }, + { + "id": "5A083823-77FD-4C5E-98B8-EF320E8493CD", + "name": "slot-machine-outline", + "codepoint": "F1115", + "aliases": [ + "casino-outline", + "gambling-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.3.95" + }, + { + "id": "9682A6D2-A7FA-47BF-A94E-6CDEC8B55446", + "name": "smart-card", + "codepoint": "F10BD", + "aliases": [], + "tags": [ + "Account \/ User" + ], + "author": "Michael Richins", + "version": "4.2.95" + }, + { + "id": "4A41F4FC-7E7C-4EA6-80F7-61274B13CBF4", + "name": "smart-card-off", + "codepoint": "F18F7", + "aliases": [], + "tags": [ + "Account \/ User" + ], + "author": "Michael Irigoyen", + "version": "6.3.95" + }, + { + "id": "8DB35D1C-0F5C-4E09-BB38-45B6F57943B4", + "name": "smart-card-off-outline", + "codepoint": "F18F8", + "aliases": [], + "tags": [ + "Account \/ User" + ], + "author": "Michael Irigoyen", + "version": "6.3.95" + }, + { + "id": "D5EED689-19F3-4198-9A00-27C6DAE518E7", + "name": "smart-card-outline", + "codepoint": "F10BE", + "aliases": [], + "tags": [ + "Account \/ User" + ], + "author": "Michael Richins", + "version": "4.2.95" + }, + { + "id": "143C16AD-B22C-4E1D-915D-3FE9C962DD2F", + "name": "smart-card-reader", + "codepoint": "F10BF", + "aliases": [], + "tags": [ + "Account \/ User" + ], + "author": "Michael Richins", + "version": "4.2.95" + }, + { + "id": "FCC195C4-2DB3-45DE-B9D2-4535A63EDB0E", + "name": "smart-card-reader-outline", + "codepoint": "F10C0", + "aliases": [], + "tags": [ + "Account \/ User" + ], + "author": "Michael Richins", + "version": "4.2.95" + }, + { + "id": "FD344F98-3CED-4CDD-88FF-8A21A1DFDE47", + "name": "smog", + "codepoint": "F0A71", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "2.6.95" + }, + { + "id": "EE8752CF-6D3B-4D58-AFD4-1868AAA30933", + "name": "smoke", + "codepoint": "F1799", + "aliases": [ + "smog", + "fire" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "1DDC71A0-A86A-4E8F-BF1D-CD33C0B0BEA4", + "name": "smoke-detector", + "codepoint": "F0392", + "aliases": [ + "nest-protect", + "subwoofer" + ], + "tags": [ + "Device \/ Tech", + "Home Automation" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "1BF163FB-02C8-4CE6-98AA-87EFBA04294D", + "name": "smoke-detector-alert", + "codepoint": "F192E", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "60E74F0E-5537-4021-8223-BAD2B0130463", + "name": "smoke-detector-alert-outline", + "codepoint": "F192F", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "E523AF46-986A-4E8F-9662-45C61A70A887", + "name": "smoke-detector-off", + "codepoint": "F1809", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "50719FA7-F144-4C4E-9A1E-DF4F431B117C", + "name": "smoke-detector-off-outline", + "codepoint": "F180A", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "D1429C1F-766F-4F96-B784-15E6C3ECC588", + "name": "smoke-detector-outline", + "codepoint": "F1808", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "99D5165C-0609-4349-9046-E3180B32E684", + "name": "smoke-detector-variant", + "codepoint": "F180B", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "1159B2CB-5BF1-4DB6-AC9D-80CEA88FC227", + "name": "smoke-detector-variant-alert", + "codepoint": "F1930", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "C3D42E4D-5DBB-4E57-AF01-4D8E948F050E", + "name": "smoke-detector-variant-off", + "codepoint": "F180C", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "20A9F2BB-C53E-410E-A433-4CEE2305AD49", + "name": "smoking", + "codepoint": "F04B4", + "aliases": [ + "cigarette", + "smoking-area", + "smoking-rooms" + ], + "tags": [ + "Automotive" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "5F974B83-AEEC-4C52-B281-1A8663B70027", + "name": "smoking-off", + "codepoint": "F04B5", + "aliases": [ + "no-smoking", + "cigarette-off", + "smoke-free" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "8F75261A-E650-4B58-84AE-C805677DCC44", + "name": "smoking-pipe", + "codepoint": "F140D", + "aliases": [], + "tags": [], + "author": "Haley Halcyon", + "version": "5.1.45" + }, + { + "id": "D43EF949-5B56-488A-91AE-1B19CDE64ED8", + "name": "smoking-pipe-off", + "codepoint": "F1428", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "529CCAF2-D35F-4A40-BEF2-213159AE5DD9", + "name": "snail", + "codepoint": "F1677", + "aliases": [ + "gastropod" + ], + "tags": [ + "Animal" + ], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "C525609F-8CAF-40A8-A3FC-724F6C699E0A", + "name": "snake", + "codepoint": "F150E", + "aliases": [ + "reptile" + ], + "tags": [ + "Animal" + ], + "author": "Colton Wiscombe", + "version": "5.4.55" + }, + { + "id": "6DA57C23-2ADA-4CA1-8D1D-AFBBFA59C4FA", + "name": "snapchat", + "codepoint": "F04B6", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "C2A03E16-166E-4FAA-A5DB-462CE38C44FE", + "name": "snowboard", + "codepoint": "F1307", + "aliases": [], + "tags": [ + "Sport" + ], + "author": "Google", + "version": "4.8.95" + }, + { + "id": "5675A747-D467-473E-9A1D-1C61E1B5C619", + "name": "snowflake", + "codepoint": "F0717", + "aliases": [], + "tags": [ + "Weather", + "Holiday", + "Automotive" + ], + "author": "Google", + "version": "1.8.36" + }, + { + "id": "5F856EA3-F987-439D-AAFF-ED545ECBBA75", + "name": "snowflake-alert", + "codepoint": "F0F29", + "aliases": [ + "cold-alert", + "snow-advisory", + "freeze-advisory" + ], + "tags": [ + "Weather", + "Alert \/ Error" + ], + "author": "Michael Irigoyen", + "version": "3.8.95" + }, + { + "id": "017BAEB6-E5B4-4BEF-8CA3-D0ABA689DE2C", + "name": "snowflake-melt", + "codepoint": "F12CB", + "aliases": [ + "defrost" + ], + "tags": [ + "Weather" + ], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "C80A9F84-F736-4E92-8D93-05F9F72D32B8", + "name": "snowflake-off", + "codepoint": "F14E3", + "aliases": [], + "tags": [ + "Weather" + ], + "author": "Michael Irigoyen", + "version": "5.4.55" + }, + { + "id": "50B6D484-E7DC-4B88-9981-9C962C9A9EB6", + "name": "snowflake-variant", + "codepoint": "F0F2A", + "aliases": [], + "tags": [ + "Holiday", + "Weather" + ], + "author": "Michael Irigoyen", + "version": "3.8.95" + }, + { + "id": "06497E01-D87F-479B-90DC-B4E33497C8D8", + "name": "snowman", + "codepoint": "F04B7", + "aliases": [], + "tags": [ + "Holiday" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "A4C7D4DF-2B1F-424B-9502-6618F88C9A65", + "name": "snowmobile", + "codepoint": "F06DD", + "aliases": [], + "tags": [ + "Transportation + Flying", + "Sport" + ], + "author": "Google", + "version": "1.8.36" + }, + { + "id": "B4AFB6A4-C315-4B06-AE4D-AC633F3ED0A7", + "name": "soccer", + "codepoint": "F04B8", + "aliases": [ + "football" + ], + "tags": [ + "Sport" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "C24D4262-700B-46E1-82C1-01449C16205E", + "name": "soccer-field", + "codepoint": "F0834", + "aliases": [ + "football-pitch" + ], + "tags": [ + "Sport" + ], + "author": "GreenTurtwig", + "version": "2.1.19" + }, + { + "id": "D6384EF6-9386-4287-BE34-7038841AABD5", + "name": "social-distance-2-meters", + "codepoint": "F1579", + "aliases": [], + "tags": [ + "Medical \/ Hospital" + ], + "author": "Michael Irigoyen", + "version": "5.5.55" + }, + { + "id": "59F69A6A-5DB4-4938-A90A-B186655409C5", + "name": "social-distance-6-feet", + "codepoint": "F157A", + "aliases": [], + "tags": [ + "Medical \/ Hospital" + ], + "author": "Google", + "version": "5.5.55" + }, + { + "id": "5560ABF9-E635-4D73-A39B-5404443F099F", + "name": "sofa", + "codepoint": "F04B9", + "aliases": [ + "couch" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "1.5.54" + }, + { + "id": "37B31F21-3190-4E2D-A824-C5CC4FF66493", + "name": "sofa-outline", + "codepoint": "F156D", + "aliases": [ + "couch-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.5.55" + }, + { + "id": "61A9F431-1946-4F8F-9DB4-19E75151D397", + "name": "sofa-single", + "codepoint": "F156E", + "aliases": [ + "loveseat", + "love-seat", + "couch", + "chair-accent" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.5.55" + }, + { + "id": "C4595FA1-E495-4BFE-900A-A1D764B6019E", + "name": "sofa-single-outline", + "codepoint": "F156F", + "aliases": [ + "loveseat-outline", + "love-seat-outline", + "couch-outline", + "chair-accent-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.5.55" + }, + { + "id": "46CD8278-94CE-46F4-B2A5-01D4595E48A0", + "name": "solar-panel", + "codepoint": "F0D9B", + "aliases": [ + "solar-energy", + "solar-electricity" + ], + "tags": [ + "Home Automation" + ], + "author": "Kristian Mohl", + "version": "3.4.93" + }, + { + "id": "13BD6DBE-90E0-42A0-8FE6-A168974483CA", + "name": "solar-panel-large", + "codepoint": "F0D9C", + "aliases": [ + "solar-panel-energy", + "solar-panel-electricity" + ], + "tags": [ + "Home Automation" + ], + "author": "Kristian Mohl", + "version": "3.4.93" + }, + { + "id": "727F32FC-051B-43FE-9888-4616927AE828", + "name": "solar-power", + "codepoint": "F0A72", + "aliases": [ + "solar-energy", + "solar-electricity" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Richins", + "version": "2.6.95" + }, + { + "id": "4A90CB52-2637-4E5D-8333-467DD85B36F6", + "name": "soldering-iron", + "codepoint": "F1092", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "4.2.95" + }, + { + "id": "F0E0017F-DD8C-4811-9428-613238CA66A4", + "name": "solid", + "codepoint": "F068D", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.7.12" + }, + { + "id": "FF92F5A9-DE89-4E7D-BCAB-98920EA96FFE", + "name": "sony-playstation", + "codepoint": "F0414", + "aliases": [ + "sony-playstation", + "playstation-network" + ], + "tags": [ + "Brand \/ Logo", + "Gaming \/ RPG" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "3052FDE9-791A-43E8-ACF4-A5EB7DF8296F", + "name": "sort", + "codepoint": "F04BA", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "496476A3-F614-4925-90E6-3BB83C1C4E37", + "name": "sort-alphabetical-ascending", + "codepoint": "F05BD", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "frankgrinaert", + "version": "1.5.54" + }, + { + "id": "96571AB7-B3D4-4A76-ADE0-47D931FF1F0A", + "name": "sort-alphabetical-ascending-variant", + "codepoint": "F1148", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Samuele Dassatti", + "version": "4.4.95" + }, + { + "id": "7F545D3A-5E66-42D4-88AB-8A2BD817D731", + "name": "sort-alphabetical-descending", + "codepoint": "F05BF", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "frankgrinaert", + "version": "1.5.54" + }, + { + "id": "D4F8234D-4EE3-4825-861E-C46E8FE6F438", + "name": "sort-alphabetical-descending-variant", + "codepoint": "F1149", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Samuele Dassatti", + "version": "4.4.95" + }, + { + "id": "C2687EF2-6AEB-48BC-98E5-9A010C6E2BE7", + "name": "sort-alphabetical-variant", + "codepoint": "F04BB", + "aliases": [ + "sort-by-alpha", + "sort-alphabetically" + ], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "F36D1111-54BF-4BB8-AE34-DE4809105551", + "name": "sort-ascending", + "codepoint": "F04BC", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "frankgrinaert", + "version": "1.5.54" + }, + { + "id": "BDB3C0CD-D017-4895-82AD-41FEE4351FA6", + "name": "sort-bool-ascending", + "codepoint": "F1385", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "frankgrinaert", + "version": "5.0.45" + }, + { + "id": "9F0F11BF-8F55-45CD-B185-7C8BC278954C", + "name": "sort-bool-ascending-variant", + "codepoint": "F1386", + "aliases": [ + "sort-checkbox-ascending" + ], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "frankgrinaert", + "version": "5.0.45" + }, + { + "id": "36E782AF-0396-45C7-B5C2-61FB37C01E2F", + "name": "sort-bool-descending", + "codepoint": "F1387", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "frankgrinaert", + "version": "5.0.45" + }, + { + "id": "549371B9-36F9-45E7-918A-72EEB98F9572", + "name": "sort-bool-descending-variant", + "codepoint": "F1388", + "aliases": [ + "sort-checkbox-descending" + ], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "frankgrinaert", + "version": "5.0.45" + }, + { + "id": "87CE4E85-7911-415C-89AB-133A2AB8BC57", + "name": "sort-calendar-ascending", + "codepoint": "F1547", + "aliases": [ + "sort-date-ascending" + ], + "tags": [ + "Text \/ Content \/ Format", + "Date \/ Time" + ], + "author": "Austin Andrews", + "version": "5.4.55" + }, + { + "id": "D01B3C7C-64DC-4486-A656-55F7024C96AA", + "name": "sort-calendar-descending", + "codepoint": "F1548", + "aliases": [ + "sort-date-descending" + ], + "tags": [ + "Text \/ Content \/ Format", + "Date \/ Time" + ], + "author": "Austin Andrews", + "version": "5.4.55" + }, + { + "id": "2A4F548A-F4C1-48F2-BFB1-A6A1ACB794A6", + "name": "sort-clock-ascending", + "codepoint": "F1549", + "aliases": [ + "sort-time-ascending" + ], + "tags": [ + "Text \/ Content \/ Format", + "Date \/ Time" + ], + "author": "Michael Irigoyen", + "version": "5.4.55" + }, + { + "id": "85579FDA-7E54-483B-B1DD-A1920DFBEED6", + "name": "sort-clock-ascending-outline", + "codepoint": "F154A", + "aliases": [ + "sort-time-ascending-outline" + ], + "tags": [ + "Text \/ Content \/ Format", + "Date \/ Time" + ], + "author": "Michael Irigoyen", + "version": "5.4.55" + }, + { + "id": "8064DE58-939A-4179-A65E-0F5FA4AD6A18", + "name": "sort-clock-descending", + "codepoint": "F154B", + "aliases": [ + "sort-time-descending" + ], + "tags": [ + "Text \/ Content \/ Format", + "Date \/ Time" + ], + "author": "Michael Irigoyen", + "version": "5.4.55" + }, + { + "id": "B574E857-7AE0-493E-82E1-36DC10882508", + "name": "sort-clock-descending-outline", + "codepoint": "F154C", + "aliases": [ + "sort-time-descending-outline" + ], + "tags": [ + "Text \/ Content \/ Format", + "Date \/ Time" + ], + "author": "Michael Irigoyen", + "version": "5.4.55" + }, + { + "id": "F0028BDF-0589-400F-8596-100CCB029D6E", + "name": "sort-descending", + "codepoint": "F04BD", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "frankgrinaert", + "version": "1.5.54" + }, + { + "id": "68CF5B27-ACB2-468B-BD75-1DAE92A7D242", + "name": "sort-numeric-ascending", + "codepoint": "F1389", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "frankgrinaert", + "version": "5.0.45" + }, + { + "id": "D3472197-9E32-440B-9F56-E84F2D35C657", + "name": "sort-numeric-ascending-variant", + "codepoint": "F090D", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Michael Irigoyen", + "version": "2.3.50" + }, + { + "id": "E0ABC4A1-3840-48EF-82F8-BFF825D02F64", + "name": "sort-numeric-descending", + "codepoint": "F138A", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "frankgrinaert", + "version": "5.0.45" + }, + { + "id": "618ED59F-832C-4DA8-A8F6-421CC6A10305", + "name": "sort-numeric-descending-variant", + "codepoint": "F0AD2", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Michael Irigoyen", + "version": "2.7.94" + }, + { + "id": "2CD8E0F3-0AF4-4BBD-B1C8-EEF6391F62C3", + "name": "sort-numeric-variant", + "codepoint": "F04BE", + "aliases": [ + "sort-numerically" + ], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "A00FD3F3-01E7-489E-AB22-66F3B94AF6C0", + "name": "sort-reverse-variant", + "codepoint": "F033C", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "9E32B54D-9759-4233-B358-C00A11300713", + "name": "sort-variant", + "codepoint": "F04BF", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "450895A4-8BFF-4F63-A567-2010226F7464", + "name": "sort-variant-lock", + "codepoint": "F0CCD", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format", + "Lock" + ], + "author": "Christopher Schreiner", + "version": "3.2.89" + }, + { + "id": "30DC202C-F695-4A76-B3BB-293BCC995A6E", + "name": "sort-variant-lock-open", + "codepoint": "F0CCE", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format", + "Lock" + ], + "author": "Christopher Schreiner", + "version": "3.2.89" + }, + { + "id": "51D1A98E-7CD7-4BD7-88C9-333B5435C580", + "name": "sort-variant-remove", + "codepoint": "F1147", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "1A5FBE33-5A69-4ED4-8A33-416EFA9B24CD", + "name": "soundbar", + "codepoint": "F17DB", + "aliases": [ + "speaker-bar" + ], + "tags": [ + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "6.1.95" + }, + { + "id": "5952089F-872D-454C-AD1F-18B205938245", + "name": "soundcloud", + "codepoint": "F04C0", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "AADA1B60-0161-4417-9726-75AFB5C7AC31", + "name": "source-branch", + "codepoint": "F062C", + "aliases": [], + "tags": [ + "Developer \/ Languages" + ], + "author": "Austin Andrews", + "version": "1.6.50" + }, + { + "id": "66701C6C-D1D4-42FF-AA03-74C3F4E65AC1", + "name": "source-branch-check", + "codepoint": "F14CF", + "aliases": [], + "tags": [ + "Developer \/ Languages" + ], + "author": "Michael Irigoyen", + "version": "5.3.45" + }, + { + "id": "288DC509-ABA1-436D-8D8D-F54FEE2DA4B8", + "name": "source-branch-minus", + "codepoint": "F14CB", + "aliases": [], + "tags": [ + "Developer \/ Languages" + ], + "author": "Michael Irigoyen", + "version": "5.3.45" + }, + { + "id": "D5EAA72B-6FF0-4520-8207-A7E3E47B35F5", + "name": "source-branch-plus", + "codepoint": "F14CA", + "aliases": [], + "tags": [ + "Developer \/ Languages" + ], + "author": "Michael Irigoyen", + "version": "5.3.45" + }, + { + "id": "58A72E01-DBCC-4C66-AAFE-FB37845FB50E", + "name": "source-branch-refresh", + "codepoint": "F14CD", + "aliases": [], + "tags": [ + "Developer \/ Languages" + ], + "author": "Michael Irigoyen", + "version": "5.3.45" + }, + { + "id": "EB47CC8C-8EF2-4FE2-9530-2360C26378B6", + "name": "source-branch-remove", + "codepoint": "F14CC", + "aliases": [], + "tags": [ + "Developer \/ Languages" + ], + "author": "Michael Irigoyen", + "version": "5.3.45" + }, + { + "id": "0A420930-2315-468C-B639-0D7E96D6937A", + "name": "source-branch-sync", + "codepoint": "F14CE", + "aliases": [], + "tags": [ + "Developer \/ Languages" + ], + "author": "Michael Irigoyen", + "version": "5.3.45" + }, + { + "id": "B0400135-C84A-47D8-AD30-B6BD8292E6A4", + "name": "source-commit", + "codepoint": "F0718", + "aliases": [], + "tags": [], + "author": "Case Sandberg", + "version": "1.8.36" + }, + { + "id": "5558E497-77AD-48F4-9456-E6D6B4CA991B", + "name": "source-commit-end", + "codepoint": "F0719", + "aliases": [], + "tags": [], + "author": "Case Sandberg", + "version": "1.8.36" + }, + { + "id": "5681B6C8-CC7F-42B0-9B6F-B53D9A72D12F", + "name": "source-commit-end-local", + "codepoint": "F071A", + "aliases": [], + "tags": [], + "author": "Case Sandberg", + "version": "1.8.36" + }, + { + "id": "DF889541-FEF0-42C0-BF6E-E29D4503C3FB", + "name": "source-commit-local", + "codepoint": "F071B", + "aliases": [], + "tags": [], + "author": "Case Sandberg", + "version": "1.8.36" + }, + { + "id": "42A5B80B-C7A6-42F4-8437-458F504B7AF5", + "name": "source-commit-next-local", + "codepoint": "F071C", + "aliases": [], + "tags": [], + "author": "Case Sandberg", + "version": "1.8.36" + }, + { + "id": "6647D5DC-4BF4-47FB-9B11-F1ABB94B3769", + "name": "source-commit-start", + "codepoint": "F071D", + "aliases": [], + "tags": [], + "author": "Case Sandberg", + "version": "1.8.36" + }, + { + "id": "64F8200C-7866-46A6-9E8B-1CAF621517CC", + "name": "source-commit-start-next-local", + "codepoint": "F071E", + "aliases": [], + "tags": [], + "author": "Case Sandberg", + "version": "1.8.36" + }, + { + "id": "F2A480EB-B06A-4472-88B9-C881754675FE", + "name": "source-fork", + "codepoint": "F04C1", + "aliases": [], + "tags": [ + "Developer \/ Languages" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "C4A094D6-A68C-41F8-A2EC-C87997DACE70", + "name": "source-merge", + "codepoint": "F062D", + "aliases": [], + "tags": [ + "Developer \/ Languages" + ], + "author": "Austin Andrews", + "version": "1.6.50" + }, + { + "id": "6555FD23-E5EE-4F40-91CF-B72476ADED54", + "name": "source-pull", + "codepoint": "F04C2", + "aliases": [], + "tags": [ + "Developer \/ Languages" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "1D318024-029E-4654-A318-6647D265CDD9", + "name": "source-repository", + "codepoint": "F0CCF", + "aliases": [], + "tags": [ + "Developer \/ Languages" + ], + "author": "Austin Andrews", + "version": "3.2.89" + }, + { + "id": "16D37AE7-409E-48A5-BE24-9DCBA0792FD7", + "name": "source-repository-multiple", + "codepoint": "F0CD0", + "aliases": [ + "source-repositories" + ], + "tags": [ + "Developer \/ Languages" + ], + "author": "Austin Andrews", + "version": "3.2.89" + }, + { + "id": "62A5E551-73E0-4C84-89E4-C0F34BDACEFA", + "name": "soy-sauce", + "codepoint": "F07EE", + "aliases": [ + "soya-sauce" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Colton Wiscombe", + "version": "2.0.46" + }, + { + "id": "31D89882-A6D2-4E79-B441-582B1497C3D2", + "name": "soy-sauce-off", + "codepoint": "F13FC", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "84F00C86-0380-4554-B142-286C3B80BA3A", + "name": "spa", + "codepoint": "F0CD1", + "aliases": [ + "flower-lotus", + "plant" + ], + "tags": [ + "Nature" + ], + "author": "Google", + "version": "3.2.89" + }, + { + "id": "B0D344FE-8924-48EF-BFBA-93DB1C77DFD1", + "name": "spa-outline", + "codepoint": "F0CD2", + "aliases": [ + "flower-lotus-outline", + "plant" + ], + "tags": [ + "Nature" + ], + "author": "Google", + "version": "3.2.89" + }, + { + "id": "0C50BCF5-076C-4DBB-BBFC-8B74B3CC64E7", + "name": "space-invaders", + "codepoint": "F0BC9", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Michael Richins", + "version": "3.0.39" + }, + { + "id": "0F961F30-F687-4232-98E7-C27F2FC64293", + "name": "space-station", + "codepoint": "F1383", + "aliases": [], + "tags": [], + "author": "nilsfast", + "version": "4.9.95" + }, + { + "id": "7D15FB8A-6AD7-47C9-93AD-4E968C39CDBF", + "name": "spade", + "codepoint": "F0E65", + "aliases": [], + "tags": [ + "Hardware \/ Tools" + ], + "author": "GreenTurtwig", + "version": "3.6.95" + }, + { + "id": "43C37FC5-E271-40FA-BB50-C139DDD5B15B", + "name": "speaker", + "codepoint": "F04C3", + "aliases": [], + "tags": [ + "Audio", + "Home Automation" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "E9F560A8-FFD9-44CD-8736-00C627756591", + "name": "speaker-bluetooth", + "codepoint": "F09A2", + "aliases": [], + "tags": [ + "Audio" + ], + "author": "GreenTurtwig", + "version": "2.4.85" + }, + { + "id": "6CBEB113-DF44-4DCE-A490-5AAD4766CE28", + "name": "speaker-multiple", + "codepoint": "F0D38", + "aliases": [ + "speakers" + ], + "tags": [ + "Audio" + ], + "author": "Michael Richins", + "version": "3.3.92" + }, + { + "id": "9B55ECCE-270B-4A52-9A96-80BEECAD1E0B", + "name": "speaker-off", + "codepoint": "F04C4", + "aliases": [], + "tags": [ + "Audio", + "Home Automation" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "F9EA980F-2C75-48DE-9D56-9A15CFE52865", + "name": "speaker-wireless", + "codepoint": "F071F", + "aliases": [], + "tags": [ + "Audio", + "Home Automation" + ], + "author": "Simran", + "version": "1.8.36" + }, + { + "id": "B8B83A21-D267-47BD-868F-BECB081CEC1C", + "name": "spear", + "codepoint": "F1845", + "aliases": [ + "staff", + "fishing" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Colton Wiscombe", + "version": "6.2.95" + }, + { + "id": "F0EE6F6A-2B43-4880-8DC9-6E7515B3BEDE", + "name": "speedometer", + "codepoint": "F04C5", + "aliases": [], + "tags": [ + "Automotive" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "86833899-057F-4099-AF77-0EECD2BAE698", + "name": "speedometer-medium", + "codepoint": "F0F85", + "aliases": [], + "tags": [ + "Automotive" + ], + "author": "GreenTurtwig", + "version": "3.9.97" + }, + { + "id": "9500D7AF-3917-41AB-8694-94FABA5F94ED", + "name": "speedometer-slow", + "codepoint": "F0F86", + "aliases": [], + "tags": [ + "Automotive" + ], + "author": "GreenTurtwig", + "version": "3.9.97" + }, + { + "id": "72253002-9545-40A4-95A4-49401269B553", + "name": "spellcheck", + "codepoint": "F04C6", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "C599941B-1EE8-44E8-8FE9-D8AD503BB57B", + "name": "sphere", + "codepoint": "F1954", + "aliases": [], + "tags": [ + "Shape" + ], + "author": "Colton Wiscombe", + "version": "6.4.95" + }, + { + "id": "9E6A501E-659C-4C6B-8ADE-4BF61DAADDD2", + "name": "sphere-off", + "codepoint": "F1955", + "aliases": [], + "tags": [ + "Shape" + ], + "author": "Colton Wiscombe", + "version": "6.4.95" + }, + { + "id": "BCDD4A6F-3064-4FF3-9172-0BBF8BED2D2C", + "name": "spider", + "codepoint": "F11EA", + "aliases": [ + "arachnid", + "bug" + ], + "tags": [ + "Holiday", + "Nature", + "Animal" + ], + "author": "Michael Richins", + "version": "4.5.95" + }, + { + "id": "1F613123-9D4B-4C5A-84FB-F6B804BBFB21", + "name": "spider-thread", + "codepoint": "F11EB", + "aliases": [ + "arachnid-thread", + "bug" + ], + "tags": [ + "Holiday", + "Nature", + "Animal" + ], + "author": "Michael Richins", + "version": "4.5.95" + }, + { + "id": "8464C75D-EA57-4E89-80E9-BE6A48793809", + "name": "spider-web", + "codepoint": "F0BCA", + "aliases": [ + "cobweb", + "arachnid-web" + ], + "tags": [ + "Holiday" + ], + "author": "Austin Andrews", + "version": "3.0.39" + }, + { + "id": "B647E730-0D7E-4F13-A051-74D92C2A6F0A", + "name": "spirit-level", + "codepoint": "F14F1", + "aliases": [], + "tags": [ + "Hardware \/ Tools" + ], + "author": "Michael Irigoyen", + "version": "5.4.55" + }, + { + "id": "D68EF8DE-C9F5-47FB-BCD4-C0DD4D7FCBFD", + "name": "spoon-sugar", + "codepoint": "F1429", + "aliases": [], + "tags": [ + "Food \/ Drink" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "51C1DE39-1C25-49B7-A295-DD13B874C48B", + "name": "spotify", + "codepoint": "F04C7", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "A4956491-730F-4BC9-A6C1-03AF3C54C134", + "name": "spotlight", + "codepoint": "F04C8", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "13AE04D2-BB67-4CA4-89F6-11C88C2A217E", + "name": "spotlight-beam", + "codepoint": "F04C9", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "0CDAFE95-E28B-4A8D-9634-C6BBB99EE598", + "name": "spray", + "codepoint": "F0665", + "aliases": [ + "paint", + "aerosol" + ], + "tags": [ + "Agriculture", + "Drawing \/ Art", + "Color" + ], + "author": "Austin Andrews", + "version": "1.6.50" + }, + { + "id": "997059BA-96F4-456C-8B53-8355521AE536", + "name": "spray-bottle", + "codepoint": "F0AE0", + "aliases": [ + "cleaning" + ], + "tags": [], + "author": "Google", + "version": "2.7.94" + }, + { + "id": "3B348D41-66D2-4CC7-894A-1C2E9EE64C7F", + "name": "sprinkler", + "codepoint": "F105F", + "aliases": [ + "irrigation" + ], + "tags": [ + "Home Automation", + "Agriculture" + ], + "author": "Michael Irigoyen", + "version": "4.1.95" + }, + { + "id": "ECE05EC2-192B-4450-A0CB-78249EC9140A", + "name": "sprinkler-fire", + "codepoint": "F199D", + "aliases": [ + "sprinkler-mist", + "mister", + "sprinkler-head" + ], + "tags": [ + "Home Automation", + "Agriculture" + ], + "author": "Michael Irigoyen", + "version": "6.5.95" + }, + { + "id": "4CE94553-ECA2-4C72-B66B-EEE5106F1438", + "name": "sprinkler-variant", + "codepoint": "F1060", + "aliases": [ + "irrigation" + ], + "tags": [ + "Home Automation", + "Agriculture" + ], + "author": "Michael Irigoyen", + "version": "4.1.95" + }, + { + "id": "58F40CA4-567A-42EF-A5D9-DD6A1BB42437", + "name": "sprout", + "codepoint": "F0E66", + "aliases": [ + "seedling", + "plant" + ], + "tags": [ + "Agriculture", + "Nature" + ], + "author": "Michael Irigoyen", + "version": "3.6.95" + }, + { + "id": "DDE9D3A4-FF81-4182-8FEE-3A0DD30F88F8", + "name": "sprout-outline", + "codepoint": "F0E67", + "aliases": [ + "seedling-outline", + "plant-outline" + ], + "tags": [ + "Agriculture", + "Nature" + ], + "author": "Michael Irigoyen", + "version": "3.6.95" + }, + { + "id": "5659F8EC-377D-41D2-AB3A-52DC40815DC7", + "name": "square", + "codepoint": "F0764", + "aliases": [], + "tags": [ + "Shape" + ], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "F49668FC-6B0F-43E9-BB4E-044C3C9229AA", + "name": "square-circle", + "codepoint": "F1500", + "aliases": [ + "vegetarian", + "lacto-vegetarian" + ], + "tags": [ + "Food \/ Drink" + ], + "author": "Michael Irigoyen", + "version": "5.4.55" + }, + { + "id": "22469E65-F1CB-408D-B6B5-1E599A85E368", + "name": "square-edit-outline", + "codepoint": "F090C", + "aliases": [], + "tags": [ + "Edit \/ Modify" + ], + "author": "GreenTurtwig", + "version": "2.3.50" + }, + { + "id": "0267FB77-EB23-41D4-92B4-FF65796BDF40", + "name": "square-medium", + "codepoint": "F0A13", + "aliases": [], + "tags": [ + "Shape" + ], + "author": "Michael Irigoyen", + "version": "2.5.94" + }, + { + "id": "1EC70A02-36D5-4C3B-A721-018653864C6D", + "name": "square-medium-outline", + "codepoint": "F0A14", + "aliases": [], + "tags": [ + "Shape" + ], + "author": "Michael Irigoyen", + "version": "2.5.94" + }, + { + "id": "19F3DC9F-4861-4220-944C-8BE8D543902B", + "name": "square-off", + "codepoint": "F12EE", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "32823532-5FAC-4894-8577-EAED930DE4C2", + "name": "square-off-outline", + "codepoint": "F12EF", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "6F9AA4F8-ECC6-495E-87C0-84DCE1327F4D", + "name": "square-opacity", + "codepoint": "F1854", + "aliases": [ + "square-transparent" + ], + "tags": [ + "Drawing \/ Art", + "Shape" + ], + "author": "Michael Irigoyen", + "version": "6.2.95" + }, + { + "id": "5ED659B5-F175-445F-950D-0B4DDAB3F8B3", + "name": "square-outline", + "codepoint": "F0763", + "aliases": [], + "tags": [ + "Shape" + ], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "D0835CDD-0255-4A0D-B86F-DAB300C5ADCC", + "name": "square-root", + "codepoint": "F0784", + "aliases": [], + "tags": [ + "Math" + ], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "4DD48496-5BE6-4866-A298-1D9D399651B0", + "name": "square-root-box", + "codepoint": "F09A3", + "aliases": [], + "tags": [], + "author": "Nick", + "version": "2.4.85" + }, + { + "id": "56B32490-2AEB-4EF7-B0F8-72D918829BE2", + "name": "square-rounded", + "codepoint": "F14FB", + "aliases": [], + "tags": [], + "author": "Jeff Anders", + "version": "5.4.55" + }, + { + "id": "9E46259E-F519-4CCA-BE7E-0DAC8230B3A4", + "name": "square-rounded-outline", + "codepoint": "F14FC", + "aliases": [], + "tags": [], + "author": "Jeff Anders", + "version": "5.4.55" + }, + { + "id": "E4490267-ACAE-4E86-8747-8D2D620DC707", + "name": "square-small", + "codepoint": "F0A15", + "aliases": [ + "bullet" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "2.5.94" + }, + { + "id": "F55F6161-5EE4-4168-881C-A50E671AC25F", + "name": "square-wave", + "codepoint": "F147B", + "aliases": [], + "tags": [ + "Audio" + ], + "author": "Haley Halcyon", + "version": "5.2.45" + }, + { + "id": "363A0CD3-194D-4F7F-9287-82B8D565B064", + "name": "squeegee", + "codepoint": "F0AE1", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "2.7.94" + }, + { + "id": "EC87D6AA-77FC-462A-82AC-715550CD98AB", + "name": "ssh", + "codepoint": "F08C0", + "aliases": [], + "tags": [], + "author": "GreenTurtwig", + "version": "2.2.43" + }, + { + "id": "D76A8752-ED97-4E90-95EC-B1D6E81ABA9E", + "name": "stack-exchange", + "codepoint": "F060B", + "aliases": [ + "stackexchange" + ], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "72E7037B-1C3B-44BB-A9EC-FC2D6B3EA745", + "name": "stack-overflow", + "codepoint": "F04CC", + "aliases": [ + "stackoverflow" + ], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "7FB125A0-875A-4766-BFAF-02CC45226530", + "name": "stackpath", + "codepoint": "F0359", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "5FDB24B6-FF16-4575-A794-E5CCEB95CC81", + "name": "stadium", + "codepoint": "F0FF9", + "aliases": [], + "tags": [], + "author": "Google", + "version": "4.0.96" + }, + { + "id": "0407BE27-099D-4170-BA1C-A87A4239F9DA", + "name": "stadium-variant", + "codepoint": "F0720", + "aliases": [ + "arena" + ], + "tags": [ + "Places", + "Sport" + ], + "author": "Alex Efremo", + "version": "1.8.36" + }, + { + "id": "D5BBEF8B-FC7A-4FA5-9DA6-4D970AC6A530", + "name": "stairs", + "codepoint": "F04CD", + "aliases": [], + "tags": [ + "Transportation + Other" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "58C2BC63-FCF5-445B-B351-23CF48253FEF", + "name": "stairs-box", + "codepoint": "F139E", + "aliases": [], + "tags": [], + "author": "Moma Design Studio", + "version": "5.0.45" + }, + { + "id": "5B344682-C177-40CC-97EC-418D010EAE07", + "name": "stairs-down", + "codepoint": "F12BE", + "aliases": [], + "tags": [ + "Transportation + Other" + ], + "author": "Austin Andrews", + "version": "4.8.95" + }, + { + "id": "8F09C6B0-DFE8-4700-A90A-476EFA6454F4", + "name": "stairs-up", + "codepoint": "F12BD", + "aliases": [], + "tags": [ + "Transportation + Other" + ], + "author": "Austin Andrews", + "version": "4.8.95" + }, + { + "id": "2D9C68D6-6DFA-42CC-B69C-E28011FC2BF7", + "name": "stamper", + "codepoint": "F0D39", + "aliases": [], + "tags": [], + "author": "Nick", + "version": "3.3.92" + }, + { + "id": "DAA79A7B-03FB-431A-85DD-AB9749783DC0", + "name": "standard-definition", + "codepoint": "F07EF", + "aliases": [], + "tags": [ + "Video \/ Movie" + ], + "author": "Austin Andrews", + "version": "2.0.46" + }, + { + "id": "53D81A11-D8FF-46F4-A0CB-B7F668BA720D", + "name": "star", + "codepoint": "F04CE", + "aliases": [ + "grade", + "star-rate", + "favorite" + ], + "tags": [ + "Shape" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "07CA9ED6-5D94-4145-AB3E-EA9FD7283E0A", + "name": "star-box", + "codepoint": "F0A73", + "aliases": [ + "favorite-box" + ], + "tags": [], + "author": "Austin Andrews", + "version": "2.6.95" + }, + { + "id": "9270C3C4-1ADB-4965-9DAE-444F9448B39E", + "name": "star-box-multiple", + "codepoint": "F1286", + "aliases": [ + "favorite-box-multiple" + ], + "tags": [], + "author": "Yaroslav Bandura", + "version": "4.7.95" + }, + { + "id": "2B9ACC0A-EA3D-478D-935E-EAFA8F8580CF", + "name": "star-box-multiple-outline", + "codepoint": "F1287", + "aliases": [ + "favorite-box-multiple-outline" + ], + "tags": [], + "author": "Yaroslav Bandura", + "version": "4.7.95" + }, + { + "id": "B22FEE66-3EC9-466A-9014-EF53030FA3D9", + "name": "star-box-outline", + "codepoint": "F0A74", + "aliases": [ + "favorite-box-outline" + ], + "tags": [], + "author": "Austin Andrews", + "version": "2.6.95" + }, + { + "id": "6AB2A77F-C9ED-4EF1-BDD3-4E060E690A7E", + "name": "star-check", + "codepoint": "F1566", + "aliases": [ + "favorite-check" + ], + "tags": [ + "Shape" + ], + "author": "Michael Irigoyen", + "version": "5.5.55" + }, + { + "id": "94E37A05-1F0E-49EE-92D8-5FE57B54123F", + "name": "star-check-outline", + "codepoint": "F156A", + "aliases": [ + "favorite-check-outline" + ], + "tags": [ + "Shape" + ], + "author": "Michael Irigoyen", + "version": "5.5.55" + }, + { + "id": "76D19C8B-0302-436A-A19F-5AC5EE8AC88C", + "name": "star-circle", + "codepoint": "F04CF", + "aliases": [ + "stars", + "favorite-circle" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "9E034CD9-F400-4D4A-A2CB-6030313F2CED", + "name": "star-circle-outline", + "codepoint": "F09A4", + "aliases": [ + "feature-highlight", + "favorite-circle-outline" + ], + "tags": [], + "author": "Google", + "version": "2.4.85" + }, + { + "id": "82407F8C-2E0B-4F79-9409-0C267A248470", + "name": "star-cog", + "codepoint": "F1668", + "aliases": [ + "favorite-cog" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "D1100539-0788-4C74-AD03-8C5F8383DF2E", + "name": "star-cog-outline", + "codepoint": "F1669", + "aliases": [ + "favorite-cog-outline" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "94C88D65-EE50-4DC5-920D-FA4181DE0413", + "name": "star-crescent", + "codepoint": "F0979", + "aliases": [ + "islam", + "religion-islamic", + "religion-muslim" + ], + "tags": [ + "Religion" + ], + "author": "Nick", + "version": "2.4.85" + }, + { + "id": "7EF95029-012C-456C-A1E8-BB96961071FD", + "name": "star-david", + "codepoint": "F097A", + "aliases": [ + "jewish", + "religion-judaic", + "judaism", + "magen-david" + ], + "tags": [ + "Religion" + ], + "author": "Nick", + "version": "2.4.85" + }, + { + "id": "20FBE06D-72C3-4E1C-945D-C7E69DC0736D", + "name": "star-face", + "codepoint": "F09A5", + "aliases": [ + "favorite-face", + "emoji-star", + "emoticon-star" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Google", + "version": "2.4.85" + }, + { + "id": "4F7E1FD5-FE11-4509-8253-D0B2EB7E3CFF", + "name": "star-four-points", + "codepoint": "F0AE2", + "aliases": [], + "tags": [ + "Shape" + ], + "author": "Michael Irigoyen", + "version": "2.7.94" + }, + { + "id": "F74484E2-76FB-4671-9960-AE18E95F04FA", + "name": "star-four-points-outline", + "codepoint": "F0AE3", + "aliases": [], + "tags": [ + "Shape" + ], + "author": "Michael Irigoyen", + "version": "2.7.94" + }, + { + "id": "E86BFC0D-B4A4-41F2-A8E3-D1AE79072A45", + "name": "star-half", + "codepoint": "F0246", + "aliases": [ + "favorite-half" + ], + "tags": [ + "Shape" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "52E97617-C7F4-45D0-98E0-E9B4407EC179", + "name": "star-half-full", + "codepoint": "F04D0", + "aliases": [ + "favorite-half-full" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "CA24758C-3B0C-44DE-9395-C5CAF2981E5D", + "name": "star-minus", + "codepoint": "F1564", + "aliases": [ + "favorite-minus" + ], + "tags": [ + "Shape" + ], + "author": "Michael Irigoyen", + "version": "5.5.55" + }, + { + "id": "24A0E7F1-32AA-4B4B-B0BC-93AD9F7E2F8A", + "name": "star-minus-outline", + "codepoint": "F1568", + "aliases": [ + "favorite-minus-outline" + ], + "tags": [ + "Shape" + ], + "author": "Michael Irigoyen", + "version": "5.5.55" + }, + { + "id": "3CE96C58-D12F-474D-916F-D0509E3BA408", + "name": "star-off", + "codepoint": "F04D1", + "aliases": [ + "favorite-off" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "297E76E3-B7A2-44A1-A340-F479AEFEF282", + "name": "star-off-outline", + "codepoint": "F155B", + "aliases": [ + "favorite-off-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.5.55" + }, + { + "id": "D443AD2F-291D-496E-ACD2-109891446FF2", + "name": "star-outline", + "codepoint": "F04D2", + "aliases": [ + "star-border", + "favorite-outline" + ], + "tags": [ + "Shape" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "A782B3BE-28DC-4BF8-A209-42DC8F1CE287", + "name": "star-plus", + "codepoint": "F1563", + "aliases": [ + "favorite-plus", + "star-add", + "favorite-add" + ], + "tags": [ + "Shape" + ], + "author": "Michael Irigoyen", + "version": "5.5.55" + }, + { + "id": "0CBFD9AD-12B1-4AAF-A9CC-9CA46FEB47FD", + "name": "star-plus-outline", + "codepoint": "F1567", + "aliases": [ + "star-add-outline", + "favorite-plus-outline", + "favorite-add-outline" + ], + "tags": [ + "Shape" + ], + "author": "Michael Irigoyen", + "version": "5.5.55" + }, + { + "id": "49254980-CD72-42B5-A87B-F24EFC2E4EA5", + "name": "star-remove", + "codepoint": "F1565", + "aliases": [ + "favorite-remove" + ], + "tags": [ + "Shape" + ], + "author": "Michael Irigoyen", + "version": "5.5.55" + }, + { + "id": "40769B91-9676-413A-8D6D-9D21132637E2", + "name": "star-remove-outline", + "codepoint": "F1569", + "aliases": [ + "favorite-remove-outline" + ], + "tags": [ + "Shape" + ], + "author": "Michael Irigoyen", + "version": "5.5.55" + }, + { + "id": "30D8C8F6-3BDE-40B8-A015-6E607C370360", + "name": "star-settings", + "codepoint": "F166A", + "aliases": [ + "favorite-settings" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "AA6C9E76-AC9C-4373-8AC4-F5C706741FC9", + "name": "star-settings-outline", + "codepoint": "F166B", + "aliases": [ + "favorite-settings-outline" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.7.55" + }, + { + "id": "18267D80-A569-4013-84F4-7024F3990F47", + "name": "star-shooting", + "codepoint": "F1741", + "aliases": [ + "favorite-shooting" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "27A6F1B6-E095-494B-8CC7-660695DC6E70", + "name": "star-shooting-outline", + "codepoint": "F1742", + "aliases": [ + "favorite-shooting-outline" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "815B35DE-0C4D-46AD-90EC-2AFEE0A5FC17", + "name": "star-three-points", + "codepoint": "F0AE4", + "aliases": [], + "tags": [ + "Shape" + ], + "author": "Michael Irigoyen", + "version": "2.7.94" + }, + { + "id": "3BA12DC6-1D79-4B2A-BCF2-52FAF2160E23", + "name": "star-three-points-outline", + "codepoint": "F0AE5", + "aliases": [], + "tags": [ + "Shape" + ], + "author": "Michael Irigoyen", + "version": "2.7.94" + }, + { + "id": "77FB59F8-81D3-4919-BBEE-3B897EC24C4E", + "name": "state-machine", + "codepoint": "F11EF", + "aliases": [], + "tags": [], + "author": "frankgrinaert", + "version": "4.5.95" + }, + { + "id": "FBD721A3-7CD8-4769-902C-2B434CA107EE", + "name": "steam", + "codepoint": "F04D3", + "aliases": [], + "tags": [ + "Brand \/ Logo", + "Gaming \/ RPG" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "A2FE9DC5-BC17-4265-9D2C-4CA20135C4BB", + "name": "steering", + "codepoint": "F04D4", + "aliases": [ + "search-hands-free" + ], + "tags": [ + "Automotive" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "1489D950-AD3A-47BD-A0CD-2E0A33943F54", + "name": "steering-off", + "codepoint": "F090E", + "aliases": [ + "search-hands-free-off" + ], + "tags": [ + "Automotive" + ], + "author": "Google", + "version": "2.3.50" + }, + { + "id": "3056B0E6-E30C-4F6D-8647-AC5559FD7DCF", + "name": "step-backward", + "codepoint": "F04D5", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "9815CAC2-7390-4AE1-AE72-2B49546987EC", + "name": "step-backward-2", + "codepoint": "F04D6", + "aliases": [ + "frame-backward" + ], + "tags": [], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "6773EDAB-CBAA-4C56-80D6-E029EB45115E", + "name": "step-forward", + "codepoint": "F04D7", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "890D584F-45C1-4D2C-96C0-373465DB6477", + "name": "step-forward-2", + "codepoint": "F04D8", + "aliases": [ + "frame-forward" + ], + "tags": [], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "641202BA-294A-4A0F-851D-FB83FEC9D7EE", + "name": "stethoscope", + "codepoint": "F04D9", + "aliases": [], + "tags": [ + "Medical \/ Hospital" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "D2115A9A-4F13-4F9E-888D-3E8CE835A7C3", + "name": "sticker", + "codepoint": "F1364", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "4.9.95" + }, + { + "id": "6E585638-20B9-4347-B991-62027390FCE4", + "name": "sticker-alert", + "codepoint": "F1365", + "aliases": [], + "tags": [ + "Alert \/ Error" + ], + "author": "Colton Wiscombe", + "version": "4.9.95" + }, + { + "id": "795CD51D-0887-4AC1-B7C1-137248AE0EB3", + "name": "sticker-alert-outline", + "codepoint": "F1366", + "aliases": [], + "tags": [ + "Alert \/ Error" + ], + "author": "Colton Wiscombe", + "version": "4.9.95" + }, + { + "id": "A972E9E6-C525-4162-96DA-6A66951A2547", + "name": "sticker-check", + "codepoint": "F1367", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "4.9.95" + }, + { + "id": "4239323B-AA14-4177-8F94-AB7F1577D111", + "name": "sticker-check-outline", + "codepoint": "F1368", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "4.9.95" + }, + { + "id": "F4C92E8A-A238-4F7C-B2FC-CBA914C5CE04", + "name": "sticker-circle-outline", + "codepoint": "F05D0", + "aliases": [], + "tags": [], + "author": "Christopher Schreiner", + "version": "1.5.54" + }, + { + "id": "9E28CC83-5155-4620-80C1-62875D117A79", + "name": "sticker-emoji", + "codepoint": "F0785", + "aliases": [], + "tags": [ + "Emoji" + ], + "author": "Google", + "version": "1.9.32" + }, + { + "id": "D0DB0495-F23A-4DF1-AE7B-704259C648F1", + "name": "sticker-minus", + "codepoint": "F1369", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "4.9.95" + }, + { + "id": "F8C4F362-C8D2-40FD-A631-B79E0341572C", + "name": "sticker-minus-outline", + "codepoint": "F136A", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "4.9.95" + }, + { + "id": "6F7361D9-E44F-4BBC-B5E6-D6862467A849", + "name": "sticker-outline", + "codepoint": "F136B", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "4.9.95" + }, + { + "id": "48F11F1C-7501-4EDB-B4C9-FEA63EF1C090", + "name": "sticker-plus", + "codepoint": "F136C", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "4.9.95" + }, + { + "id": "A28B1EF0-2538-4104-980A-D6F044F461AF", + "name": "sticker-plus-outline", + "codepoint": "F136D", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "4.9.95" + }, + { + "id": "27A4E71C-CF92-4AA2-9B1B-4CC6FC06B58C", + "name": "sticker-remove", + "codepoint": "F136E", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "4.9.95" + }, + { + "id": "CA6D437A-FDC6-48F6-9414-A5B7832053F1", + "name": "sticker-remove-outline", + "codepoint": "F136F", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "4.9.95" + }, + { + "id": "9BEC4C74-48A6-4A63-94E5-2F5FF0C06173", + "name": "sticker-text", + "codepoint": "F178E", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "7AFB88BB-BCCF-4A79-AFC1-92BEB8E2EDBA", + "name": "sticker-text-outline", + "codepoint": "F178F", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "3C90040A-0B3F-4849-B21D-E16240D7A699", + "name": "stocking", + "codepoint": "F04DA", + "aliases": [], + "tags": [ + "Holiday" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "675A613A-F713-458A-970C-86883FF6C2B0", + "name": "stomach", + "codepoint": "F1093", + "aliases": [], + "tags": [ + "Medical \/ Hospital" + ], + "author": "Michael Irigoyen", + "version": "4.2.95" + }, + { + "id": "411BA388-1AF1-4197-AD0A-CF2313071836", + "name": "stool", + "codepoint": "F195D", + "aliases": [], + "tags": [], + "author": "Teodor Sandu", + "version": "6.4.95" + }, + { + "id": "5237A946-C396-4C75-B369-751CD362AB5E", + "name": "stool-outline", + "codepoint": "F195E", + "aliases": [], + "tags": [], + "author": "Teodor Sandu", + "version": "6.4.95" + }, + { + "id": "F1057179-EA45-4D87-A14D-D05442C06503", + "name": "stop", + "codepoint": "F04DB", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "EC57EC60-1C8E-45CE-BF4A-D019AFD1F148", + "name": "stop-circle", + "codepoint": "F0666", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "1.6.50" + }, + { + "id": "B343DEEB-A0ED-41BF-8C86-37D04A1040A6", + "name": "stop-circle-outline", + "codepoint": "F0667", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "1.6.50" + }, + { + "id": "3C3AEDE0-B6DA-4CB9-A686-869634678D5D", + "name": "store", + "codepoint": "F04DC", + "aliases": [ + "shop", + "store-mall-directory" + ], + "tags": [ + "Places", + "Shopping" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "417393DA-3C7F-4BF2-9283-AB1429FFA068", + "name": "store-24-hour", + "codepoint": "F04DD", + "aliases": [ + "local-convenience-store", + "shop-24-hour" + ], + "tags": [ + "Places", + "Shopping" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "84CE3480-8C26-4B78-9524-CB8E6AA23F1D", + "name": "store-alert", + "codepoint": "F18C1", + "aliases": [ + "shop-alert" + ], + "tags": [ + "Places", + "Shopping" + ], + "author": "Colton Wiscombe", + "version": "6.3.95" + }, + { + "id": "3D34BFA8-56E0-4FDB-A8CF-7C19AFE14277", + "name": "store-alert-outline", + "codepoint": "F18C2", + "aliases": [ + "shop-alert-outline" + ], + "tags": [ + "Places", + "Shopping" + ], + "author": "Colton Wiscombe", + "version": "6.3.95" + }, + { + "id": "37B5401A-4A00-47AF-AF1D-678AB4C502FD", + "name": "store-check", + "codepoint": "F18C3", + "aliases": [ + "shop-check", + "shop-complete", + "store-complete" + ], + "tags": [ + "Shopping", + "Places" + ], + "author": "Colton Wiscombe", + "version": "6.3.95" + }, + { + "id": "35E8862F-A95A-4B1E-AD0A-FAD4C408D4F6", + "name": "store-check-outline", + "codepoint": "F18C4", + "aliases": [ + "shop-complete", + "store-complete-outline", + "shop-check-outline" + ], + "tags": [ + "Shopping", + "Places" + ], + "author": "Colton Wiscombe", + "version": "6.3.95" + }, + { + "id": "F1AABCBC-7F1F-4803-B2B9-CC5E8EF11FEE", + "name": "store-clock", + "codepoint": "F18C5", + "aliases": [ + "store-schedule", + "store-hours", + "shop-clock", + "shop-hours", + "shop-schedule", + "store-time", + "shop-time" + ], + "tags": [ + "Places", + "Shopping" + ], + "author": "Colton Wiscombe", + "version": "6.3.95" + }, + { + "id": "78BFCE81-D4A5-48E9-812D-82417EE9CDC9", + "name": "store-clock-outline", + "codepoint": "F18C6", + "aliases": [ + "shop-clock-outline", + "store-hours-outline", + "shop-hours-outline", + "store-time-outline", + "shop-time-outline", + "store-schedule-outline", + "shop-schedule-outline" + ], + "tags": [ + "Places", + "Shopping" + ], + "author": "Colton Wiscombe", + "version": "6.3.95" + }, + { + "id": "0D8DEFE4-8A1E-4106-96FA-4663891F40FD", + "name": "store-cog", + "codepoint": "F18C7", + "aliases": [ + "store-settings", + "shop-settings" + ], + "tags": [ + "Places", + "Shopping" + ], + "author": "Colton Wiscombe", + "version": "6.3.95" + }, + { + "id": "E6D19187-D3DA-42DE-B61F-AF703112D8E3", + "name": "store-cog-outline", + "codepoint": "F18C8", + "aliases": [ + "store-settings-outline", + "shop-settings-outline", + "shop-cog-outline" + ], + "tags": [ + "Places", + "Shopping" + ], + "author": "Colton Wiscombe", + "version": "6.3.95" + }, + { + "id": "738C22C4-6605-437A-821A-10CF8E151422", + "name": "store-edit", + "codepoint": "F18C9", + "aliases": [ + "shop-edit" + ], + "tags": [ + "Places", + "Shopping" + ], + "author": "Colton Wiscombe", + "version": "6.3.95" + }, + { + "id": "02C64DBE-89C9-4190-80FF-1EB52327BFB5", + "name": "store-edit-outline", + "codepoint": "F18CA", + "aliases": [ + "shop-edit-outline" + ], + "tags": [ + "Places", + "Shopping" + ], + "author": "Colton Wiscombe", + "version": "6.3.95" + }, + { + "id": "9F2B1901-978F-4186-93BA-2B2871A1858A", + "name": "store-marker", + "codepoint": "F18CB", + "aliases": [ + "store-location", + "shop-marker", + "shop-location" + ], + "tags": [ + "Places", + "Shopping" + ], + "author": "Colton Wiscombe", + "version": "6.3.95" + }, + { + "id": "EA9439C2-511C-4A27-BABD-D0C1F8E824A0", + "name": "store-marker-outline", + "codepoint": "F18CC", + "aliases": [ + "store-location-outline", + "shop-marker-outline", + "shop-location-outline" + ], + "tags": [ + "Places", + "Shopping" + ], + "author": "Colton Wiscombe", + "version": "6.3.95" + }, + { + "id": "D52803B6-8580-4C06-AA9F-96B4748286DB", + "name": "store-minus", + "codepoint": "F165E", + "aliases": [ + "shop-minus" + ], + "tags": [ + "Places", + "Shopping" + ], + "author": "Dylan Oli", + "version": "5.7.55" + }, + { + "id": "A5A36489-1F54-4A27-AF99-A0D77723FD1F", + "name": "store-minus-outline", + "codepoint": "F18CD", + "aliases": [ + "shop-minus-outline" + ], + "tags": [ + "Places", + "Shopping" + ], + "author": "Colton Wiscombe", + "version": "6.3.95" + }, + { + "id": "93E71904-C645-4682-B4C9-B61124B5C468", + "name": "store-off", + "codepoint": "F18CE", + "aliases": [ + "shop-off" + ], + "tags": [ + "Places", + "Shopping" + ], + "author": "Colton Wiscombe", + "version": "6.3.95" + }, + { + "id": "2681BADF-4EE8-4290-A8C9-1BE86077BEC1", + "name": "store-off-outline", + "codepoint": "F18CF", + "aliases": [ + "shop-off-outline" + ], + "tags": [ + "Places", + "Shopping" + ], + "author": "Colton Wiscombe", + "version": "6.3.95" + }, + { + "id": "6BF9FB77-DF50-40B5-9A93-43E2A22E8633", + "name": "store-outline", + "codepoint": "F1361", + "aliases": [ + "shop-outline", + "store-mall-directory-outline" + ], + "tags": [ + "Places", + "Shopping" + ], + "author": "Google", + "version": "4.9.95" + }, + { + "id": "00DB5451-A5BF-4F9C-AC74-041916EACCB6", + "name": "store-plus", + "codepoint": "F165F", + "aliases": [ + "shop-plus" + ], + "tags": [ + "Places", + "Shopping" + ], + "author": "Dylan Oli", + "version": "5.7.55" + }, + { + "id": "585744D8-92B8-4874-81F5-70F659DA0DFE", + "name": "store-plus-outline", + "codepoint": "F18D0", + "aliases": [ + "shop-plus-outline" + ], + "tags": [ + "Places", + "Shopping" + ], + "author": "Colton Wiscombe", + "version": "6.3.95" + }, + { + "id": "FB5C0EA4-DAA2-4415-856F-2A4E6FA78BA5", + "name": "store-remove", + "codepoint": "F1660", + "aliases": [ + "shop-remove", + "store-delete", + "shop-delete" + ], + "tags": [ + "Places", + "Shopping" + ], + "author": "Dylan Oli", + "version": "5.7.55" + }, + { + "id": "2EDD35EF-2F8B-4EA9-BED4-D211B29C0012", + "name": "store-remove-outline", + "codepoint": "F18D1", + "aliases": [ + "shop-remove-outline", + "store-delete-outline", + "shop-delete-outline" + ], + "tags": [ + "Places", + "Shopping" + ], + "author": "Colton Wiscombe", + "version": "6.3.95" + }, + { + "id": "C631A061-FDAF-4686-9136-FD37C05FA12B", + "name": "store-search", + "codepoint": "F18D2", + "aliases": [ + "shop-search", + "store-find", + "shop-find", + "store-locator", + "shop-locator", + "store-look-up", + "shop-look-up" + ], + "tags": [ + "Places", + "Shopping" + ], + "author": "Colton Wiscombe", + "version": "6.3.95" + }, + { + "id": "1FD8091B-5C35-4157-89E0-7211C77B1E19", + "name": "store-search-outline", + "codepoint": "F18D3", + "aliases": [ + "store-find-outline", + "shop-search-outline", + "shop-find-outline", + "store-locator-outline", + "shop-locator-outline", + "store-look-up-outline", + "shop-look-up-outline" + ], + "tags": [ + "Places", + "Shopping" + ], + "author": "Colton Wiscombe", + "version": "6.3.95" + }, + { + "id": "A8AE1FBA-2DA6-47AA-9B12-910E7FCD8D43", + "name": "store-settings", + "codepoint": "F18D4", + "aliases": [ + "shop-settings" + ], + "tags": [ + "Places", + "Shopping" + ], + "author": "Colton Wiscombe", + "version": "6.3.95" + }, + { + "id": "3FC392DC-44A8-475E-8082-7DBF80A61519", + "name": "store-settings-outline", + "codepoint": "F18D5", + "aliases": [ + "shop-settings-outline" + ], + "tags": [ + "Places", + "Shopping" + ], + "author": "Colton Wiscombe", + "version": "6.3.95" + }, + { + "id": "8ABE8FB2-F704-4095-9E65-F614F86FCE99", + "name": "storefront", + "codepoint": "F07C7", + "aliases": [ + "awning" + ], + "tags": [], + "author": "Simran", + "version": "2.0.46" + }, + { + "id": "CFC9D5C9-A60F-48D0-880E-71F2A06BB94D", + "name": "storefront-outline", + "codepoint": "F10C1", + "aliases": [ + "awning" + ], + "tags": [ + "Shopping" + ], + "author": "Google", + "version": "4.2.95" + }, + { + "id": "18EF6E1E-8EF9-4A62-AAB9-6E8BE591408A", + "name": "stove", + "codepoint": "F04DE", + "aliases": [ + "cooker", + "oven" + ], + "tags": [ + "Food \/ Drink", + "Home Automation" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "854C16E8-58EA-49E3-B1AE-7EC84B313005", + "name": "strategy", + "codepoint": "F11D6", + "aliases": [ + "football-play" + ], + "tags": [ + "Sport" + ], + "author": "Michael Richins", + "version": "4.5.95" + }, + { + "id": "8E85E624-D1D8-4BA3-A99C-3067863D355C", + "name": "stretch-to-page", + "codepoint": "F0F2B", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format", + "Arrow" + ], + "author": "Michael Irigoyen", + "version": "3.8.95" + }, + { + "id": "7F50D690-0790-42F3-B9C3-B0AB9338DAC7", + "name": "stretch-to-page-outline", + "codepoint": "F0F2C", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format", + "Arrow" + ], + "author": "Michael Irigoyen", + "version": "3.8.95" + }, + { + "id": "6CCDB34F-9B02-4712-B615-A7E1056B534D", + "name": "string-lights", + "codepoint": "F12BA", + "aliases": [ + "italian-lights", + "christmas-lights", + "fairy-lights" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "4.7.95" + }, + { + "id": "F1B6F6EB-6D20-4C27-A631-8FAF759D183A", + "name": "string-lights-off", + "codepoint": "F12BB", + "aliases": [ + "italian-lights-off", + "christmas-lights-off", + "fairy-lights-off" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "4.7.95" + }, + { + "id": "FC46F7BD-E8E2-452C-868C-E168E13B278D", + "name": "subdirectory-arrow-left", + "codepoint": "F060C", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "AFD661FE-31E3-4BB5-8977-10113C7AC3F4", + "name": "subdirectory-arrow-right", + "codepoint": "F060D", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "C6D1D0D8-7FEF-4F4B-B0E8-1B87B9413209", + "name": "submarine", + "codepoint": "F156C", + "aliases": [], + "tags": [], + "author": "Andrew Laws", + "version": "5.5.55" + }, + { + "id": "9808EEC5-35FB-45B1-AFCB-065E9CF469E4", + "name": "subtitles", + "codepoint": "F0A16", + "aliases": [], + "tags": [], + "author": "Google", + "version": "2.5.94" + }, + { + "id": "451E9683-F30C-4B0A-95EE-5AD92B012F26", + "name": "subtitles-outline", + "codepoint": "F0A17", + "aliases": [], + "tags": [], + "author": "Google", + "version": "2.5.94" + }, + { + "id": "769FB684-BA81-4E2A-B623-4C8B6F3DCD2C", + "name": "subway", + "codepoint": "F06AC", + "aliases": [ + "metro", + "tube", + "underground" + ], + "tags": [ + "Transportation + Other" + ], + "author": "Google", + "version": "1.7.12" + }, + { + "id": "486507F3-9E59-4037-B0EA-8EE514AFFABB", + "name": "subway-alert-variant", + "codepoint": "F0D9D", + "aliases": [ + "subway-warning-variant" + ], + "tags": [ + "Alert \/ Error", + "Transportation + Other" + ], + "author": "Austin Andrews", + "version": "3.4.93" + }, + { + "id": "EBD55581-BE34-4D0D-A151-974FD5FD7D92", + "name": "subway-variant", + "codepoint": "F04DF", + "aliases": [ + "metro-variant", + "tube-variant", + "underground-variant", + "directions-subway", + "directions-transit" + ], + "tags": [ + "Transportation + Other" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "052D93D8-A1F1-450C-99F3-AEEE07D77CF4", + "name": "summit", + "codepoint": "F0786", + "aliases": [ + "peak" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "1F513D40-444E-475D-9C1F-E5A95CE61A02", + "name": "sun-compass", + "codepoint": "F19A5", + "aliases": [ + "sun-azimuth", + "solar-compass", + "solar-asimuth" + ], + "tags": [ + "Weather" + ], + "author": "Michael Irigoyen", + "version": "6.5.95" + }, + { + "id": "2294E545-CE17-4605-8DBD-FFAE9CFDFED6", + "name": "sun-snowflake", + "codepoint": "F1796", + "aliases": [ + "hot-cold", + "heat-cool" + ], + "tags": [ + "Weather", + "Home Automation" + ], + "author": "Google", + "version": "6.1.95" + }, + { + "id": "A915898D-3218-4A0E-9732-CEB0701DADA1", + "name": "sun-thermometer", + "codepoint": "F18D6", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.3.95" + }, + { + "id": "A92400D5-89B6-46B0-9D55-4980BE45C51D", + "name": "sun-thermometer-outline", + "codepoint": "F18D7", + "aliases": [ + "external-temperature", + "outside-temperature" + ], + "tags": [ + "Home Automation", + "Weather" + ], + "author": "Michael Irigoyen", + "version": "6.3.95" + }, + { + "id": "1A5DE4DC-5B3B-4378-ADB2-5D51AA64896D", + "name": "sun-wireless", + "codepoint": "F17FE", + "aliases": [ + "weather-sun-wireless", + "illuminance", + "uv-ray", + "ultraviolet" + ], + "tags": [ + "Home Automation", + "Weather" + ], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "2CFA10C3-9284-4120-B104-D196DBF0BF07", + "name": "sun-wireless-outline", + "codepoint": "F17FF", + "aliases": [ + "weather-sun-wireless-outline", + "illuminance-outline", + "uv-ray-outline", + "ultraviolet-outline" + ], + "tags": [ + "Home Automation", + "Weather" + ], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "E52FC33A-09BD-4B34-AF94-92C891020CDC", + "name": "sunglasses", + "codepoint": "F04E0", + "aliases": [], + "tags": [ + "Clothing" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "13371A33-E911-4D02-B921-CECC9D1BDB50", + "name": "surfing", + "codepoint": "F1746", + "aliases": [], + "tags": [], + "author": "Google", + "version": "6.1.95" + }, + { + "id": "AB38BBD9-58A6-4D21-8A76-8940B7717550", + "name": "surround-sound", + "codepoint": "F05C5", + "aliases": [], + "tags": [ + "Audio" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "13009B66-7459-4C86-8EB0-3CAED977BB98", + "name": "surround-sound-2-0", + "codepoint": "F07F0", + "aliases": [ + "stereo" + ], + "tags": [ + "Audio" + ], + "author": "Austin Andrews", + "version": "2.0.46" + }, + { + "id": "901A06AA-7C77-43B3-90CD-10B329C42DB7", + "name": "surround-sound-2-1", + "codepoint": "F1729", + "aliases": [], + "tags": [], + "author": "GreenTurtwig", + "version": "5.9.55" + }, + { + "id": "4B744BE0-A739-44FF-ADA6-CFC9BC520B1D", + "name": "surround-sound-3-1", + "codepoint": "F07F1", + "aliases": [], + "tags": [ + "Audio" + ], + "author": "Austin Andrews", + "version": "2.0.46" + }, + { + "id": "CFD48DE8-0DA8-455C-9C4C-337EDC54D7C0", + "name": "surround-sound-5-1", + "codepoint": "F07F2", + "aliases": [], + "tags": [ + "Audio" + ], + "author": "Austin Andrews", + "version": "2.0.46" + }, + { + "id": "0CA5BC19-D66A-4126-B2DB-A90546826760", + "name": "surround-sound-5-1-2", + "codepoint": "F172A", + "aliases": [], + "tags": [], + "author": "GreenTurtwig", + "version": "5.9.55" + }, + { + "id": "BC85CD47-E52C-4A7D-8E05-DD45596C5822", + "name": "surround-sound-7-1", + "codepoint": "F07F3", + "aliases": [], + "tags": [ + "Audio" + ], + "author": "Austin Andrews", + "version": "2.0.46" + }, + { + "id": "5E34C73B-E200-4BD3-A10E-A00D1D47BFF4", + "name": "svg", + "codepoint": "F0721", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.8.36" + }, + { + "id": "D1E543C5-6ECA-43AA-B04D-438319BC5562", + "name": "swap-horizontal", + "codepoint": "F04E1", + "aliases": [ + "arrow-left-right", + "transfer", + "exchange", + "switch" + ], + "tags": [ + "Arrow" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "3082F9ED-7ADE-491E-9FA5-39BC937D1F95", + "name": "swap-horizontal-bold", + "codepoint": "F0BCD", + "aliases": [ + "arrow-left-right-bold" + ], + "tags": [ + "Arrow" + ], + "author": "Google", + "version": "3.0.39" + }, + { + "id": "11867345-3F46-40E5-91A4-4EBBE393226D", + "name": "swap-horizontal-circle", + "codepoint": "F0FE1", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Google", + "version": "4.0.96" + }, + { + "id": "4A41DEBC-9D40-4C27-A48E-EDF8E64ADBC2", + "name": "swap-horizontal-circle-outline", + "codepoint": "F0FE2", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Michael Irigoyen", + "version": "4.0.96" + }, + { + "id": "23A48C18-9950-436D-9948-29EE7EE13054", + "name": "swap-horizontal-variant", + "codepoint": "F08C1", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Google", + "version": "2.2.43" + }, + { + "id": "DA7FB76D-58FA-4AED-9DF9-033E994AE000", + "name": "swap-vertical", + "codepoint": "F04E2", + "aliases": [ + "import-export", + "arrow-up-down" + ], + "tags": [ + "Arrow" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "0903A829-EB64-4B39-B066-FECF7908DA8A", + "name": "swap-vertical-bold", + "codepoint": "F0BCE", + "aliases": [ + "arrow-up-down-bold", + "import-export-bold" + ], + "tags": [ + "Arrow" + ], + "author": "Google", + "version": "3.0.39" + }, + { + "id": "F47E2ADA-9203-4D5A-9537-D0C93E45F1B3", + "name": "swap-vertical-circle", + "codepoint": "F0FE3", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Michael Irigoyen", + "version": "4.0.96" + }, + { + "id": "3B14BF34-4B82-4CAD-8F11-55E4013F7734", + "name": "swap-vertical-circle-outline", + "codepoint": "F0FE4", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Michael Irigoyen", + "version": "4.0.96" + }, + { + "id": "FC1C62DB-A06D-48F8-962F-F60FE41E4F65", + "name": "swap-vertical-variant", + "codepoint": "F08C2", + "aliases": [ + "swap-calls" + ], + "tags": [ + "Arrow" + ], + "author": "Google", + "version": "2.2.43" + }, + { + "id": "668BF75C-2B3B-46CB-8731-AE6BF10244BD", + "name": "swim", + "codepoint": "F04E3", + "aliases": [], + "tags": [ + "Sport" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "A2ED8CF0-EAE1-4B83-9469-448260288DDE", + "name": "switch", + "codepoint": "F04E4", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "D73618B2-062C-40B2-BF8D-43DC48809F9B", + "name": "sword", + "codepoint": "F04E5", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "37B336A5-5827-4929-93B5-C12373966731", + "name": "sword-cross", + "codepoint": "F0787", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Michael Richins", + "version": "1.9.32" + }, + { + "id": "9201098E-A360-4BF2-8EC7-683EB2AA7FEF", + "name": "syllabary-hangul", + "codepoint": "F1333", + "aliases": [ + "writing-system-hangul" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Haley Halcyon", + "version": "4.9.95" + }, + { + "id": "8B8AF349-F9B5-483B-90CC-387F3791AF69", + "name": "syllabary-hiragana", + "codepoint": "F1334", + "aliases": [ + "writing-system-hiragana" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Haley Halcyon", + "version": "4.9.95" + }, + { + "id": "220577A0-1D92-46EA-8116-DF964F6C57F0", + "name": "syllabary-katakana", + "codepoint": "F1335", + "aliases": [ + "writing-system-katakana" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Haley Halcyon", + "version": "4.9.95" + }, + { + "id": "BEDFC0D3-5AC2-46E4-BD69-07048CC47710", + "name": "syllabary-katakana-halfwidth", + "codepoint": "F1336", + "aliases": [ + "writing-system-katakana-half-width" + ], + "tags": [ + "Alpha \/ Numeric" + ], + "author": "Haley Halcyon", + "version": "4.9.95" + }, + { + "id": "6A604429-C9A6-45F3-8042-D29AB7828789", + "name": "symbol", + "codepoint": "F1501", + "aliases": [], + "tags": [], + "author": "Haley Halcyon", + "version": "5.4.55" + }, + { + "id": "2BCCEE64-583D-4EC7-9BBA-72FF58354181", + "name": "symfony", + "codepoint": "F0AE6", + "aliases": [], + "tags": [], + "author": "Contributors", + "version": "2.7.94" + }, + { + "id": "E8CE455E-8C08-48F4-B989-8D91E185E8AE", + "name": "sync", + "codepoint": "F04E6", + "aliases": [ + "loop", + "counterclockwise-arrows", + "circular-arrows", + "circle-arrows" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "66A07118-4C78-44D0-8B73-930144C74BD1", + "name": "sync-alert", + "codepoint": "F04E7", + "aliases": [ + "sync-warning", + "sync-problem" + ], + "tags": [ + "Alert \/ Error" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "26250B6D-8879-4DAA-8DFA-A04738E855FE", + "name": "sync-circle", + "codepoint": "F1378", + "aliases": [], + "tags": [], + "author": "Fran\u00e7ois Risoud", + "version": "4.9.95" + }, + { + "id": "538457F5-44DB-404B-92FE-5FB8597B258E", + "name": "sync-off", + "codepoint": "F04E8", + "aliases": [ + "sync-disabled" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "76D6AAA9-7D7F-4C7A-818E-D9947744A23C", + "name": "tab", + "codepoint": "F04E9", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "BA5FCCBE-ED06-4819-B2F3-532034AB09BB", + "name": "tab-minus", + "codepoint": "F0B4B", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "2.8.94" + }, + { + "id": "9E23B225-E972-4369-A94A-C2AAF4C93870", + "name": "tab-plus", + "codepoint": "F075C", + "aliases": [ + "tab-add" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "D851AFED-34E5-4166-9923-CC4A5D6A1A44", + "name": "tab-remove", + "codepoint": "F0B4C", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "2.8.94" + }, + { + "id": "BF6060AC-37F8-4236-B9D1-0C37A9AF09E9", + "name": "tab-search", + "codepoint": "F199E", + "aliases": [ + "tab-find" + ], + "tags": [], + "author": "Arno Cellarier", + "version": "6.5.95" + }, + { + "id": "9A9059F0-CADA-47EF-82DC-4B1FB2B9E4C5", + "name": "tab-unselected", + "codepoint": "F04EA", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "984D8348-AB61-4DD8-838C-3F2542577F73", + "name": "table", + "codepoint": "F04EB", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "4E3E7C78-5217-4B8A-8B95-9DE8433CFADA", + "name": "table-account", + "codepoint": "F13B9", + "aliases": [ + "table-user" + ], + "tags": [ + "Account \/ User" + ], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "5957DCA4-9A4D-4BC1-98EC-58065564EBFF", + "name": "table-alert", + "codepoint": "F13BA", + "aliases": [], + "tags": [ + "Alert \/ Error" + ], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "846F0539-E30D-40E8-BC00-3F10A0C0321E", + "name": "table-arrow-down", + "codepoint": "F13BB", + "aliases": [ + "table-download" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "44768ACF-C1A3-477D-91BC-74DA3B0A746E", + "name": "table-arrow-left", + "codepoint": "F13BC", + "aliases": [ + "table-import" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "A4A68FD7-82B8-4BE8-8110-DA54D1A888D4", + "name": "table-arrow-right", + "codepoint": "F13BD", + "aliases": [ + "table-share", + "table-export" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "2A9EE017-5EDD-4A0B-A531-E552D4C8AB66", + "name": "table-arrow-up", + "codepoint": "F13BE", + "aliases": [ + "table-upload" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "4AB13D38-7B5C-49E6-B41C-C48C0F8E7DA3", + "name": "table-border", + "codepoint": "F0A18", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Michael Irigoyen", + "version": "2.5.94" + }, + { + "id": "989D1B4B-5D28-4335-B410-8DAF917F788F", + "name": "table-cancel", + "codepoint": "F13BF", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "6EB52FC2-32D9-427D-80DE-32C60C8F78AD", + "name": "table-chair", + "codepoint": "F1061", + "aliases": [ + "restaurant", + "kitchen", + "dining" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Richins", + "version": "4.1.95" + }, + { + "id": "15FE548D-D08F-44C4-AF25-B853452E1AFE", + "name": "table-check", + "codepoint": "F13C0", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "8C3DCF5F-7E50-48A6-A596-0BA2D299B37F", + "name": "table-clock", + "codepoint": "F13C1", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "540E0DD7-BA28-46B1-A0A7-2A0820E73432", + "name": "table-cog", + "codepoint": "F13C2", + "aliases": [ + "table-settings" + ], + "tags": [ + "Settings" + ], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "D45D7513-AA4C-43CA-8435-CA6AD2B7F868", + "name": "table-column", + "codepoint": "F0835", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Austin Andrews", + "version": "2.1.19" + }, + { + "id": "0EB91CE4-3223-4799-9BB7-3BA0C923BC40", + "name": "table-column-plus-after", + "codepoint": "F04EC", + "aliases": [ + "table-column-add-after" + ], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "67B4875F-B08F-4006-AFE1-9C243F8B873A", + "name": "table-column-plus-before", + "codepoint": "F04ED", + "aliases": [ + "table-column-add-before" + ], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "455B9D6F-1842-434F-8C31-16F68A2C1BA9", + "name": "table-column-remove", + "codepoint": "F04EE", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "2343FF2B-E5D3-4BEC-90EA-FB3F5291D4B0", + "name": "table-column-width", + "codepoint": "F04EF", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "DDC0FFBC-73D2-49E8-8B8C-22D65A5719A6", + "name": "table-edit", + "codepoint": "F04F0", + "aliases": [], + "tags": [ + "Edit \/ Modify", + "Text \/ Content \/ Format" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "6F81B89D-EBF1-41BF-9619-90E148AD9951", + "name": "table-eye", + "codepoint": "F1094", + "aliases": [], + "tags": [], + "author": "Terren", + "version": "4.2.95" + }, + { + "id": "2F3C45C9-277B-4751-8F5C-4356739AC3A4", + "name": "table-eye-off", + "codepoint": "F13C3", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "9A7A9F69-9BC4-4619-981D-DF8423A22FF2", + "name": "table-furniture", + "codepoint": "F05BC", + "aliases": [], + "tags": [], + "author": "nilsfast", + "version": "1.5.54" + }, + { + "id": "9AB8E55A-A51C-4384-A6C6-1F88BFBBD63B", + "name": "table-headers-eye", + "codepoint": "F121D", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "4.6.95" + }, + { + "id": "2F8C23A5-717B-4483-9C22-A8C5D4F7C31A", + "name": "table-headers-eye-off", + "codepoint": "F121E", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "4.6.95" + }, + { + "id": "550B70E0-414F-44F5-A09F-DF418ABB7D26", + "name": "table-heart", + "codepoint": "F13C4", + "aliases": [ + "table-favorite" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "8B04C6AF-6886-4693-8806-6C4BC8D60E9A", + "name": "table-key", + "codepoint": "F13C5", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "99BE0AB4-A123-4745-839F-DC355DA8C3D4", + "name": "table-large", + "codepoint": "F04F1", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format", + "Geographic Information System" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "3C206937-03CF-4690-B022-30099AEAE0F3", + "name": "table-large-plus", + "codepoint": "F0F87", + "aliases": [ + "table-large-add" + ], + "tags": [ + "Text \/ Content \/ Format", + "Geographic Information System" + ], + "author": "Michael Irigoyen", + "version": "3.9.97" + }, + { + "id": "E6F6EF7E-C78C-4670-9E96-43AD92F24429", + "name": "table-large-remove", + "codepoint": "F0F88", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format", + "Geographic Information System" + ], + "author": "Michael Irigoyen", + "version": "3.9.97" + }, + { + "id": "370E7D91-6ACA-464F-A30C-DCB35B8DFC55", + "name": "table-lock", + "codepoint": "F13C6", + "aliases": [], + "tags": [ + "Lock" + ], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "BE891E33-2018-4619-BF4C-C006B4063785", + "name": "table-merge-cells", + "codepoint": "F09A6", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Google", + "version": "2.4.85" + }, + { + "id": "C40DA2CA-4FCA-4144-AD38-0DD457D6D6CF", + "name": "table-minus", + "codepoint": "F13C7", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "FB123A84-A0AE-41F6-8C61-B86E93EEA08C", + "name": "table-multiple", + "codepoint": "F13C8", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "94745B4E-14D8-4B8C-B8C4-E25D1A123B27", + "name": "table-network", + "codepoint": "F13C9", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "70A0953D-9FEF-4858-8ACB-A90C5613360A", + "name": "table-of-contents", + "codepoint": "F0836", + "aliases": [ + "toc" + ], + "tags": [], + "author": "Google", + "version": "2.1.19" + }, + { + "id": "AF58D08D-14CD-41F6-9CF1-53D002D7EEB1", + "name": "table-off", + "codepoint": "F13CA", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "68ABC903-3D76-4C38-8165-4DB5F0353A20", + "name": "table-picnic", + "codepoint": "F1743", + "aliases": [], + "tags": [], + "author": "Jeff Anders", + "version": "5.9.55" + }, + { + "id": "95F556B1-87B0-4219-8E96-B5AF5D652DF4", + "name": "table-pivot", + "codepoint": "F183C", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Teodor Sandu", + "version": "6.2.95" + }, + { + "id": "4547E3CF-042C-431F-8B99-4DBE22F1ADEC", + "name": "table-plus", + "codepoint": "F0A75", + "aliases": [ + "table-add" + ], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Michael Irigoyen", + "version": "2.6.95" + }, + { + "id": "202CC1A0-B339-493E-99B0-607A209E8A53", + "name": "table-refresh", + "codepoint": "F13A0", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "5.0.45" + }, + { + "id": "E04307B8-EA93-41C0-B7B8-6AAC6C9B580F", + "name": "table-remove", + "codepoint": "F0A76", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Michael Irigoyen", + "version": "2.6.95" + }, + { + "id": "8EA23E11-D670-4D09-8AA6-7DAFBEAA54FD", + "name": "table-row", + "codepoint": "F0837", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Austin Andrews", + "version": "2.1.19" + }, + { + "id": "5B9A6186-2C24-4D16-9FE4-F0E23C8E5B5F", + "name": "table-row-height", + "codepoint": "F04F2", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "0B2B45F7-3597-4049-9643-9E972826F67C", + "name": "table-row-plus-after", + "codepoint": "F04F3", + "aliases": [ + "table-row-add-after" + ], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "784BF375-370F-4DAE-985D-7BEF2FDA6951", + "name": "table-row-plus-before", + "codepoint": "F04F4", + "aliases": [ + "table-row-add-before" + ], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "017D1949-234A-4C27-A653-FF0EAF33AD92", + "name": "table-row-remove", + "codepoint": "F04F5", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "6053118D-7921-45FC-BC83-9F08BF2AE6DF", + "name": "table-search", + "codepoint": "F090F", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "2.3.50" + }, + { + "id": "B506843C-4832-4F30-8266-9B02632AB582", + "name": "table-settings", + "codepoint": "F0838", + "aliases": [], + "tags": [ + "Settings" + ], + "author": "Che de Bruin", + "version": "2.1.19" + }, + { + "id": "6E502BA0-5D71-4607-BA94-CDEF31BBF07C", + "name": "table-split-cell", + "codepoint": "F142A", + "aliases": [], + "tags": [ + "Text \/ Content \/ Format" + ], + "author": "Micha\u0142 Kleszczy\u0144ski", + "version": "5.2.45" + }, + { + "id": "646B67D0-16F5-429C-93ED-C57131031B63", + "name": "table-star", + "codepoint": "F13CB", + "aliases": [ + "table-favorite" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "DEC516BA-2102-4CE7-B77E-6D95A9A525EC", + "name": "table-sync", + "codepoint": "F13A1", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "5.0.45" + }, + { + "id": "4E13AA68-FF88-415B-A813-A9D5023F71E3", + "name": "table-tennis", + "codepoint": "F0E68", + "aliases": [ + "ping-pong", + "whiff-whaff" + ], + "tags": [ + "Sport" + ], + "author": "Google", + "version": "3.6.95" + }, + { + "id": "703B639C-E17D-40F1-8025-2B2950B1961D", + "name": "tablet", + "codepoint": "F04F6", + "aliases": [], + "tags": [ + "Device \/ Tech" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "179831B0-F175-4694-9313-3B745C133F96", + "name": "tablet-android", + "codepoint": "F04F7", + "aliases": [], + "tags": [ + "Device \/ Tech" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "804E3CCD-99B5-4F54-898A-9477D69E6951", + "name": "tablet-cellphone", + "codepoint": "F09A7", + "aliases": [ + "mobile-devices", + "tablet-mobile-phone", + "tablet-smartphone" + ], + "tags": [ + "Cellphone \/ Phone", + "Device \/ Tech" + ], + "author": "Google", + "version": "2.4.85" + }, + { + "id": "71DAA530-D02E-45D9-84AB-68CE1CD1E44E", + "name": "tablet-dashboard", + "codepoint": "F0ECE", + "aliases": [], + "tags": [ + "Device \/ Tech" + ], + "author": "Michael Irigoyen", + "version": "3.7.94" + }, + { + "id": "9E259FF6-513C-44B0-BB10-7F930DFA47DD", + "name": "taco", + "codepoint": "F0762", + "aliases": [], + "tags": [ + "Food \/ Drink" + ], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "0BE85AB2-0D51-411C-B119-789E9E317216", + "name": "tag", + "codepoint": "F04F9", + "aliases": [ + "local-offer" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "141B8C02-DA96-4054-AA99-C83CF2B10118", + "name": "tag-arrow-down", + "codepoint": "F172B", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.9.55" + }, + { + "id": "8C304479-B37A-4837-8887-F4880359C9BB", + "name": "tag-arrow-down-outline", + "codepoint": "F172C", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.9.55" + }, + { + "id": "56E3ECFD-CE76-4CE2-9075-7673ABEA78D1", + "name": "tag-arrow-left", + "codepoint": "F172D", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.9.55" + }, + { + "id": "BCD665AC-5B08-4E99-8BF4-7F43030447F6", + "name": "tag-arrow-left-outline", + "codepoint": "F172E", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.9.55" + }, + { + "id": "98AEA4C4-D0E2-4B94-9EE3-47F97A7AFC0D", + "name": "tag-arrow-right", + "codepoint": "F172F", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.9.55" + }, + { + "id": "B9FED1D0-B219-4483-A30E-AA201561DCB4", + "name": "tag-arrow-right-outline", + "codepoint": "F1730", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.9.55" + }, + { + "id": "5040B027-3283-413C-8424-E2E02108E69D", + "name": "tag-arrow-up", + "codepoint": "F1731", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.9.55" + }, + { + "id": "A632F2B8-4D1B-4F60-AB06-EB79D45E13A3", + "name": "tag-arrow-up-outline", + "codepoint": "F1732", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.9.55" + }, + { + "id": "5DCE0F4D-F740-4D9A-AC93-281D3477E9AF", + "name": "tag-faces", + "codepoint": "F04FA", + "aliases": [ + "tag-emoji", + "tag-emoticon" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "2D9E735C-EA23-4EB2-9AC4-C92D69218577", + "name": "tag-heart", + "codepoint": "F068B", + "aliases": [ + "loyalty" + ], + "tags": [], + "author": "Google", + "version": "1.7.12" + }, + { + "id": "1A877919-79F5-4B22-A309-6681E10B4A06", + "name": "tag-heart-outline", + "codepoint": "F0BCF", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.0.39" + }, + { + "id": "1F2E41E2-6509-4C1B-B95B-145C9A8375DA", + "name": "tag-minus", + "codepoint": "F0910", + "aliases": [], + "tags": [], + "author": "GreenTurtwig", + "version": "2.3.50" + }, + { + "id": "E8EF5D5C-B3EE-459C-9C6D-B6A045B8052C", + "name": "tag-minus-outline", + "codepoint": "F121F", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "4.6.95" + }, + { + "id": "408AB5A3-F100-4175-96CD-8602BE101150", + "name": "tag-multiple", + "codepoint": "F04FB", + "aliases": [ + "tags" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "340D1192-13CE-4752-86C3-186FEA8DC315", + "name": "tag-multiple-outline", + "codepoint": "F12F7", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "A85425D5-61FC-46C8-B604-4105C407967B", + "name": "tag-off", + "codepoint": "F1220", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "4.6.95" + }, + { + "id": "E6157F0C-1143-4F4D-B308-CCA13CC24BFC", + "name": "tag-off-outline", + "codepoint": "F1221", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "4.6.95" + }, + { + "id": "2022546E-45D4-4AC5-B24F-6D6AAEA0F452", + "name": "tag-outline", + "codepoint": "F04FC", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "83C0C7C5-26FF-4EF7-A05B-B05472FC40FC", + "name": "tag-plus", + "codepoint": "F0722", + "aliases": [ + "tag-add" + ], + "tags": [], + "author": "Michael Richins", + "version": "1.8.36" + }, + { + "id": "0BCB9F00-8D30-4DD7-85CB-31930035DF0E", + "name": "tag-plus-outline", + "codepoint": "F1222", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "4.6.95" + }, + { + "id": "E90C088F-8DFD-4B7D-962C-BE2DD9DB61BD", + "name": "tag-remove", + "codepoint": "F0723", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "1.8.36" + }, + { + "id": "DD1E4B8E-E8C2-4B72-A56D-F42B3259AD49", + "name": "tag-remove-outline", + "codepoint": "F1223", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "4.6.95" + }, + { + "id": "2728D780-6100-4AD5-B5B3-67C64DAF983C", + "name": "tag-search", + "codepoint": "F1907", + "aliases": [ + "tag-find" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "4747C432-2B54-4686-8689-A8B931F417DE", + "name": "tag-search-outline", + "codepoint": "F1908", + "aliases": [ + "tag-find-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "92B97B44-052D-48B5-993F-1AB16F76DC65", + "name": "tag-text", + "codepoint": "F1224", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "4.6.95" + }, + { + "id": "8ED927D3-84B9-43D1-82B4-3859653006D6", + "name": "tag-text-outline", + "codepoint": "F04FD", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "7D58F2F1-A97E-4EBE-A0E6-E8F9999F1799", + "name": "tailwind", + "codepoint": "F13FF", + "aliases": [], + "tags": [], + "author": "Contributors", + "version": "5.1.45" + }, + { + "id": "A7147BE3-0B04-4B61-94F3-48B0D9C5551E", + "name": "tangram", + "codepoint": "F04F8", + "aliases": [ + "puzzle" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Jeff Anders", + "version": "1.5.54" + }, + { + "id": "C673D464-FC7A-4574-8EE6-6CCF7E39902F", + "name": "tank", + "codepoint": "F0D3A", + "aliases": [], + "tags": [], + "author": "SLembas", + "version": "3.3.92" + }, + { + "id": "E7134093-7DFD-48A0-A687-299B70E6D42D", + "name": "tanker-truck", + "codepoint": "F0FE5", + "aliases": [ + "fuel-truck", + "oil-truck", + "water-truck", + "tanker" + ], + "tags": [ + "Transportation + Road" + ], + "author": "Michael Irigoyen", + "version": "4.0.96" + }, + { + "id": "76B2D13C-4AA4-4AA1-A0CA-F4E5CA53FFE2", + "name": "tape-drive", + "codepoint": "F16DF", + "aliases": [], + "tags": [], + "author": "Zach Gover", + "version": "5.8.55" + }, + { + "id": "C9C3F657-65A6-418E-91EF-E6FD8F0357C1", + "name": "tape-measure", + "codepoint": "F0B4D", + "aliases": [ + "measuring-tape" + ], + "tags": [ + "Hardware \/ Tools" + ], + "author": "GreenTurtwig", + "version": "2.8.94" + }, + { + "id": "363D29C5-9F0F-43EA-BE7E-D1C2C1418517", + "name": "target", + "codepoint": "F04FE", + "aliases": [ + "registration-mark" + ], + "tags": [], + "author": "Doug C. Hardester", + "version": "1.5.54" + }, + { + "id": "9B5EC357-642F-4790-BD58-E45A217DD9B9", + "name": "target-account", + "codepoint": "F0BD0", + "aliases": [ + "crosshairs-account", + "target-user" + ], + "tags": [ + "Account \/ User" + ], + "author": "Austin Andrews", + "version": "3.0.39" + }, + { + "id": "C8208D76-55E5-41A2-9540-AF3731D16D74", + "name": "target-variant", + "codepoint": "F0A77", + "aliases": [ + "registration-mark" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "2.6.95" + }, + { + "id": "32F3835A-EBD0-4927-9497-6F67F7075EAF", + "name": "taxi", + "codepoint": "F04FF", + "aliases": [ + "local-taxi", + "cab" + ], + "tags": [ + "Transportation + Road", + "Navigation" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "D1759BBF-821F-4902-AAF5-8323A179912F", + "name": "tea", + "codepoint": "F0D9E", + "aliases": [], + "tags": [ + "Food \/ Drink" + ], + "author": "Google", + "version": "3.4.93" + }, + { + "id": "002B1000-5D8B-4EC1-9D10-21E9EE62EE4C", + "name": "tea-outline", + "codepoint": "F0D9F", + "aliases": [], + "tags": [ + "Food \/ Drink" + ], + "author": "Michael Irigoyen", + "version": "3.4.93" + }, + { + "id": "3335C183-CD35-4D66-87AB-C5E3A7FCAFBF", + "name": "teamviewer", + "codepoint": "F0500", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "A9D12403-70AF-4022-9AB1-B9CE5EF1F9E9", + "name": "teddy-bear", + "codepoint": "F18FB", + "aliases": [ + "child-toy", + "children-toy" + ], + "tags": [ + "Holiday" + ], + "author": "Andy Allsopp", + "version": "6.3.95" + }, + { + "id": "66FE04C6-5941-4728-A256-17F9B25534F1", + "name": "telescope", + "codepoint": "F0B4E", + "aliases": [], + "tags": [ + "Science" + ], + "author": "SarinManS", + "version": "2.8.94" + }, + { + "id": "1B699A99-578E-450C-9523-934F4D281F72", + "name": "television", + "codepoint": "F0502", + "aliases": [ + "tv" + ], + "tags": [ + "Device \/ Tech", + "Home Automation" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "09374787-27B8-43D7-92CA-B35050B1FA63", + "name": "television-ambient-light", + "codepoint": "F1356", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "4.9.95" + }, + { + "id": "CB446614-AE63-403E-BBF8-0B0ED3E367AE", + "name": "television-box", + "codepoint": "F0839", + "aliases": [ + "tv-box", + "tv-guide" + ], + "tags": [], + "author": "Google", + "version": "2.1.19" + }, + { + "id": "EB7FD483-EAF9-4FEE-8B82-25186D26827A", + "name": "television-classic", + "codepoint": "F07F4", + "aliases": [ + "tv-classic" + ], + "tags": [ + "Device \/ Tech", + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "2.0.46" + }, + { + "id": "C8E89001-2566-4676-B12B-7AAFAFCA0276", + "name": "television-classic-off", + "codepoint": "F083A", + "aliases": [ + "tv-classic-off" + ], + "tags": [ + "Device \/ Tech", + "Home Automation" + ], + "author": "Austin Andrews", + "version": "2.1.19" + }, + { + "id": "6E5CAF6F-F00B-4613-B520-BDC1E5DD2832", + "name": "television-guide", + "codepoint": "F0503", + "aliases": [], + "tags": [ + "Device \/ Tech", + "Home Automation" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "9E9D949B-13EC-43FB-9068-2BED76224BD8", + "name": "television-off", + "codepoint": "F083B", + "aliases": [ + "tv-off" + ], + "tags": [ + "Device \/ Tech", + "Home Automation" + ], + "author": "Austin Andrews", + "version": "2.1.19" + }, + { + "id": "EE3F2E38-D8CD-42BD-B50F-187A77FBC630", + "name": "television-pause", + "codepoint": "F0F89", + "aliases": [], + "tags": [ + "Device \/ Tech" + ], + "author": "GreenTurtwig", + "version": "3.9.97" + }, + { + "id": "BFCE431D-2F97-4023-A690-F34199CA79F8", + "name": "television-play", + "codepoint": "F0ECF", + "aliases": [], + "tags": [ + "Device \/ Tech" + ], + "author": "Google", + "version": "3.7.94" + }, + { + "id": "9132E544-8FAA-43BA-98B4-8D752CB3E251", + "name": "television-shimmer", + "codepoint": "F1110", + "aliases": [ + "television-clean" + ], + "tags": [ + "Device \/ Tech" + ], + "author": "kevin-hens", + "version": "4.3.95" + }, + { + "id": "52228864-9BDD-4D12-82EC-AF730D68E47B", + "name": "television-stop", + "codepoint": "F0F8A", + "aliases": [], + "tags": [ + "Device \/ Tech" + ], + "author": "GreenTurtwig", + "version": "3.9.97" + }, + { + "id": "A94E333D-F8C5-4726-B81A-6DDF4CC37FD0", + "name": "temperature-celsius", + "codepoint": "F0504", + "aliases": [ + "temperature-centigrade" + ], + "tags": [ + "Weather" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "9A1DF8BB-627A-47C9-B609-BAC145D320DF", + "name": "temperature-fahrenheit", + "codepoint": "F0505", + "aliases": [], + "tags": [ + "Weather" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "DF9D47EE-157B-4E1E-85CE-A043E5F2AE51", + "name": "temperature-kelvin", + "codepoint": "F0506", + "aliases": [], + "tags": [ + "Weather" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "CE166270-170C-4292-8D6F-FE787AF6B021", + "name": "tennis", + "codepoint": "F0DA0", + "aliases": [ + "tennis-racquet", + "tennis-racket" + ], + "tags": [ + "Sport" + ], + "author": "Google", + "version": "3.4.93" + }, + { + "id": "DE92B1F1-31FB-4551-84A2-32F5B5D842EC", + "name": "tennis-ball", + "codepoint": "F0507", + "aliases": [], + "tags": [ + "Sport" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "688277DE-082A-4BE2-8E59-129245E02DD7", + "name": "tent", + "codepoint": "F0508", + "aliases": [ + "camping" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "D3339724-6ECB-4328-83C8-7E956C0271C0", + "name": "terraform", + "codepoint": "F1062", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "4.1.95" + }, + { + "id": "1F98A781-6023-4368-AC06-5A421D166FCC", + "name": "terrain", + "codepoint": "F0509", + "aliases": [], + "tags": [ + "Nature" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "0B88F54B-7522-4D7D-85EC-3C0C3E7D36FE", + "name": "test-tube", + "codepoint": "F0668", + "aliases": [], + "tags": [ + "Science" + ], + "author": "Kai Faust", + "version": "1.6.50" + }, + { + "id": "A6F17875-0B9B-467B-85F5-4C4804D3A367", + "name": "test-tube-empty", + "codepoint": "F0911", + "aliases": [], + "tags": [ + "Science" + ], + "author": "Austin Andrews", + "version": "2.3.50" + }, + { + "id": "8B2E6A86-9CC3-4F9B-8B77-F5DD9BAE7898", + "name": "test-tube-off", + "codepoint": "F0912", + "aliases": [], + "tags": [ + "Science" + ], + "author": "Austin Andrews", + "version": "2.3.50" + }, + { + "id": "E56EAB24-6D70-49E0-BEC8-D9164A93CB63", + "name": "text", + "codepoint": "F09A8", + "aliases": [ + "notes" + ], + "tags": [], + "author": "Google", + "version": "2.4.85" + }, + { + "id": "15B2BA3F-53A2-4151-9B90-20000264FE54", + "name": "text-account", + "codepoint": "F1570", + "aliases": [ + "biography", + "text-user" + ], + "tags": [ + "Account \/ User" + ], + "author": "Brooke Clifton", + "version": "5.5.55" + }, + { + "id": "32E03B3D-EAFA-4483-AE94-E43944F0F0AE", + "name": "text-box", + "codepoint": "F021A", + "aliases": [ + "drive-document", + "file-document-box" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "291424C4-8874-4D0D-8D89-0C3349C021ED", + "name": "text-box-check", + "codepoint": "F0EA6", + "aliases": [ + "file-document-box-tick", + "file-document-box-check" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "mocking-mike", + "version": "3.7.94" + }, + { + "id": "A24C1161-73F2-43F0-B955-7D4E5F398372", + "name": "text-box-check-outline", + "codepoint": "F0EA7", + "aliases": [ + "file-document-box-tick-outline", + "file-document-box-check-outline" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "mocking-mike", + "version": "3.7.94" + }, + { + "id": "60E9BECF-1FDF-4077-9BD7-F7B1863C2F66", + "name": "text-box-minus", + "codepoint": "F0EA8", + "aliases": [ + "file-document-box-minus" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Irigoyen", + "version": "3.7.94" + }, + { + "id": "89E44C7C-4A52-4BBE-8EF4-2127A320E444", + "name": "text-box-minus-outline", + "codepoint": "F0EA9", + "aliases": [ + "file-document-box-minus-outline" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Irigoyen", + "version": "3.7.94" + }, + { + "id": "3F7FCD03-4E12-4D4D-AB63-C8D51F938284", + "name": "text-box-multiple", + "codepoint": "F0AB7", + "aliases": [ + "file-document-boxes", + "file-document-box-multiple" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Irigoyen", + "version": "2.7.94" + }, + { + "id": "02EF54D9-4D5D-463C-A3E8-0B44BDCB9523", + "name": "text-box-multiple-outline", + "codepoint": "F0AB8", + "aliases": [ + "file-document-boxes-outline", + "file-document-box-multiple-outline" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Austin Andrews", + "version": "2.7.94" + }, + { + "id": "E12AE178-0546-4CD3-81F6-BD1F17AA50EE", + "name": "text-box-outline", + "codepoint": "F09ED", + "aliases": [ + "file-document-box-outline" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "GreenTurtwig", + "version": "2.5.94" + }, + { + "id": "8979EEB0-B475-4229-A7D8-F5D48A58DB85", + "name": "text-box-plus", + "codepoint": "F0EAA", + "aliases": [ + "file-document-box-plus" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Irigoyen", + "version": "3.7.94" + }, + { + "id": "467C2198-D7C5-4B95-88F1-71B269D2AEAC", + "name": "text-box-plus-outline", + "codepoint": "F0EAB", + "aliases": [ + "file-document-box-plus-outline" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Irigoyen", + "version": "3.7.94" + }, + { + "id": "B599787B-9A9F-45C1-AD76-45FB4B00EFFC", + "name": "text-box-remove", + "codepoint": "F0EAC", + "aliases": [ + "file-document-box-remove" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Irigoyen", + "version": "3.7.94" + }, + { + "id": "C822984D-33BC-4A48-A9A3-E679ABF13595", + "name": "text-box-remove-outline", + "codepoint": "F0EAD", + "aliases": [ + "file-document-box-remove-outline" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Irigoyen", + "version": "3.7.94" + }, + { + "id": "08B85EF9-81EC-4DEE-B1C7-1C14D4CBECA5", + "name": "text-box-search", + "codepoint": "F0EAE", + "aliases": [ + "file-document-box-search" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Austin Andrews", + "version": "3.7.94" + }, + { + "id": "D32F390E-2888-4C63-99FA-9662902B6694", + "name": "text-box-search-outline", + "codepoint": "F0EAF", + "aliases": [ + "file-document-box-search-outline" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Austin Andrews", + "version": "3.7.94" + }, + { + "id": "CA8CE1CF-1F6E-4B8B-9972-B3F36E865E67", + "name": "text-long", + "codepoint": "F09AA", + "aliases": [ + "text-subject" + ], + "tags": [], + "author": "Google", + "version": "2.4.85" + }, + { + "id": "8F37BBCB-35D2-4FAF-88ED-59252659885D", + "name": "text-recognition", + "codepoint": "F113D", + "aliases": [], + "tags": [], + "author": "Haley Halcyon", + "version": "4.4.95" + }, + { + "id": "3C1714C4-ACE1-45F2-ADE8-D90DD2E9742C", + "name": "text-search", + "codepoint": "F13B8", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "5.1.45" + }, + { + "id": "4595BB97-16B7-4B19-8AC5-9C33167A6D20", + "name": "text-shadow", + "codepoint": "F0669", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "1.6.50" + }, + { + "id": "F80F249A-898B-4690-888A-EC11F79B4E56", + "name": "text-short", + "codepoint": "F09A9", + "aliases": [], + "tags": [], + "author": "Google", + "version": "2.4.85" + }, + { + "id": "5B1FA77D-0384-4931-AFD8-C4FF5D73D372", + "name": "text-to-speech", + "codepoint": "F050A", + "aliases": [ + "tts", + "microphone-message" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "1AE8F7A9-5454-44D2-B16D-1D383E33978D", + "name": "text-to-speech-off", + "codepoint": "F050B", + "aliases": [ + "tts-off", + "microphone-message-off" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "E3A06403-51B5-4D00-9349-53517553A324", + "name": "texture", + "codepoint": "F050C", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "7B46F16A-AF86-4A7A-B3AB-1D2297831078", + "name": "texture-box", + "codepoint": "F0FE6", + "aliases": [ + "surface-area" + ], + "tags": [ + "Math" + ], + "author": "Michael Irigoyen", + "version": "4.0.96" + }, + { + "id": "37350655-CB4D-4D9F-8C90-B8049CA0E48E", + "name": "theater", + "codepoint": "F050D", + "aliases": [ + "cinema", + "theatre" + ], + "tags": [ + "Places", + "Home Automation" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "AE66BEF4-7040-4A15-8BF3-639B116853CC", + "name": "theme-light-dark", + "codepoint": "F050E", + "aliases": [ + "sun-moon-stars" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "F41863ED-B66A-4FF4-B436-0876C8D3665B", + "name": "thermometer", + "codepoint": "F050F", + "aliases": [ + "temperature" + ], + "tags": [ + "Weather", + "Home Automation", + "Automotive" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "DB3D5088-E7A7-47AD-87E3-43D5B41BF0C2", + "name": "thermometer-alert", + "codepoint": "F0E01", + "aliases": [ + "thermometer-warning", + "temperature-alert", + "temperature-warning" + ], + "tags": [ + "Home Automation", + "Weather", + "Alert \/ Error" + ], + "author": "Michael Richins", + "version": "3.5.94" + }, + { + "id": "D3767EC9-5C06-42A0-B6BE-F5D2CF89FFD1", + "name": "thermometer-bluetooth", + "codepoint": "F1895", + "aliases": [ + "temperature-bluetooth" + ], + "tags": [ + "Weather", + "Home Automation", + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "6.2.95" + }, + { + "id": "C888E2C1-306A-4BCB-821E-5B33AC93572D", + "name": "thermometer-chevron-down", + "codepoint": "F0E02", + "aliases": [ + "temperature-chevron-down", + "temperature-decrease", + "thermometer-decrease" + ], + "tags": [ + "Home Automation", + "Weather" + ], + "author": "Michael Richins", + "version": "3.5.94" + }, + { + "id": "79E7C071-7AEE-48B1-802E-922925E94247", + "name": "thermometer-chevron-up", + "codepoint": "F0E03", + "aliases": [ + "temperature-chevron-up", + "temperature-increase", + "thermometer-increase" + ], + "tags": [ + "Home Automation", + "Weather" + ], + "author": "Michael Richins", + "version": "3.5.94" + }, + { + "id": "DF51BF5D-831D-4FD1-8786-498CAC97DBB6", + "name": "thermometer-high", + "codepoint": "F10C2", + "aliases": [ + "temperature-high" + ], + "tags": [ + "Home Automation", + "Weather" + ], + "author": "Michael Richins", + "version": "4.2.95" + }, + { + "id": "A9FC898C-8CC5-44F2-822D-05C5625E95C8", + "name": "thermometer-lines", + "codepoint": "F0510", + "aliases": [ + "temperature-lines" + ], + "tags": [ + "Weather", + "Home Automation" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "DBD8C754-85C4-43C4-BEA8-BCFEDB30B382", + "name": "thermometer-low", + "codepoint": "F10C3", + "aliases": [ + "temperature-low" + ], + "tags": [ + "Home Automation", + "Weather" + ], + "author": "Michael Richins", + "version": "4.2.95" + }, + { + "id": "310F50E9-D74E-4753-A6D8-60EDBFC332B7", + "name": "thermometer-minus", + "codepoint": "F0E04", + "aliases": [ + "temperature-minus", + "thermometer-decrease", + "temperature-decrease" + ], + "tags": [ + "Home Automation", + "Weather" + ], + "author": "Michael Richins", + "version": "3.5.94" + }, + { + "id": "BF73A396-DB1C-46BC-8078-3CF0D7E0277F", + "name": "thermometer-off", + "codepoint": "F1531", + "aliases": [ + "temperature-off" + ], + "tags": [ + "Weather" + ], + "author": "Colton Wiscombe", + "version": "5.4.55" + }, + { + "id": "511387A0-FD3A-4335-B82E-9C68E02BABDD", + "name": "thermometer-plus", + "codepoint": "F0E05", + "aliases": [ + "thermometer-add", + "thermometer-increase", + "temperature-plus", + "temperature-add", + "temperature-increase" + ], + "tags": [ + "Home Automation", + "Weather" + ], + "author": "Michael Richins", + "version": "3.5.94" + }, + { + "id": "628D16E2-7E57-43CA-8451-012B8AB852DA", + "name": "thermostat", + "codepoint": "F0393", + "aliases": [ + "nest" + ], + "tags": [ + "Device \/ Tech", + "Home Automation" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "E0A6898F-3F08-4E13-8B61-DA63E5CBF949", + "name": "thermostat-box", + "codepoint": "F0891", + "aliases": [], + "tags": [ + "Home Automation", + "Device \/ Tech" + ], + "author": "GreenTurtwig", + "version": "2.1.99" + }, + { + "id": "46ACA864-4B1C-4DBD-94FB-7A0D6B9A500E", + "name": "thought-bubble", + "codepoint": "F07F6", + "aliases": [ + "comic-bubble", + "thinking" + ], + "tags": [], + "author": "Austin Andrews", + "version": "2.0.46" + }, + { + "id": "2C82E0CA-9872-431C-8739-0EA33825EBF7", + "name": "thought-bubble-outline", + "codepoint": "F07F7", + "aliases": [ + "comic-thought-bubble-outline", + "thinking-outline", + "think-outline" + ], + "tags": [], + "author": "Austin Andrews", + "version": "2.0.46" + }, + { + "id": "83D606E3-69A1-4583-854D-5C44477D038D", + "name": "thumb-down", + "codepoint": "F0511", + "aliases": [ + "dislike", + "thumbs-down" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "00EE8027-00FE-43B8-ACEC-7779E39D6E29", + "name": "thumb-down-outline", + "codepoint": "F0512", + "aliases": [ + "dislike-outline", + "thumbs-down-outline" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "C32E4FC9-F3DC-4C67-81FB-62648E3F1AB5", + "name": "thumb-up", + "codepoint": "F0513", + "aliases": [ + "like", + "thumbs-up" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "BFA3B3A3-0D00-459A-8BDB-DAC2D4233023", + "name": "thumb-up-outline", + "codepoint": "F0514", + "aliases": [ + "like-outline", + "thumbs-up-outline" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "C38D6CEC-4D8E-44DB-B704-9A76552733D4", + "name": "thumbs-up-down", + "codepoint": "F0515", + "aliases": [ + "like-dislike" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "B5F74959-A897-4A3F-9E76-2154AB4B8930", + "name": "thumbs-up-down-outline", + "codepoint": "F1914", + "aliases": [ + "like-dislike-outline" + ], + "tags": [], + "author": "Google", + "version": "6.4.95" + }, + { + "id": "18F55984-07FD-4630-BB11-8285F83AA838", + "name": "ticket", + "codepoint": "F0516", + "aliases": [ + "local-activity", + "local-play", + "local-attraction" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "DE2E8A6C-33F1-4148-A228-C512C26B3159", + "name": "ticket-account", + "codepoint": "F0517", + "aliases": [ + "ticket-user" + ], + "tags": [ + "Account \/ User" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "F19DA1EC-CBDA-456E-BC19-F03C635C886F", + "name": "ticket-confirmation", + "codepoint": "F0518", + "aliases": [ + "confirmation-number" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "A1B45743-22F5-49E8-B466-120024F2C4C3", + "name": "ticket-confirmation-outline", + "codepoint": "F13AA", + "aliases": [ + "confirmation-number-outline" + ], + "tags": [], + "author": "Google", + "version": "5.0.45" + }, + { + "id": "6D7F0E99-A86F-4AAB-A468-F1D3214E1B60", + "name": "ticket-outline", + "codepoint": "F0913", + "aliases": [], + "tags": [], + "author": "GreenTurtwig", + "version": "2.3.50" + }, + { + "id": "297864D0-935F-4EF0-9A2C-28F018544581", + "name": "ticket-percent", + "codepoint": "F0724", + "aliases": [ + "coupon", + "voucher" + ], + "tags": [], + "author": "GreenTurtwig", + "version": "1.8.36" + }, + { + "id": "43EDCFCF-4AFB-45E7-8F83-56CC40FC93B7", + "name": "ticket-percent-outline", + "codepoint": "F142B", + "aliases": [ + "coupon-outline", + "voucher-outline" + ], + "tags": [], + "author": "\u00d6zg\u00fcr G\u00f6rg\u00fcl\u00fc", + "version": "5.2.45" + }, + { + "id": "475062F1-407D-43B6-8FBF-1E0D4C7D690C", + "name": "tie", + "codepoint": "F0519", + "aliases": [], + "tags": [ + "Clothing" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "708986EE-2BC9-401D-8ACD-0BC5A3E20EA3", + "name": "tilde", + "codepoint": "F0725", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "1.8.36" + }, + { + "id": "06A80087-C9FF-4A60-A370-BD183676DC0A", + "name": "tilde-off", + "codepoint": "F18F3", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "6.3.95" + }, + { + "id": "348DB89A-B4E2-4CB9-A7A4-B86973243ADE", + "name": "timelapse", + "codepoint": "F051A", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "087D891A-1B90-42FA-97E4-9381D8D7CCF8", + "name": "timeline", + "codepoint": "F0BD1", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "3.0.39" + }, + { + "id": "3965A310-F8FE-4077-8DAB-722CF2A44E78", + "name": "timeline-alert", + "codepoint": "F0F95", + "aliases": [], + "tags": [ + "Alert \/ Error" + ], + "author": "Austin Andrews", + "version": "3.9.97" + }, + { + "id": "E6B39705-7058-4C26-BE2B-D85FAF69F614", + "name": "timeline-alert-outline", + "codepoint": "F0F98", + "aliases": [], + "tags": [ + "Alert \/ Error" + ], + "author": "Austin Andrews", + "version": "3.9.97" + }, + { + "id": "56EABFF0-9689-4078-98F6-8E0EDAAD6A19", + "name": "timeline-check", + "codepoint": "F1532", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.4.55" + }, + { + "id": "0A75C1CB-0AF6-4A5E-BBE2-C14C31DDBBB6", + "name": "timeline-check-outline", + "codepoint": "F1533", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.4.55" + }, + { + "id": "2671B127-348C-47F5-B016-F30389D649CF", + "name": "timeline-clock", + "codepoint": "F11FB", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Austin Andrews", + "version": "4.6.95" + }, + { + "id": "2C73EA7B-CAD0-439D-8D8F-8779B100F927", + "name": "timeline-clock-outline", + "codepoint": "F11FC", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Austin Andrews", + "version": "4.6.95" + }, + { + "id": "92637DDF-E9A3-43E1-986D-DA5DE7FA8CDE", + "name": "timeline-help", + "codepoint": "F0F99", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "3.9.97" + }, + { + "id": "E844C160-56F3-431B-B971-00178D4B5D59", + "name": "timeline-help-outline", + "codepoint": "F0F9A", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "3.9.97" + }, + { + "id": "4086C75B-4BB4-4307-A953-22F4F7AEDE9F", + "name": "timeline-minus", + "codepoint": "F1534", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.4.55" + }, + { + "id": "E984C3EB-C8F3-4357-BAA4-93F9ED3049BC", + "name": "timeline-minus-outline", + "codepoint": "F1535", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.4.55" + }, + { + "id": "82363A48-4E61-4594-A3DA-AA94FBBA4BE8", + "name": "timeline-outline", + "codepoint": "F0BD2", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "3.0.39" + }, + { + "id": "6DDA8E22-8819-4EA4-A239-57349E7B1C7C", + "name": "timeline-plus", + "codepoint": "F0F96", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "3.9.97" + }, + { + "id": "230196A7-AFE4-4722-810C-B845246A42A8", + "name": "timeline-plus-outline", + "codepoint": "F0F97", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "3.9.97" + }, + { + "id": "1855D5A7-8C35-4621-BFFB-E10D9F0C0726", + "name": "timeline-remove", + "codepoint": "F1536", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.4.55" + }, + { + "id": "748EF30E-992C-41C9-94DA-A95F4F80A4EF", + "name": "timeline-remove-outline", + "codepoint": "F1537", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.4.55" + }, + { + "id": "DBC01596-0759-4095-9BAA-3D582324A836", + "name": "timeline-text", + "codepoint": "F0BD3", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "3.0.39" + }, + { + "id": "F949D410-50B0-49DD-B4CE-E2FA9160052F", + "name": "timeline-text-outline", + "codepoint": "F0BD4", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "3.0.39" + }, + { + "id": "7F6AFDDE-8C90-44FB-A000-D5F6EF93A943", + "name": "timer", + "codepoint": "F13AB", + "aliases": [ + "stopwatch" + ], + "tags": [ + "Sport" + ], + "author": "Michael Irigoyen", + "version": "5.0.45" + }, + { + "id": "BDC89918-A38F-41C6-997E-DE9F779D4435", + "name": "timer-10", + "codepoint": "F051C", + "aliases": [ + "timer-ten" + ], + "tags": [ + "Date \/ Time" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "3DEFEFB6-57CE-4C82-9D0C-16DBDBEF5950", + "name": "timer-3", + "codepoint": "F051D", + "aliases": [ + "timer-three" + ], + "tags": [ + "Date \/ Time" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "94B9E2FB-1589-418F-A128-C071B10B10EB", + "name": "timer-cog", + "codepoint": "F1925", + "aliases": [ + "timer-settings" + ], + "tags": [ + "Date \/ Time" + ], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "78B70624-89F7-4041-B247-9A39EA39957F", + "name": "timer-cog-outline", + "codepoint": "F1926", + "aliases": [ + "timer-settings-outline" + ], + "tags": [ + "Date \/ Time" + ], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "CC698648-1A71-4EC8-A1E3-B5ACC42F2FDB", + "name": "timer-off", + "codepoint": "F13AC", + "aliases": [ + "stopwatch-off" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.0.45" + }, + { + "id": "BE74C70B-7E47-4E25-957C-C83CFEB73D6D", + "name": "timer-off-outline", + "codepoint": "F051E", + "aliases": [ + "stopwatch-off-outline" + ], + "tags": [ + "Date \/ Time" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "017E0965-CD2E-4B39-B0C5-410335848B12", + "name": "timer-outline", + "codepoint": "F051B", + "aliases": [ + "stopwatch-outline" + ], + "tags": [ + "Date \/ Time" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "64EFBA89-F8CB-4193-8656-A83CCBC66A76", + "name": "timer-sand", + "codepoint": "F051F", + "aliases": [ + "hourglass" + ], + "tags": [ + "Date \/ Time" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "A3EC03DF-2DAD-4B48-AFA8-681324AE2460", + "name": "timer-sand-complete", + "codepoint": "F199F", + "aliases": [ + "hourglass-complete" + ], + "tags": [ + "Date \/ Time" + ], + "author": "Jeff Anders", + "version": "6.5.95" + }, + { + "id": "DD31FFF2-A93B-41F5-BA6C-1732E8A8DEFF", + "name": "timer-sand-empty", + "codepoint": "F06AD", + "aliases": [ + "hourglass-empty" + ], + "tags": [ + "Date \/ Time" + ], + "author": "Google", + "version": "1.7.12" + }, + { + "id": "E603301B-7DF4-43C2-9035-0DDB2A50B88E", + "name": "timer-sand-full", + "codepoint": "F078C", + "aliases": [ + "hourglass-full" + ], + "tags": [ + "Date \/ Time" + ], + "author": "Google", + "version": "1.9.32" + }, + { + "id": "24C73172-9253-4C99-B214-B1C523115D79", + "name": "timer-sand-paused", + "codepoint": "F19A0", + "aliases": [ + "hourglass-paused" + ], + "tags": [ + "Date \/ Time" + ], + "author": "Jeff Anders", + "version": "6.5.95" + }, + { + "id": "F8FF1136-69B0-4DCA-9BC6-092AE2CE23F2", + "name": "timer-settings", + "codepoint": "F1923", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "33E186AB-8B36-40C1-BC72-D9614A115B74", + "name": "timer-settings-outline", + "codepoint": "F1924", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "F06ED6E0-0EB1-4B39-8E85-1A82A273F473", + "name": "timetable", + "codepoint": "F0520", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "5F99B55B-0B1C-4FD7-B9F6-DD35A16DBCF1", + "name": "tire", + "codepoint": "F1896", + "aliases": [ + "tyre", + "wheel" + ], + "tags": [ + "Automotive", + "Agriculture" + ], + "author": "Michael Irigoyen", + "version": "6.2.95" + }, + { + "id": "5042FF4E-78E5-43D5-B992-1AAEAE51AB25", + "name": "toaster", + "codepoint": "F1063", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Richins", + "version": "4.1.95" + }, + { + "id": "97660B13-F700-455E-9C04-CACAC4450118", + "name": "toaster-off", + "codepoint": "F11B7", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "4.5.95" + }, + { + "id": "BA8D8327-7F94-4BB9-8199-9C012BAAF549", + "name": "toaster-oven", + "codepoint": "F0CD3", + "aliases": [], + "tags": [ + "Home Automation", + "Food \/ Drink" + ], + "author": "GreenTurtwig", + "version": "3.2.89" + }, + { + "id": "D1AD4F4E-3CFE-4F51-932D-D3942A26C418", + "name": "toggle-switch", + "codepoint": "F0521", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "A54ADA14-0917-432E-9288-3364FBAEBCE2", + "name": "toggle-switch-off", + "codepoint": "F0522", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "1DCEDC73-941F-4412-B0B7-B7042888F91A", + "name": "toggle-switch-off-outline", + "codepoint": "F0A19", + "aliases": [], + "tags": [], + "author": "Google", + "version": "2.5.94" + }, + { + "id": "2645C66C-41C1-4536-9BB5-4530B8C8E89B", + "name": "toggle-switch-outline", + "codepoint": "F0A1A", + "aliases": [], + "tags": [], + "author": "Google", + "version": "2.5.94" + }, + { + "id": "5A1815F9-FC9E-4420-B723-AF4B324262A4", + "name": "toilet", + "codepoint": "F09AB", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Augustin Ursu", + "version": "2.4.85" + }, + { + "id": "79D1B3B8-FC3E-4978-AA8E-C78A1360B880", + "name": "toolbox", + "codepoint": "F09AC", + "aliases": [], + "tags": [ + "Hardware \/ Tools" + ], + "author": "Google", + "version": "2.4.85" + }, + { + "id": "F016813A-4390-482A-8FFF-D081FDD21362", + "name": "toolbox-outline", + "codepoint": "F09AD", + "aliases": [ + "service-toolbox" + ], + "tags": [ + "Hardware \/ Tools" + ], + "author": "Google", + "version": "2.4.85" + }, + { + "id": "CF5ABC25-55E6-4B19-B338-85F45926DEE1", + "name": "tools", + "codepoint": "F1064", + "aliases": [ + "wrench", + "screwdriver" + ], + "tags": [ + "Hardware \/ Tools" + ], + "author": "Michael Richins", + "version": "4.1.95" + }, + { + "id": "D6AD70EE-33F4-4C3A-8ED1-3CD3236222F8", + "name": "tooltip", + "codepoint": "F0523", + "aliases": [], + "tags": [ + "Tooltip" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "CA087C29-F27F-4DBE-8617-1369C18DF51D", + "name": "tooltip-account", + "codepoint": "F000C", + "aliases": [ + "tooltip-user", + "tooltip-person", + "account-location" + ], + "tags": [ + "Account \/ User", + "Tooltip" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "F2CBC47D-4716-44EB-81E0-71915241860E", + "name": "tooltip-cellphone", + "codepoint": "F183B", + "aliases": [ + "cellphone-location", + "cellphone-gps", + "find-my-phone" + ], + "tags": [ + "Cellphone \/ Phone" + ], + "author": "Michael Irigoyen", + "version": "6.2.95" + }, + { + "id": "B2FDABD3-4E66-461C-8DC0-10D9A18441B8", + "name": "tooltip-check", + "codepoint": "F155C", + "aliases": [], + "tags": [ + "Tooltip" + ], + "author": "Colton Wiscombe", + "version": "5.5.55" + }, + { + "id": "255D95B4-1A63-408F-9CED-17AE2D05F38B", + "name": "tooltip-check-outline", + "codepoint": "F155D", + "aliases": [], + "tags": [ + "Tooltip" + ], + "author": "Colton Wiscombe", + "version": "5.5.55" + }, + { + "id": "C1684CDD-9C71-4A10-B3BA-5B26706B3B28", + "name": "tooltip-edit", + "codepoint": "F0524", + "aliases": [], + "tags": [ + "Tooltip", + "Edit \/ Modify" + ], + "author": "Michael Irigoyen", + "version": "1.5.54" + }, + { + "id": "B9D8D642-EFDD-4AFF-B1CD-86AB7E914347", + "name": "tooltip-edit-outline", + "codepoint": "F12C5", + "aliases": [], + "tags": [ + "Edit \/ Modify", + "Tooltip" + ], + "author": "Michael Irigoyen", + "version": "4.8.95" + }, + { + "id": "1DF33E50-EBEA-4A62-8455-84C28271C8D2", + "name": "tooltip-image", + "codepoint": "F0525", + "aliases": [], + "tags": [ + "Tooltip" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "9E49D099-C7CD-42A3-BFA1-8AC8966898B5", + "name": "tooltip-image-outline", + "codepoint": "F0BD5", + "aliases": [], + "tags": [ + "Tooltip" + ], + "author": "Austin Andrews", + "version": "3.0.39" + }, + { + "id": "A8D3907B-9528-4EB0-AB75-EA6013F042F1", + "name": "tooltip-minus", + "codepoint": "F155E", + "aliases": [], + "tags": [ + "Tooltip" + ], + "author": "Colton Wiscombe", + "version": "5.5.55" + }, + { + "id": "674242D7-81B2-4C9E-BC60-3F96AD379C52", + "name": "tooltip-minus-outline", + "codepoint": "F155F", + "aliases": [], + "tags": [ + "Tooltip" + ], + "author": "Colton Wiscombe", + "version": "5.5.55" + }, + { + "id": "C14A3C70-357F-4AE8-963C-B45ED543A4DB", + "name": "tooltip-outline", + "codepoint": "F0526", + "aliases": [], + "tags": [ + "Tooltip" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "E1ED044C-BD73-4844-A33D-7ED9A1D232F5", + "name": "tooltip-plus", + "codepoint": "F0BD6", + "aliases": [ + "tooltip-add" + ], + "tags": [ + "Tooltip" + ], + "author": "Austin Andrews", + "version": "3.0.39" + }, + { + "id": "CAA5F3A3-2044-48AC-94CA-04899F9459ED", + "name": "tooltip-plus-outline", + "codepoint": "F0527", + "aliases": [ + "tooltip-outline-plus", + "tooltip-add-outline" + ], + "tags": [ + "Tooltip" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "A54A45EF-9C4B-4AFB-8734-610B14D521A5", + "name": "tooltip-remove", + "codepoint": "F1560", + "aliases": [], + "tags": [ + "Tooltip" + ], + "author": "Colton Wiscombe", + "version": "5.5.55" + }, + { + "id": "192D99F7-B04B-476A-B638-70F27A7FF1E6", + "name": "tooltip-remove-outline", + "codepoint": "F1561", + "aliases": [], + "tags": [ + "Tooltip" + ], + "author": "Colton Wiscombe", + "version": "5.5.55" + }, + { + "id": "B608ACE2-279D-4C66-9169-32BD86BDF5F3", + "name": "tooltip-text", + "codepoint": "F0528", + "aliases": [], + "tags": [ + "Tooltip" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "B0E2F01D-A8A8-4945-A0C2-FB1866C2C1F2", + "name": "tooltip-text-outline", + "codepoint": "F0BD7", + "aliases": [], + "tags": [ + "Tooltip" + ], + "author": "Austin Andrews", + "version": "3.0.39" + }, + { + "id": "486D33E1-B181-40D4-B088-BBB49221B91F", + "name": "tooth", + "codepoint": "F08C3", + "aliases": [ + "dentist" + ], + "tags": [ + "Medical \/ Hospital" + ], + "author": "Christopher Schreiner", + "version": "2.2.43" + }, + { + "id": "BFD05B50-CF42-49C4-B76D-447DB0AEFEEE", + "name": "tooth-outline", + "codepoint": "F0529", + "aliases": [], + "tags": [], + "author": "Christopher Schreiner", + "version": "1.5.54" + }, + { + "id": "1BA32EF0-94A2-4F7E-BD93-5A9102143F8E", + "name": "toothbrush", + "codepoint": "F1129", + "aliases": [ + "dentist", + "oral-hygiene" + ], + "tags": [ + "Medical \/ Hospital" + ], + "author": "Michael Irigoyen", + "version": "4.3.95" + }, + { + "id": "6CC31B35-04D6-4883-A0CF-3CD35E81AB98", + "name": "toothbrush-electric", + "codepoint": "F112C", + "aliases": [ + "dentist", + "oral-hygiene" + ], + "tags": [ + "Medical \/ Hospital" + ], + "author": "Simran", + "version": "4.4.95" + }, + { + "id": "E06A1B1A-ACE7-43AD-BC75-5C3191D0AB1D", + "name": "toothbrush-paste", + "codepoint": "F112A", + "aliases": [ + "dentist", + "oral-hygiene" + ], + "tags": [ + "Medical \/ Hospital" + ], + "author": "Simran", + "version": "4.3.95" + }, + { + "id": "5E37234B-E874-4FB7-AC74-BD836129C433", + "name": "torch", + "codepoint": "F1606", + "aliases": [ + "olympics" + ], + "tags": [ + "Sport" + ], + "author": "Michael Irigoyen", + "version": "5.6.55" + }, + { + "id": "E66ECEE5-0382-4406-B0AB-CFE819AE7684", + "name": "tortoise", + "codepoint": "F0D3B", + "aliases": [ + "turtle", + "reptile" + ], + "tags": [ + "Animal" + ], + "author": "Nick", + "version": "3.3.92" + }, + { + "id": "207A1D36-F4A1-4ACB-B588-7BEA51C2E285", + "name": "toslink", + "codepoint": "F12B8", + "aliases": [ + "optical-audio" + ], + "tags": [ + "Audio" + ], + "author": "Michael Irigoyen", + "version": "4.7.95" + }, + { + "id": "E2623132-7507-4FFD-8382-E192DDC62D17", + "name": "tournament", + "codepoint": "F09AE", + "aliases": [ + "bracket" + ], + "tags": [ + "Gaming \/ RPG", + "Sport" + ], + "author": "GreenTurtwig", + "version": "2.4.85" + }, + { + "id": "BC8926AA-02C6-4755-B5A8-D3BD29C2CDE0", + "name": "tow-truck", + "codepoint": "F083C", + "aliases": [ + "auto-towing", + "truck" + ], + "tags": [ + "Transportation + Road" + ], + "author": "Google", + "version": "2.1.19" + }, + { + "id": "70D21CFE-DC3C-4615-9524-4CD2F2FDC44E", + "name": "tower-beach", + "codepoint": "F0681", + "aliases": [], + "tags": [], + "author": "Thomas Hunsaker", + "version": "1.7.12" + }, + { + "id": "11E0C03B-7522-4247-B0D3-F04AE1ECB166", + "name": "tower-fire", + "codepoint": "F0682", + "aliases": [], + "tags": [], + "author": "Thomas Hunsaker", + "version": "1.7.12" + }, + { + "id": "C0E839BC-5537-4219-8040-24466FB2F311", + "name": "town-hall", + "codepoint": "F1875", + "aliases": [ + "school" + ], + "tags": [ + "Places" + ], + "author": "nilsfast", + "version": "6.2.95" + }, + { + "id": "DDCE3E75-1E43-45A9-8D94-E24CFD8284B0", + "name": "toy-brick", + "codepoint": "F1288", + "aliases": [ + "lego", + "plugin", + "extension" + ], + "tags": [], + "author": "Michael Richins", + "version": "4.7.95" + }, + { + "id": "602DF6D1-21C6-4540-960D-79D7C37AECF9", + "name": "toy-brick-marker", + "codepoint": "F1289", + "aliases": [ + "lego", + "plugin", + "extension", + "lego-location", + "toy-brick-location" + ], + "tags": [], + "author": "Michael Richins", + "version": "4.7.95" + }, + { + "id": "6EE7FD45-3389-4007-A362-0EDB4B9DF9BD", + "name": "toy-brick-marker-outline", + "codepoint": "F128A", + "aliases": [ + "extension-outline", + "lego-location-outline", + "toy-brick-location-outline", + "plugin-outline", + "lego-outline" + ], + "tags": [], + "author": "Michael Richins", + "version": "4.7.95" + }, + { + "id": "03BB26E3-61C3-4FCF-9532-056FC8DC1E4D", + "name": "toy-brick-minus", + "codepoint": "F128B", + "aliases": [ + "lego", + "plugin", + "extension" + ], + "tags": [], + "author": "Michael Richins", + "version": "4.7.95" + }, + { + "id": "BA71CE05-DEA6-4638-AF5C-2194D6FB946E", + "name": "toy-brick-minus-outline", + "codepoint": "F128C", + "aliases": [ + "lego", + "plugin", + "extension" + ], + "tags": [], + "author": "Michael Richins", + "version": "4.7.95" + }, + { + "id": "E178F91C-A54C-41B1-892F-F17A96283D14", + "name": "toy-brick-outline", + "codepoint": "F128D", + "aliases": [ + "lego", + "plugin", + "extension" + ], + "tags": [], + "author": "Michael Richins", + "version": "4.7.95" + }, + { + "id": "9426C325-5C35-40D8-9CA4-DA230CCC2736", + "name": "toy-brick-plus", + "codepoint": "F128E", + "aliases": [ + "lego", + "plugin", + "extension" + ], + "tags": [], + "author": "Michael Richins", + "version": "4.7.95" + }, + { + "id": "A710B239-7C1A-4BDE-B337-AFEF3CD9E067", + "name": "toy-brick-plus-outline", + "codepoint": "F128F", + "aliases": [ + "lego", + "plugin", + "extension" + ], + "tags": [], + "author": "Michael Richins", + "version": "4.7.95" + }, + { + "id": "F5773738-AE3C-423C-8B64-6C951B9A4B3A", + "name": "toy-brick-remove", + "codepoint": "F1290", + "aliases": [ + "lego", + "plugin", + "extension" + ], + "tags": [], + "author": "Michael Richins", + "version": "4.7.95" + }, + { + "id": "497261EB-0B21-4829-8659-1B1EB39043D1", + "name": "toy-brick-remove-outline", + "codepoint": "F1291", + "aliases": [ + "lego", + "plugin", + "extension" + ], + "tags": [], + "author": "Michael Richins", + "version": "4.7.95" + }, + { + "id": "AEED3DA4-5EAF-4630-BA5B-6E4675E29FA1", + "name": "toy-brick-search", + "codepoint": "F1292", + "aliases": [ + "lego", + "plugin", + "extension" + ], + "tags": [], + "author": "Michael Richins", + "version": "4.7.95" + }, + { + "id": "86074918-B854-4C06-AAD5-C02EA910A6A2", + "name": "toy-brick-search-outline", + "codepoint": "F1293", + "aliases": [ + "lego", + "plugin", + "extension" + ], + "tags": [], + "author": "Michael Richins", + "version": "4.7.95" + }, + { + "id": "6BF0AEDF-F822-460F-8CEB-AEF0D83815F5", + "name": "track-light", + "codepoint": "F0914", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "2.3.50" + }, + { + "id": "C06AFD8C-C769-41B1-8E5C-355CE5DBEE8E", + "name": "trackpad", + "codepoint": "F07F8", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "2.0.46" + }, + { + "id": "92AB470E-CDB3-43F8-A299-D32C94043D83", + "name": "trackpad-lock", + "codepoint": "F0933", + "aliases": [], + "tags": [ + "Lock" + ], + "author": "Simran", + "version": "2.3.54" + }, + { + "id": "D5993895-5ECF-4B4A-8C84-7E3D9C1F6ADB", + "name": "tractor", + "codepoint": "F0892", + "aliases": [ + "farm" + ], + "tags": [ + "Agriculture", + "Transportation + Road" + ], + "author": "GreenTurtwig", + "version": "2.1.99" + }, + { + "id": "C80B9924-A19D-440E-8543-E1E232FAA90B", + "name": "tractor-variant", + "codepoint": "F14C4", + "aliases": [ + "agriculture" + ], + "tags": [ + "Agriculture" + ], + "author": "Google", + "version": "5.3.45" + }, + { + "id": "E1849947-175A-4347-BFC7-D8C7811F0B2B", + "name": "trademark", + "codepoint": "F0A78", + "aliases": [ + "tm" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "2.6.95" + }, + { + "id": "BA597840-6D3A-4D89-B8DC-63C5B2DA6638", + "name": "traffic-cone", + "codepoint": "F137C", + "aliases": [], + "tags": [ + "Transportation + Road" + ], + "author": "Michael Richins", + "version": "4.9.95" + }, + { + "id": "073B4489-5787-432C-9D10-50B270182D34", + "name": "traffic-light", + "codepoint": "F052B", + "aliases": [ + "traffic-signal", + "stop-light" + ], + "tags": [ + "Transportation + Road" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "912B0C1C-8E8A-4AA4-9166-C1BCCC85BDF9", + "name": "traffic-light-outline", + "codepoint": "F182A", + "aliases": [ + "traffic-signal-outline", + "stop-light-outline" + ], + "tags": [ + "Transportation + Road" + ], + "author": "Google", + "version": "6.1.95" + }, + { + "id": "B6E1232A-3A43-4200-BE34-1BC436B34BF1", + "name": "train", + "codepoint": "F052C", + "aliases": [ + "directions-railway", + "locomotive", + "railroad" + ], + "tags": [ + "Navigation", + "Transportation + Other" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "20588836-2EC7-467D-9E72-15D3C4FE7C93", + "name": "train-car", + "codepoint": "F0BD8", + "aliases": [ + "commute", + "transportation", + "travel" + ], + "tags": [ + "Transportation + Other" + ], + "author": "Google", + "version": "3.0.39" + }, + { + "id": "04821E67-5037-46E7-8F5E-740C7EBFAC1D", + "name": "train-car-passenger", + "codepoint": "F1733", + "aliases": [], + "tags": [ + "Transportation + Other" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "9F9E31CB-361B-40D6-8754-157401124ED2", + "name": "train-car-passenger-door", + "codepoint": "F1734", + "aliases": [], + "tags": [ + "Transportation + Other" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "042CE4C4-087F-49EC-9F67-A5467318C068", + "name": "train-car-passenger-door-open", + "codepoint": "F1735", + "aliases": [], + "tags": [ + "Transportation + Other" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "1A9FFFAE-5581-4E22-B87C-3798A9E97FD1", + "name": "train-car-passenger-variant", + "codepoint": "F1736", + "aliases": [], + "tags": [ + "Transportation + Other" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "C0A4E604-3829-4605-A7BC-CA0BFF138B18", + "name": "train-variant", + "codepoint": "F08C4", + "aliases": [ + "locomotive-variant", + "railroad-variant" + ], + "tags": [ + "Transportation + Other" + ], + "author": "Google", + "version": "2.2.43" + }, + { + "id": "13AE3C37-5323-4FE6-86F7-3B30B635969F", + "name": "tram", + "codepoint": "F052D", + "aliases": [], + "tags": [ + "Navigation", + "Transportation + Other" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "BEB0D58A-A99B-40FE-9E6C-C81218E683F8", + "name": "tram-side", + "codepoint": "F0FE7", + "aliases": [], + "tags": [ + "Transportation + Other" + ], + "author": "Google", + "version": "4.0.96" + }, + { + "id": "6DD88A18-582D-400D-A5AB-12996F26A05D", + "name": "transcribe", + "codepoint": "F052E", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "2D2FB32D-B253-4D3E-BA04-7AD5D5FE2C2E", + "name": "transcribe-close", + "codepoint": "F052F", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "E9B887E6-76B3-45D5-8F69-43982EE59423", + "name": "transfer", + "codepoint": "F1065", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "4.1.95" + }, + { + "id": "D4CB36CD-4F30-45BE-940D-CC2AFFCA078A", + "name": "transfer-down", + "codepoint": "F0DA1", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Michael Richins", + "version": "3.4.93" + }, + { + "id": "03FA1C8F-8808-4293-A12A-7D9B7F8890D4", + "name": "transfer-left", + "codepoint": "F0DA2", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Michael Richins", + "version": "3.4.93" + }, + { + "id": "D2895587-8DBA-4EDC-8624-3A32C20AB638", + "name": "transfer-right", + "codepoint": "F0530", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "A7928BA3-AC13-42A2-9AC2-5AFBD60E3243", + "name": "transfer-up", + "codepoint": "F0DA3", + "aliases": [], + "tags": [ + "Arrow" + ], + "author": "Michael Richins", + "version": "3.4.93" + }, + { + "id": "370C931A-E40F-4950-B9CE-87D337720400", + "name": "transit-connection", + "codepoint": "F0D3C", + "aliases": [], + "tags": [ + "Transportation + Other", + "Navigation" + ], + "author": "Michael Irigoyen", + "version": "3.3.92" + }, + { + "id": "5F428B0A-E91D-48E5-8896-0CE072C919E4", + "name": "transit-connection-horizontal", + "codepoint": "F1546", + "aliases": [], + "tags": [ + "Transportation + Other" + ], + "author": "Jeff Anders", + "version": "5.4.55" + }, + { + "id": "9E27C6FE-B44C-4A92-BDD7-A546A4F83E9D", + "name": "transit-connection-variant", + "codepoint": "F0D3D", + "aliases": [], + "tags": [ + "Transportation + Other", + "Navigation" + ], + "author": "Michael Irigoyen", + "version": "3.3.92" + }, + { + "id": "247F5D41-FA03-4D63-97AF-B39A4D4A7BFC", + "name": "transit-detour", + "codepoint": "F0F8B", + "aliases": [], + "tags": [ + "Transportation + Other", + "Navigation" + ], + "author": "Myron Netterlund", + "version": "3.9.97" + }, + { + "id": "A52E6E56-7AE7-45E3-B854-A2DF41F3141B", + "name": "transit-skip", + "codepoint": "F1515", + "aliases": [], + "tags": [ + "Transportation + Other" + ], + "author": "Jeff Anders", + "version": "5.4.55" + }, + { + "id": "CE6451FA-EF46-40B4-B87B-BCF93DDE6E54", + "name": "transit-transfer", + "codepoint": "F06AE", + "aliases": [ + "transfer-within-a-station" + ], + "tags": [ + "Transportation + Other", + "Navigation" + ], + "author": "Google", + "version": "1.7.12" + }, + { + "id": "2650CA0F-8423-4DE2-A821-9D7D1E5547C0", + "name": "transition", + "codepoint": "F0915", + "aliases": [ + "animation", + "motion", + "translate" + ], + "tags": [], + "author": "Google", + "version": "2.3.50" + }, + { + "id": "D254EE82-37CA-4897-BE12-6FD0ED708E38", + "name": "transition-masked", + "codepoint": "F0916", + "aliases": [ + "masked-transitions" + ], + "tags": [], + "author": "Google", + "version": "2.3.50" + }, + { + "id": "4486DD26-4110-457E-BBD7-B5D19DF72E4E", + "name": "translate", + "codepoint": "F05CA", + "aliases": [ + "language" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "B65945C4-51D4-464A-985F-E6F9995BE40D", + "name": "translate-off", + "codepoint": "F0E06", + "aliases": [], + "tags": [], + "author": "Joshua Solomon", + "version": "3.5.94" + }, + { + "id": "DBA97655-B2ED-4FA6-95E0-02E7273549C9", + "name": "transmission-tower", + "codepoint": "F0D3E", + "aliases": [ + "pylon", + "powerline", + "electricity", + "energy", + "power", + "grid" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "3.3.92" + }, + { + "id": "F1AC7C0E-CA03-4ED0-AFE9-CE0CEB3C9806", + "name": "transmission-tower-export", + "codepoint": "F192C", + "aliases": [ + "power-from-grid", + "energy-from-grid", + "electricity-from-grid" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "7CCBC365-A3F5-46BA-869B-AADA93F5D027", + "name": "transmission-tower-import", + "codepoint": "F192D", + "aliases": [ + "power-to-grid", + "energy-to-grid", + "electricity-to-grid", + "return-to-grid" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "C54CC9F5-7BCA-4368-B379-E0CCD221A567", + "name": "transmission-tower-off", + "codepoint": "F19DD", + "aliases": [ + "powerline-off", + "pylon-off", + "grid-off" + ], + "tags": [ + "Home Automation" + ], + "author": "Simran", + "version": "6.6.95" + }, + { + "id": "260712C5-252B-484C-B5A7-33827BBC5487", + "name": "trash-can", + "codepoint": "F0A79", + "aliases": [ + "delete", + "rubbish-bin", + "trashcan", + "garbage-can" + ], + "tags": [], + "author": "GreenTurtwig", + "version": "2.6.95" + }, + { + "id": "A586B5B1-1D48-4BC8-B31C-F8E93DC8CD49", + "name": "trash-can-outline", + "codepoint": "F0A7A", + "aliases": [ + "delete-outline", + "rubbish-bin-outline", + "trashcan-outline", + "garbage-can-outline" + ], + "tags": [], + "author": "GreenTurtwig", + "version": "2.6.95" + }, + { + "id": "F9A7F6AA-7379-4215-A97A-0E2FCAF3A9ED", + "name": "tray", + "codepoint": "F1294", + "aliases": [ + "queue", + "printer", + "inbox" + ], + "tags": [], + "author": "Michael Richins", + "version": "4.7.95" + }, + { + "id": "A1CCEE33-5CCA-43B9-B056-23F3EAFBE506", + "name": "tray-alert", + "codepoint": "F1295", + "aliases": [ + "queue", + "printer", + "inbox" + ], + "tags": [ + "Alert \/ Error" + ], + "author": "Michael Richins", + "version": "4.7.95" + }, + { + "id": "8B1B6ED1-8AA5-4888-8477-B122FB236E1D", + "name": "tray-arrow-down", + "codepoint": "F0120", + "aliases": [ + "tray-download" + ], + "tags": [ + "Arrow" + ], + "author": "arnoldlepineux", + "version": "1.5.54" + }, + { + "id": "C633DDA7-FB93-4041-98C2-92117B970114", + "name": "tray-arrow-up", + "codepoint": "F011D", + "aliases": [ + "tray-upload" + ], + "tags": [ + "Arrow" + ], + "author": "arnoldlepineux", + "version": "1.5.54" + }, + { + "id": "B81435D3-9FE4-470D-A46A-7FEDA1773D15", + "name": "tray-full", + "codepoint": "F1296", + "aliases": [ + "queue", + "printer", + "inbox" + ], + "tags": [], + "author": "Michael Richins", + "version": "4.7.95" + }, + { + "id": "F7F07C92-4531-466D-AC3E-F7822D2FDFBD", + "name": "tray-minus", + "codepoint": "F1297", + "aliases": [ + "queue", + "printer", + "inbox" + ], + "tags": [], + "author": "Michael Richins", + "version": "4.7.95" + }, + { + "id": "BF55355C-56CC-4C1F-9136-D92AA0800706", + "name": "tray-plus", + "codepoint": "F1298", + "aliases": [ + "queue", + "printer", + "inbox" + ], + "tags": [], + "author": "Michael Richins", + "version": "4.7.95" + }, + { + "id": "FACF04CD-2633-47EC-97BE-59A3341289C3", + "name": "tray-remove", + "codepoint": "F1299", + "aliases": [ + "queue", + "printer", + "inbox" + ], + "tags": [], + "author": "Michael Richins", + "version": "4.7.95" + }, + { + "id": "A0678E6D-C3D3-42AB-B9E7-C1B12D368B70", + "name": "treasure-chest", + "codepoint": "F0726", + "aliases": [], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Alex Efremo", + "version": "1.8.36" + }, + { + "id": "58E298BD-F32E-420D-9E55-BDB44D583AB7", + "name": "tree", + "codepoint": "F0531", + "aliases": [ + "plant" + ], + "tags": [ + "Nature" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "81548212-EBFA-48B0-B0EB-D95EB5C0CC91", + "name": "tree-outline", + "codepoint": "F0E69", + "aliases": [ + "plant" + ], + "tags": [ + "Nature" + ], + "author": "Simran", + "version": "3.6.95" + }, + { + "id": "25CA8276-A876-459D-B203-C81C58F88342", + "name": "trello", + "codepoint": "F0532", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "ACC5BB4D-9439-472F-9DD5-F026FF36D023", + "name": "trending-down", + "codepoint": "F0533", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "A39F489B-ABB1-4420-A6DC-20AF0E2CF6DA", + "name": "trending-neutral", + "codepoint": "F0534", + "aliases": [ + "trending-flat" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "4277434D-74AD-48E7-9C5F-BB7226C4FC39", + "name": "trending-up", + "codepoint": "F0535", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "78EC62FE-EC63-407F-BCF3-92C441398DDA", + "name": "triangle", + "codepoint": "F0536", + "aliases": [], + "tags": [ + "Shape" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "74A6BF3E-CEC2-40C3-A900-109D5E05E218", + "name": "triangle-outline", + "codepoint": "F0537", + "aliases": [], + "tags": [ + "Shape" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "59CAC75D-7028-4672-9EC2-1B9E797BA9D1", + "name": "triangle-wave", + "codepoint": "F147C", + "aliases": [], + "tags": [ + "Audio" + ], + "author": "Haley Halcyon", + "version": "5.2.45" + }, + { + "id": "835C3AA9-800B-4767-BDED-97FB875B19DF", + "name": "triforce", + "codepoint": "F0BD9", + "aliases": [ + "zelda" + ], + "tags": [ + "Gaming \/ RPG" + ], + "author": "Austin Andrews", + "version": "3.0.39" + }, + { + "id": "0B9368A1-FC31-4D0D-8909-C2D44DCC0B83", + "name": "trophy", + "codepoint": "F0538", + "aliases": [ + "achievement" + ], + "tags": [ + "Sport" + ], + "author": "Doug C. Hardester", + "version": "1.5.54" + }, + { + "id": "39F70CE8-5C56-4AAB-A4F7-93F871B1CB96", + "name": "trophy-award", + "codepoint": "F0539", + "aliases": [ + "achievement-award" + ], + "tags": [ + "Sport" + ], + "author": "Doug C. Hardester", + "version": "1.5.54" + }, + { + "id": "3AC48F23-1321-4B8E-80D7-B050CCBA0255", + "name": "trophy-broken", + "codepoint": "F0DA4", + "aliases": [], + "tags": [ + "Sport" + ], + "author": "Nikos Pappas", + "version": "3.4.93" + }, + { + "id": "D7B01958-C212-49B9-B58B-146B4017348C", + "name": "trophy-outline", + "codepoint": "F053A", + "aliases": [ + "achievement-outline" + ], + "tags": [ + "Sport" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "C6664923-EE26-4175-90CB-AD87B517F2FF", + "name": "trophy-variant", + "codepoint": "F053B", + "aliases": [ + "achievement-variant" + ], + "tags": [ + "Sport" + ], + "author": "Doug C. Hardester", + "version": "1.5.54" + }, + { + "id": "C3A5133F-0462-40DB-863A-3659FC5DFE0E", + "name": "trophy-variant-outline", + "codepoint": "F053C", + "aliases": [ + "achievement-variant-outline" + ], + "tags": [ + "Sport" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "A0B91DEA-DB9A-4737-B2F4-26B805B88648", + "name": "truck", + "codepoint": "F053D", + "aliases": [ + "lorry", + "local-shipping", + "courier" + ], + "tags": [ + "Transportation + Road" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "8650D94A-71BC-4B6B-9BA9-A6A2A756063C", + "name": "truck-alert", + "codepoint": "F19DE", + "aliases": [], + "tags": [ + "Transportation + Road" + ], + "author": "Simran", + "version": "6.6.95" + }, + { + "id": "FCE10225-CA09-4B2E-8BE3-5B9D718B13D5", + "name": "truck-alert-outline", + "codepoint": "F19DF", + "aliases": [], + "tags": [ + "Transportation + Road" + ], + "author": "Simran", + "version": "6.6.95" + }, + { + "id": "8C535C82-EAA1-431A-90AE-D0A5032024EB", + "name": "truck-cargo-container", + "codepoint": "F18D8", + "aliases": [ + "truck-shipping" + ], + "tags": [ + "Transportation + Road" + ], + "author": "Colton Wiscombe", + "version": "6.3.95" + }, + { + "id": "39C645BD-15AE-42BE-B571-5744CB77E97D", + "name": "truck-check", + "codepoint": "F0CD4", + "aliases": [ + "truck-tick", + "lorry-check", + "courier-check" + ], + "tags": [], + "author": "Austin Andrews", + "version": "3.2.89" + }, + { + "id": "BCEE78F4-69D9-40FC-8174-D299610C0690", + "name": "truck-check-outline", + "codepoint": "F129A", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "4.7.95" + }, + { + "id": "D0EB091D-C62C-4A93-9AE4-AE942F5738C7", + "name": "truck-delivery", + "codepoint": "F053E", + "aliases": [ + "lorry-delivery" + ], + "tags": [ + "Transportation + Road" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "E65E8E41-4516-4C25-B3C1-F6B71894B5B2", + "name": "truck-delivery-outline", + "codepoint": "F129B", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "4.7.95" + }, + { + "id": "401AC514-6441-4DDC-80DC-48CF851C5B5E", + "name": "truck-fast", + "codepoint": "F0788", + "aliases": [ + "lorry-fast", + "courier-fast" + ], + "tags": [ + "Transportation + Road" + ], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "42696369-BAF9-4854-A57D-355F89630929", + "name": "truck-fast-outline", + "codepoint": "F129C", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "4.7.95" + }, + { + "id": "4A29028B-25F3-423F-B924-BB93FAEC2DCF", + "name": "truck-flatbed", + "codepoint": "F1891", + "aliases": [ + "truck-flatbed-tow" + ], + "tags": [ + "Automotive" + ], + "author": "Colton Wiscombe", + "version": "6.2.95" + }, + { + "id": "3F802DD6-094E-4C91-B78B-9790D1F39D9F", + "name": "truck-minus", + "codepoint": "F19AE", + "aliases": [ + "truck-subtract" + ], + "tags": [ + "Transportation + Road" + ], + "author": "Michael Richins", + "version": "6.5.95" + }, + { + "id": "583767E2-4272-4483-99B5-5677E6EAB027", + "name": "truck-minus-outline", + "codepoint": "F19BD", + "aliases": [ + "truck-subtract-outline" + ], + "tags": [ + "Transportation + Road" + ], + "author": "Colton Wiscombe", + "version": "6.5.95" + }, + { + "id": "09111629-7960-46BA-A70E-DC85128E4F4A", + "name": "truck-outline", + "codepoint": "F129D", + "aliases": [], + "tags": [], + "author": "Google", + "version": "4.7.95" + }, + { + "id": "CE4CCBED-7E6E-4F0C-ADF9-AC3347BF897D", + "name": "truck-plus", + "codepoint": "F19AD", + "aliases": [ + "truck-add" + ], + "tags": [ + "Transportation + Road" + ], + "author": "Michael Richins", + "version": "6.5.95" + }, + { + "id": "E920C53D-E340-42C1-86D6-9A1317D9A584", + "name": "truck-plus-outline", + "codepoint": "F19BC", + "aliases": [ + "truck-add-outline" + ], + "tags": [ + "Transportation + Road" + ], + "author": "Colton Wiscombe", + "version": "6.5.95" + }, + { + "id": "AD0B6233-8DDB-4E1F-85E4-63EB669C8E79", + "name": "truck-remove", + "codepoint": "F19AF", + "aliases": [], + "tags": [ + "Transportation + Road" + ], + "author": "Michael Richins", + "version": "6.5.95" + }, + { + "id": "537D027D-BD0C-43DC-B772-1F0FD0E0041A", + "name": "truck-remove-outline", + "codepoint": "F19BE", + "aliases": [], + "tags": [ + "Transportation + Road" + ], + "author": "Colton Wiscombe", + "version": "6.5.95" + }, + { + "id": "EEE6A113-50D3-4216-B103-C60D857D7E31", + "name": "truck-snowflake", + "codepoint": "F19A6", + "aliases": [ + "truck-refrigerator", + "truck-freezer" + ], + "tags": [ + "Transportation + Road" + ], + "author": "Erdem YILMAZ", + "version": "6.5.95" + }, + { + "id": "6F488FA3-B882-443D-8619-0124217E267C", + "name": "truck-trailer", + "codepoint": "F0727", + "aliases": [], + "tags": [ + "Transportation + Road" + ], + "author": "Michael Richins", + "version": "1.8.36" + }, + { + "id": "CCE02F94-2930-488B-A39C-17A8DD8BE591", + "name": "trumpet", + "codepoint": "F1096", + "aliases": [], + "tags": [ + "Music" + ], + "author": "Michael Irigoyen", + "version": "4.2.95" + }, + { + "id": "E46BD04B-78BF-4243-8608-46930051A694", + "name": "tshirt-crew", + "codepoint": "F0A7B", + "aliases": [ + "t-shirt-crew" + ], + "tags": [ + "Clothing" + ], + "author": "Michael Richins", + "version": "2.6.95" + }, + { + "id": "6B67D149-AE33-40CF-997F-C57A7ECB8D42", + "name": "tshirt-crew-outline", + "codepoint": "F053F", + "aliases": [ + "t-shirt-crew-outline" + ], + "tags": [ + "Clothing" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "618A5FB1-7308-4C2B-BCE1-461BA9DBFD13", + "name": "tshirt-v", + "codepoint": "F0A7C", + "aliases": [ + "t-shirt-v" + ], + "tags": [ + "Clothing" + ], + "author": "Michael Richins", + "version": "2.6.95" + }, + { + "id": "94791D5D-EEC5-4562-98DD-DF285E972EC8", + "name": "tshirt-v-outline", + "codepoint": "F0540", + "aliases": [ + "t-shirt-v-outline" + ], + "tags": [ + "Clothing" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "7796F195-34DA-4CAA-8F58-1179343EFB18", + "name": "tumble-dryer", + "codepoint": "F0917", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "2.3.50" + }, + { + "id": "D21E17B9-0D84-4C21-977C-D1056E934449", + "name": "tumble-dryer-alert", + "codepoint": "F11BA", + "aliases": [], + "tags": [ + "Home Automation", + "Alert \/ Error" + ], + "author": "Michael Irigoyen", + "version": "4.5.95" + }, + { + "id": "E9DC2320-5FD4-403B-8445-9EB68B4468B6", + "name": "tumble-dryer-off", + "codepoint": "F11BB", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "4.5.95" + }, + { + "id": "B1F7C2ED-4017-4162-A4C7-31D8761D8DC3", + "name": "tune", + "codepoint": "F062E", + "aliases": [ + "mixer-settings", + "equaliser", + "settings" + ], + "tags": [ + "Settings", + "Audio" + ], + "author": "Google", + "version": "1.6.50" + }, + { + "id": "B0AFC3B0-B718-407F-A51C-F4D932D7FCB2", + "name": "tune-variant", + "codepoint": "F1542", + "aliases": [ + "settings", + "equalizer" + ], + "tags": [ + "Audio" + ], + "author": "Colton Wiscombe", + "version": "5.4.55" + }, + { + "id": "AB147073-9D20-4DA1-A108-3856FC1764C1", + "name": "tune-vertical", + "codepoint": "F066A", + "aliases": [ + "equaliser-vertical", + "instant-mix", + "settings-vertical", + "mixer-settings-vertical" + ], + "tags": [ + "Settings", + "Audio" + ], + "author": "Google", + "version": "1.6.50" + }, + { + "id": "FF706504-28DF-4752-BD75-E50FFE794421", + "name": "tune-vertical-variant", + "codepoint": "F1543", + "aliases": [ + "settings-vertical", + "equalizer-vertical" + ], + "tags": [ + "Audio" + ], + "author": "Colton Wiscombe", + "version": "5.4.55" + }, + { + "id": "316E6516-22BC-4191-9DF6-BB4FCA8ECCDE", + "name": "tunnel", + "codepoint": "F183D", + "aliases": [], + "tags": [ + "Transportation + Road", + "Transportation + Other" + ], + "author": "Colton Wiscombe", + "version": "6.2.95" + }, + { + "id": "1F64ACCA-5D8A-40FF-9E9A-CC640E9B9002", + "name": "tunnel-outline", + "codepoint": "F183E", + "aliases": [], + "tags": [ + "Transportation + Road", + "Transportation + Other" + ], + "author": "Colton Wiscombe", + "version": "6.2.95" + }, + { + "id": "2BD0CF2B-70B8-4CFB-9350-A613C189EE7D", + "name": "turkey", + "codepoint": "F171B", + "aliases": [ + "thanksgiving" + ], + "tags": [ + "Animal", + "Holiday", + "Agriculture" + ], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "40E06CC0-82EE-4EE0-976B-C6388BBFDD9D", + "name": "turnstile", + "codepoint": "F0CD5", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "3.2.89" + }, + { + "id": "22E6056D-46AF-4249-93DF-D0D5465DD6CA", + "name": "turnstile-outline", + "codepoint": "F0CD6", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "3.2.89" + }, + { + "id": "36BB53AA-DFB4-46DB-AAD7-FE4D266D8EC7", + "name": "turtle", + "codepoint": "F0CD7", + "aliases": [ + "reptile" + ], + "tags": [ + "Animal" + ], + "author": "Nick", + "version": "3.2.89" + }, + { + "id": "8BA5EB2D-7C4F-4336-8994-20CAA433BB26", + "name": "twitch", + "codepoint": "F0543", + "aliases": [], + "tags": [ + "Social Media", + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "A95F7C7C-DE85-4564-BA65-DEDCF3BE105A", + "name": "twitter", + "codepoint": "F0544", + "aliases": [], + "tags": [ + "Brand \/ Logo", + "Social Media" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "B4BC8D17-225E-44B1-A44F-3A6DC21C9A7B", + "name": "two-factor-authentication", + "codepoint": "F09AF", + "aliases": [], + "tags": [], + "author": "GreenTurtwig", + "version": "2.4.85" + }, + { + "id": "C5841F2E-EFD9-4589-BDB1-554DFE6A623C", + "name": "typewriter", + "codepoint": "F0F2D", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "3.8.95" + }, + { + "id": "F8C3B22E-D72C-4A1C-BCB8-A24CBB3CAF46", + "name": "ubisoft", + "codepoint": "F0BDA", + "aliases": [ + "uplay" + ], + "tags": [ + "Brand \/ Logo", + "Gaming \/ RPG" + ], + "author": "Contributors", + "version": "3.0.39" + }, + { + "id": "D0B38B4B-389B-49A8-9797-BE1092231DE9", + "name": "ubuntu", + "codepoint": "F0548", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "D2609FE7-60FE-4372-94A9-7BB3C7AD18DE", + "name": "ufo", + "codepoint": "F10C4", + "aliases": [ + "unidentified-flying-object", + "alien" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.2.95" + }, + { + "id": "A0C08D07-838C-426F-8EA5-EBCA5C117684", + "name": "ufo-outline", + "codepoint": "F10C5", + "aliases": [ + "unidentified-flying-object-outline", + "alien" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.2.95" + }, + { + "id": "A7C08392-F82F-4910-8D0F-6A1907AE19E3", + "name": "ultra-high-definition", + "codepoint": "F07F9", + "aliases": [ + "uhd" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Austin Andrews", + "version": "2.0.46" + }, + { + "id": "EB029748-89CF-4E75-BBC9-9747BEF7AE29", + "name": "umbraco", + "codepoint": "F0549", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "6E7A679E-94FE-4BBD-931F-59B9F25B54EE", + "name": "umbrella", + "codepoint": "F054A", + "aliases": [], + "tags": [ + "Weather" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "20EBCC12-192B-49F0-9641-C61D7B8CD33A", + "name": "umbrella-beach", + "codepoint": "F188A", + "aliases": [], + "tags": [ + "Weather" + ], + "author": "Google", + "version": "6.2.95" + }, + { + "id": "C48A57EA-07D6-40E8-9DFC-189BE630A7ED", + "name": "umbrella-beach-outline", + "codepoint": "F188B", + "aliases": [], + "tags": [ + "Weather" + ], + "author": "Google", + "version": "6.2.95" + }, + { + "id": "591C025F-58CC-4E5D-9D63-FB43A8B7BA78", + "name": "umbrella-closed", + "codepoint": "F09B0", + "aliases": [], + "tags": [ + "Weather" + ], + "author": "Simran", + "version": "2.4.85" + }, + { + "id": "4B483491-948F-4126-9041-DE8D3A4A9A10", + "name": "umbrella-closed-outline", + "codepoint": "F13E2", + "aliases": [], + "tags": [ + "Weather" + ], + "author": "Simran", + "version": "5.1.45" + }, + { + "id": "B17B3489-56A4-490D-828E-61A64754EB1A", + "name": "umbrella-closed-variant", + "codepoint": "F13E1", + "aliases": [], + "tags": [ + "Weather" + ], + "author": "Moma Design Studio", + "version": "5.1.45" + }, + { + "id": "7E42C11A-74C3-4C0F-BE6B-9794F343925A", + "name": "umbrella-outline", + "codepoint": "F054B", + "aliases": [], + "tags": [ + "Weather" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "C9D6F6DE-E9F7-4AC9-B9F1-41160A4C2B0E", + "name": "undo", + "codepoint": "F054C", + "aliases": [ + "arrow" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "C262C766-4474-4BC5-AE66-23E5735F86F1", + "name": "undo-variant", + "codepoint": "F054D", + "aliases": [ + "arrow" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "E533CB7E-48C2-4D9D-B935-B51C918703C0", + "name": "unfold-less-horizontal", + "codepoint": "F054E", + "aliases": [ + "chevron-down-up", + "collapse-horizontal" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "E4DFDADF-60F8-4E90-A501-38381F4346A0", + "name": "unfold-less-vertical", + "codepoint": "F0760", + "aliases": [ + "chevron-right-left", + "collapse-vertical" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "E85F4170-11D3-4757-8247-17EBD07A08D4", + "name": "unfold-more-horizontal", + "codepoint": "F054F", + "aliases": [ + "chevron-up-down", + "expand-horizontal" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "AE8D43D2-00EC-46D9-A21C-4D0024A539D7", + "name": "unfold-more-vertical", + "codepoint": "F0761", + "aliases": [ + "chevron-left-right", + "expand-vertical" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "87E56CEE-67B1-427E-9A28-303F8B6D29A7", + "name": "ungroup", + "codepoint": "F0550", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "0A232580-AB10-422D-B5B0-D0F4EFE7AD6A", + "name": "unicode", + "codepoint": "F0ED0", + "aliases": [], + "tags": [], + "author": "Contributors", + "version": "3.7.94" + }, + { + "id": "B3A5FE32-259C-4FBA-B6EB-A4A1CE7590DE", + "name": "unicorn", + "codepoint": "F15C2", + "aliases": [ + "fantasy" + ], + "tags": [ + "Animal" + ], + "author": "Colton Wiscombe", + "version": "5.6.55" + }, + { + "id": "D0825387-637B-4EB5-BCF5-470A7FCE1F05", + "name": "unicorn-variant", + "codepoint": "F15C3", + "aliases": [ + "fantasy-variant" + ], + "tags": [ + "Animal" + ], + "author": "Colton Wiscombe", + "version": "5.6.55" + }, + { + "id": "A0632550-1C97-49AF-B0B3-463625A8C3FB", + "name": "unicycle", + "codepoint": "F15E5", + "aliases": [], + "tags": [ + "Sport", + "Transportation + Other" + ], + "author": "Colton Wiscombe", + "version": "5.6.55" + }, + { + "id": "50CFC57C-9C70-4953-BDC4-F6340EB7A243", + "name": "unity", + "codepoint": "F06AF", + "aliases": [], + "tags": [ + "Brand \/ Logo", + "Gaming \/ RPG" + ], + "author": "Contributors", + "version": "1.7.12" + }, + { + "id": "4AC79EF3-5BCA-41EC-976E-CB821416A905", + "name": "unreal", + "codepoint": "F09B1", + "aliases": [ + "unreal-engine" + ], + "tags": [ + "Brand \/ Logo", + "Gaming \/ RPG" + ], + "author": "Contributors", + "version": "2.4.85" + }, + { + "id": "1B274396-AAE7-4CD8-8D57-27E31D915F68", + "name": "update", + "codepoint": "F06B0", + "aliases": [ + "clockwise", + "clock-arrow" + ], + "tags": [ + "Date \/ Time" + ], + "author": "Google", + "version": "1.7.12" + }, + { + "id": "08F8FCE9-67A0-4696-9B83-0B1F11EA959E", + "name": "upload", + "codepoint": "F0552", + "aliases": [ + "file-upload" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "961ECD2E-2849-42C0-909A-5431B0273DA0", + "name": "upload-lock", + "codepoint": "F1373", + "aliases": [], + "tags": [ + "Lock" + ], + "author": "Michael Richins", + "version": "4.9.95" + }, + { + "id": "AB9A1FD5-FAAC-4E6F-8B6D-D642D7066E96", + "name": "upload-lock-outline", + "codepoint": "F1374", + "aliases": [], + "tags": [ + "Lock" + ], + "author": "Michael Richins", + "version": "4.9.95" + }, + { + "id": "2B1A438E-4795-43D1-B4FD-3997C8E1BA9F", + "name": "upload-multiple", + "codepoint": "F083D", + "aliases": [ + "uploads" + ], + "tags": [], + "author": "Michael Richins", + "version": "2.1.19" + }, + { + "id": "B473675B-DF1E-4450-B85E-786B483C9FA4", + "name": "upload-network", + "codepoint": "F06F6", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.8.36" + }, + { + "id": "279E2BEC-B829-49A3-A9C5-0FC58781975C", + "name": "upload-network-outline", + "codepoint": "F0CD8", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.2.89" + }, + { + "id": "B6A90F94-944A-4B64-B551-1163605C6A30", + "name": "upload-off", + "codepoint": "F10C6", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.2.95" + }, + { + "id": "432A3BF4-56B2-4567-890C-F60CE8CE2F34", + "name": "upload-off-outline", + "codepoint": "F10C7", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.2.95" + }, + { + "id": "02F82A66-CEB3-4F54-825A-811342975170", + "name": "upload-outline", + "codepoint": "F0E07", + "aliases": [ + "file-upload-outline" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.5.94" + }, + { + "id": "25033E0B-3AD4-414D-9972-559F2690FC1D", + "name": "usb", + "codepoint": "F0553", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "DB728530-EAF2-488E-8971-9567A31354DE", + "name": "usb-flash-drive", + "codepoint": "F129E", + "aliases": [], + "tags": [], + "author": "Yaroslav Bandura", + "version": "4.7.95" + }, + { + "id": "9FD568CE-B873-45FC-8F8A-8D8172FB4C7E", + "name": "usb-flash-drive-outline", + "codepoint": "F129F", + "aliases": [], + "tags": [], + "author": "Yaroslav Bandura", + "version": "4.7.95" + }, + { + "id": "B271CD5A-6340-440A-896E-6A53BAE3B685", + "name": "usb-port", + "codepoint": "F11F0", + "aliases": [], + "tags": [], + "author": "GreenTurtwig", + "version": "4.5.95" + }, + { + "id": "280D39D7-C3B6-4C48-827F-D944B4773B0C", + "name": "vacuum", + "codepoint": "F19A1", + "aliases": [ + "vacuum-cleaner" + ], + "tags": [ + "Home Automation" + ], + "author": "Google", + "version": "6.5.95" + }, + { + "id": "DE1B37E2-0CDF-4998-8E91-8A84F3D084BC", + "name": "vacuum-outline", + "codepoint": "F19A2", + "aliases": [ + "vacuum-cleaner-outline" + ], + "tags": [ + "Home Automation" + ], + "author": "Google", + "version": "6.5.95" + }, + { + "id": "304B1BC9-DF83-41FF-B0F9-1FF4D83A95CB", + "name": "valve", + "codepoint": "F1066", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Richins", + "version": "4.1.95" + }, + { + "id": "753E83CB-F6D2-4162-B3B4-6D2B8E0DC642", + "name": "valve-closed", + "codepoint": "F1067", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Richins", + "version": "4.1.95" + }, + { + "id": "E9E77FBB-F72A-4A82-9565-6BE2885D5138", + "name": "valve-open", + "codepoint": "F1068", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Richins", + "version": "4.1.95" + }, + { + "id": "293262AA-69E7-4D04-B441-AAA13D22C63C", + "name": "van-passenger", + "codepoint": "F07FA", + "aliases": [], + "tags": [ + "Transportation + Road" + ], + "author": "GreenTurtwig", + "version": "2.0.46" + }, + { + "id": "517A8F96-14C9-4FAB-8AC2-27321C91E1BF", + "name": "van-utility", + "codepoint": "F07FB", + "aliases": [ + "van-candy" + ], + "tags": [ + "Transportation + Road" + ], + "author": "GreenTurtwig", + "version": "2.0.46" + }, + { + "id": "437A175D-CA2F-44C9-9FA0-A59A43E7C590", + "name": "vanish", + "codepoint": "F07FC", + "aliases": [], + "tags": [], + "author": "ginlime", + "version": "2.0.46" + }, + { + "id": "2BEF3471-36F9-4813-AC45-3C3FF9FC329C", + "name": "vanish-quarter", + "codepoint": "F1554", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "5.5.55" + }, + { + "id": "D8231C86-FA8B-4450-96FC-5C2820DD7DCC", + "name": "vanity-light", + "codepoint": "F11E1", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Richins", + "version": "4.5.95" + }, + { + "id": "6D34F114-FA91-4815-8148-A4C6B3BF128C", + "name": "variable", + "codepoint": "F0AE7", + "aliases": [], + "tags": [ + "Developer \/ Languages", + "Math" + ], + "author": "Michael Richins", + "version": "2.7.94" + }, + { + "id": "AAC0D31F-ABF0-4A36-862E-BAEF2979E243", + "name": "variable-box", + "codepoint": "F1111", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.3.95" + }, + { + "id": "576A1B80-550B-46BD-90A6-A497D8A29BC5", + "name": "vector-arrange-above", + "codepoint": "F0554", + "aliases": [], + "tags": [ + "Vector", + "Arrange", + "Geographic Information System" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "C2EC8280-2EFC-44F4-BA6D-89DE72F06CA3", + "name": "vector-arrange-below", + "codepoint": "F0555", + "aliases": [], + "tags": [ + "Vector", + "Arrange", + "Geographic Information System" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "1D649850-7C33-41FE-8FBA-E6DFAB384AEC", + "name": "vector-bezier", + "codepoint": "F0AE8", + "aliases": [], + "tags": [ + "Vector" + ], + "author": "Louistwee", + "version": "2.7.94" + }, + { + "id": "5C73E245-C6D4-42F0-A5D6-C14F53982661", + "name": "vector-circle", + "codepoint": "F0556", + "aliases": [], + "tags": [ + "Vector", + "Geographic Information System" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "D5741976-7530-4859-97C1-F170BCE7C8B3", + "name": "vector-circle-variant", + "codepoint": "F0557", + "aliases": [], + "tags": [ + "Vector" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "7845F254-C78F-44D3-84E3-421B0B2AFF31", + "name": "vector-combine", + "codepoint": "F0558", + "aliases": [], + "tags": [ + "Vector", + "Geographic Information System" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "546B7A4F-6D63-46CD-B74D-DEF09CE8D8FB", + "name": "vector-curve", + "codepoint": "F0559", + "aliases": [ + "bezier" + ], + "tags": [ + "Vector", + "Geographic Information System" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "C4CA626C-23C3-495A-A73B-4B55A6FBC1F9", + "name": "vector-difference", + "codepoint": "F055A", + "aliases": [], + "tags": [ + "Vector", + "Geographic Information System" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "9D39AD1D-F643-43EF-B55B-6CF2EC4637EC", + "name": "vector-difference-ab", + "codepoint": "F055B", + "aliases": [], + "tags": [ + "Vector", + "Geographic Information System" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "A327D00A-F451-4B88-AEBA-EA87016806CB", + "name": "vector-difference-ba", + "codepoint": "F055C", + "aliases": [], + "tags": [ + "Vector", + "Geographic Information System" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "EE98FF75-8AAA-4912-AFDE-6D5290FD6800", + "name": "vector-ellipse", + "codepoint": "F0893", + "aliases": [], + "tags": [ + "Vector", + "Geographic Information System" + ], + "author": "Austin Andrews", + "version": "2.1.99" + }, + { + "id": "DACB8CA9-A0A9-4766-B1A3-EC334425514A", + "name": "vector-intersection", + "codepoint": "F055D", + "aliases": [], + "tags": [ + "Vector", + "Geographic Information System" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "8C2D4FBB-00B1-4815-971F-03F0788093C2", + "name": "vector-line", + "codepoint": "F055E", + "aliases": [], + "tags": [ + "Vector", + "Geographic Information System" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "FC1F3637-2FBC-4A77-AB1F-FF74FE2B7D78", + "name": "vector-link", + "codepoint": "F0FE8", + "aliases": [], + "tags": [ + "Vector", + "Geographic Information System" + ], + "author": "Simran", + "version": "4.0.96" + }, + { + "id": "C8B18CF5-BD7E-41FC-A653-6B46D85F982A", + "name": "vector-point", + "codepoint": "F055F", + "aliases": [], + "tags": [ + "Vector", + "Geographic Information System" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "6CD0A5FB-8FB8-45E7-9955-A876E4B2ABB4", + "name": "vector-polygon", + "codepoint": "F0560", + "aliases": [], + "tags": [ + "Vector", + "Geographic Information System" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "26BC525C-08EA-4929-9114-8FB8F35B32AD", + "name": "vector-polygon-variant", + "codepoint": "F1856", + "aliases": [], + "tags": [ + "Vector" + ], + "author": "Jeff Anders", + "version": "6.2.95" + }, + { + "id": "1D1C3847-C645-42AE-A93C-DE1E64685762", + "name": "vector-polyline", + "codepoint": "F0561", + "aliases": [], + "tags": [ + "Vector", + "Geographic Information System" + ], + "author": "Andrea Antonello", + "version": "1.5.54" + }, + { + "id": "D2CE645F-5DC0-4E94-AD3C-346D59DD6AB1", + "name": "vector-polyline-edit", + "codepoint": "F1225", + "aliases": [], + "tags": [ + "Edit \/ Modify" + ], + "author": "Andrea Antonello", + "version": "4.6.95" + }, + { + "id": "ADB52436-4BAD-40E2-8A13-48C76188FCE6", + "name": "vector-polyline-minus", + "codepoint": "F1226", + "aliases": [], + "tags": [], + "author": "Andrea Antonello", + "version": "4.6.95" + }, + { + "id": "EFE8791E-593A-4B6F-8EFE-553A00C8E5A4", + "name": "vector-polyline-plus", + "codepoint": "F1227", + "aliases": [], + "tags": [], + "author": "Andrea Antonello", + "version": "4.6.95" + }, + { + "id": "0B173B1A-A4BE-4B96-A33F-2C332150B5AE", + "name": "vector-polyline-remove", + "codepoint": "F1228", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "4.6.95" + }, + { + "id": "1B112A31-E2A7-4BAD-B1F1-5289B8811F08", + "name": "vector-radius", + "codepoint": "F074A", + "aliases": [], + "tags": [ + "Vector", + "Geographic Information System" + ], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "2A12555B-0CBC-4FC9-9F86-88F7785B3B2C", + "name": "vector-rectangle", + "codepoint": "F05C6", + "aliases": [], + "tags": [ + "Vector", + "Geographic Information System" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "B7C380C9-13D8-4A0E-8EEC-1B4FB23F1FB9", + "name": "vector-selection", + "codepoint": "F0562", + "aliases": [], + "tags": [ + "Vector", + "Geographic Information System" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "039be9b8-08ad-11e4-bf19-842b2b6cfe1b", + "name": "vector-square", + "codepoint": "F0001", + "aliases": [ + "mdi" + ], + "tags": [ + "Vector", + "Geographic Information System" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "4B18056D-33ED-4AD5-888D-AF90713CBC73", + "name": "vector-square-close", + "codepoint": "F1857", + "aliases": [], + "tags": [ + "Vector" + ], + "author": "Jeff Anders", + "version": "6.2.95" + }, + { + "id": "613DA7AD-4B76-4514-96D8-4F6964222FF0", + "name": "vector-square-edit", + "codepoint": "F18D9", + "aliases": [], + "tags": [ + "Vector" + ], + "author": "Andrea Antonello", + "version": "6.3.95" + }, + { + "id": "5B415AB4-7F0B-458F-8CB5-CA456D6A48A5", + "name": "vector-square-minus", + "codepoint": "F18DA", + "aliases": [ + "vector-square-subtract" + ], + "tags": [ + "Vector" + ], + "author": "Andrea Antonello", + "version": "6.3.95" + }, + { + "id": "B2FDC7FE-A762-45BE-9405-77F41514BAED", + "name": "vector-square-open", + "codepoint": "F1858", + "aliases": [], + "tags": [ + "Vector" + ], + "author": "Jeff Anders", + "version": "6.2.95" + }, + { + "id": "9373C6A3-8FDD-499A-97EB-34855A15C937", + "name": "vector-square-plus", + "codepoint": "F18DB", + "aliases": [ + "vector-square-add" + ], + "tags": [ + "Vector" + ], + "author": "Andrea Antonello", + "version": "6.3.95" + }, + { + "id": "453AE0C4-2846-4EF0-AD04-D3981FC002A0", + "name": "vector-square-remove", + "codepoint": "F18DC", + "aliases": [ + "vector-square-delete" + ], + "tags": [ + "Vector" + ], + "author": "Andrea Antonello", + "version": "6.3.95" + }, + { + "id": "CE6EAE27-922A-48B9-83AF-5C333B20724F", + "name": "vector-triangle", + "codepoint": "F0563", + "aliases": [], + "tags": [ + "Vector", + "Geographic Information System" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "2FD284B6-3DC1-4733-B08E-BAD459E87B87", + "name": "vector-union", + "codepoint": "F0564", + "aliases": [], + "tags": [ + "Vector", + "Geographic Information System" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "551637A8-2091-4439-9710-71199B7AC0C1", + "name": "vhs", + "codepoint": "F0A1B", + "aliases": [ + "video-home-system", + "vhs-cassette", + "vhs-tape" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "GreenTurtwig", + "version": "2.5.94" + }, + { + "id": "68E64FD4-A020-4DEF-B2CB-5EA5BAA80E42", + "name": "vibrate", + "codepoint": "F0566", + "aliases": [ + "vibration" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "36F2725C-4346-4EB3-9AA8-288DC3E27AFD", + "name": "vibrate-off", + "codepoint": "F0CD9", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "3.2.89" + }, + { + "id": "B1337ECC-EF1F-481B-9E75-6A8DB7A01BB9", + "name": "video", + "codepoint": "F0567", + "aliases": [ + "videocam" + ], + "tags": [ + "Video \/ Movie", + "Home Automation" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "3F4D3E00-72CA-4167-A269-F9DD1A94540D", + "name": "video-3d", + "codepoint": "F07FD", + "aliases": [], + "tags": [ + "Video \/ Movie" + ], + "author": "Austin Andrews", + "version": "2.0.46" + }, + { + "id": "F9B5EF59-C66B-445A-B37D-0CD3FDD5F47A", + "name": "video-3d-off", + "codepoint": "F13D9", + "aliases": [], + "tags": [ + "Video \/ Movie" + ], + "author": "cezar-darac", + "version": "5.1.45" + }, + { + "id": "29FC25BE-88B2-4311-ACD7-F85EFB43D0E9", + "name": "video-3d-variant", + "codepoint": "F0ED1", + "aliases": [], + "tags": [ + "Video \/ Movie" + ], + "author": "Matther Miller", + "version": "3.7.94" + }, + { + "id": "FD1999E4-4780-48E5-8F18-606871BA0581", + "name": "video-4k-box", + "codepoint": "F083E", + "aliases": [ + "4k" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Google", + "version": "2.1.19" + }, + { + "id": "F02BE782-F323-40E5-B245-DF7B6AFB2B15", + "name": "video-account", + "codepoint": "F0919", + "aliases": [ + "video-user" + ], + "tags": [ + "Account \/ User", + "Video \/ Movie" + ], + "author": "Google", + "version": "2.3.50" + }, + { + "id": "9E0AEA4A-7A90-43F7-8A7F-D49F374F11FF", + "name": "video-box", + "codepoint": "F00FD", + "aliases": [], + "tags": [ + "Video \/ Movie" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "A8AD0C27-54CD-4362-A862-C6865B1EE750", + "name": "video-box-off", + "codepoint": "F00FE", + "aliases": [], + "tags": [ + "Video \/ Movie" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "9E4CFE98-3E4E-4C70-B1F1-7316F21427E3", + "name": "video-check", + "codepoint": "F1069", + "aliases": [], + "tags": [ + "Video \/ Movie" + ], + "author": "Michael Irigoyen", + "version": "4.1.95" + }, + { + "id": "206175B7-4215-412C-A30B-979BADCCCEE3", + "name": "video-check-outline", + "codepoint": "F106A", + "aliases": [], + "tags": [ + "Video \/ Movie" + ], + "author": "Michael Irigoyen", + "version": "4.1.95" + }, + { + "id": "C8098652-E839-4E39-8465-8488B2D6502E", + "name": "video-high-definition", + "codepoint": "F152E", + "aliases": [], + "tags": [ + "Video \/ Movie" + ], + "author": "Michael Irigoyen", + "version": "5.4.55" + }, + { + "id": "1A06058D-FA25-4AAE-A7C8-225CD0D79F06", + "name": "video-image", + "codepoint": "F091A", + "aliases": [], + "tags": [ + "Video \/ Movie" + ], + "author": "Google", + "version": "2.3.50" + }, + { + "id": "D7B7AA15-66CB-4AA5-AD75-E96B78B89AB9", + "name": "video-input-antenna", + "codepoint": "F083F", + "aliases": [ + "settings-input-antenna" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Google", + "version": "2.1.19" + }, + { + "id": "55F413A7-319D-4419-87D4-97FF9ED96791", + "name": "video-input-component", + "codepoint": "F0840", + "aliases": [ + "video-input-composite", + "settings-input-component", + "settings-input-composite", + "video-input-ypbpr", + "rca" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Google", + "version": "2.1.19" + }, + { + "id": "D371C4A6-40A8-4C03-95DA-2ACF2A5ABC4B", + "name": "video-input-hdmi", + "codepoint": "F0841", + "aliases": [ + "settings-input-hdmi" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Google", + "version": "2.1.19" + }, + { + "id": "7F6FD88C-27A6-4E0D-BD8D-FDF34AAEB1A9", + "name": "video-input-scart", + "codepoint": "F0F8C", + "aliases": [], + "tags": [ + "Video \/ Movie" + ], + "author": "GreenTurtwig", + "version": "3.9.97" + }, + { + "id": "EA3FB3E6-9696-4F01-AD34-5253E19EA34C", + "name": "video-input-svideo", + "codepoint": "F0842", + "aliases": [ + "settings-input-svideo" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Google", + "version": "2.1.19" + }, + { + "id": "08B1B983-F8CC-4CE2-B9FA-4A292766BE31", + "name": "video-marker", + "codepoint": "F19A9", + "aliases": [ + "video-location" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Simran", + "version": "6.5.95" + }, + { + "id": "D2C8C1CD-F565-4549-8030-8549512C6905", + "name": "video-marker-outline", + "codepoint": "F19AA", + "aliases": [ + "video-location-outline" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Simran", + "version": "6.5.95" + }, + { + "id": "9453CFB6-B0CA-469B-87A0-48C51EA1B64D", + "name": "video-minus", + "codepoint": "F09B2", + "aliases": [ + "video-remove" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Google", + "version": "2.4.85" + }, + { + "id": "DEC0A182-36E6-47D2-ABC4-AF717946C412", + "name": "video-minus-outline", + "codepoint": "F02BA", + "aliases": [], + "tags": [ + "Video \/ Movie" + ], + "author": "Michael Irigoyen", + "version": "1.5.54" + }, + { + "id": "F4C3A814-205E-4F0A-9B3D-34B5777A4237", + "name": "video-off", + "codepoint": "F0568", + "aliases": [ + "videocam-off" + ], + "tags": [ + "Video \/ Movie", + "Home Automation" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "4CD11F14-5EB9-4532-910A-D9329CB1CE48", + "name": "video-off-outline", + "codepoint": "F0BDB", + "aliases": [ + "videocam-off-outline" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Google", + "version": "3.0.39" + }, + { + "id": "993D76B5-D3E5-4360-986D-3F13A04F29A7", + "name": "video-outline", + "codepoint": "F0BDC", + "aliases": [ + "videocam-outline" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Google", + "version": "3.0.39" + }, + { + "id": "7C399890-F840-44F0-834E-409C1D9F1337", + "name": "video-plus", + "codepoint": "F09B3", + "aliases": [ + "video-call", + "video-add" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Google", + "version": "2.4.85" + }, + { + "id": "66BF0ABD-9688-49F1-B260-382B15D53432", + "name": "video-plus-outline", + "codepoint": "F01D3", + "aliases": [], + "tags": [ + "Video \/ Movie" + ], + "author": "Michael Irigoyen", + "version": "1.5.54" + }, + { + "id": "DF10672F-0064-47B8-A327-797095F0F6A1", + "name": "video-stabilization", + "codepoint": "F091B", + "aliases": [ + "video-stabilisation" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Google", + "version": "2.3.50" + }, + { + "id": "465D18D8-ABEA-4D2B-8A05-C6555C36803F", + "name": "video-switch", + "codepoint": "F0569", + "aliases": [ + "switch-video" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "FF441E7F-8F7E-4B03-876E-FD65C2A847C9", + "name": "video-switch-outline", + "codepoint": "F0790", + "aliases": [], + "tags": [ + "Video \/ Movie" + ], + "author": "Google", + "version": "2.0.46" + }, + { + "id": "1A8E4CC1-97A7-4593-BE20-0E9C5686C2D3", + "name": "video-vintage", + "codepoint": "F0A1C", + "aliases": [ + "video-film", + "video-classic" + ], + "tags": [ + "Video \/ Movie" + ], + "author": "Mike G Chambers", + "version": "2.5.94" + }, + { + "id": "CB8F2A33-9238-40E0-9B1E-935586CF1FBA", + "name": "video-wireless", + "codepoint": "F0ED2", + "aliases": [], + "tags": [ + "Video \/ Movie" + ], + "author": "Michael Irigoyen", + "version": "3.7.94" + }, + { + "id": "178F6478-2B6F-43B7-AC0C-050481FA0BF2", + "name": "video-wireless-outline", + "codepoint": "F0ED3", + "aliases": [], + "tags": [ + "Video \/ Movie" + ], + "author": "Michael Irigoyen", + "version": "3.7.94" + }, + { + "id": "E0B1CD58-0403-430F-AA9A-30B9E0122314", + "name": "view-agenda", + "codepoint": "F056A", + "aliases": [], + "tags": [ + "View" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "33C2B7B8-82DB-41C9-8B4E-2EFEE60C0D6E", + "name": "view-agenda-outline", + "codepoint": "F11D8", + "aliases": [], + "tags": [ + "View" + ], + "author": "Google", + "version": "4.5.95" + }, + { + "id": "B3E07750-AF3A-49FA-BA72-7CE5D4A3C7AB", + "name": "view-array", + "codepoint": "F056B", + "aliases": [], + "tags": [ + "View" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "C9B8EF68-CB6B-4B4E-BEEC-4BC30C04BE5F", + "name": "view-array-outline", + "codepoint": "F1485", + "aliases": [], + "tags": [ + "View" + ], + "author": "Google", + "version": "5.3.45" + }, + { + "id": "99C269BA-B1CD-4BC0-9BCC-7C5D95F881AC", + "name": "view-carousel", + "codepoint": "F056C", + "aliases": [], + "tags": [ + "View" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "27DE61C6-7B1F-429C-A396-AF9895CE5AD0", + "name": "view-carousel-outline", + "codepoint": "F1486", + "aliases": [], + "tags": [ + "View" + ], + "author": "Google", + "version": "5.3.45" + }, + { + "id": "163CB77E-4663-4F8E-B73E-20FCC5C5BED3", + "name": "view-column", + "codepoint": "F056D", + "aliases": [], + "tags": [ + "View" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "73732965-3E0C-4746-8D18-785E318F005D", + "name": "view-column-outline", + "codepoint": "F1487", + "aliases": [], + "tags": [ + "View" + ], + "author": "Google", + "version": "5.3.45" + }, + { + "id": "CBBB6642-EA10-4B28-8D7B-7FD2E5252A2C", + "name": "view-comfy", + "codepoint": "F0E6A", + "aliases": [], + "tags": [ + "View" + ], + "author": "Google", + "version": "3.6.95" + }, + { + "id": "31233545-9224-4135-87F7-7B1257F23767", + "name": "view-comfy-outline", + "codepoint": "F1488", + "aliases": [], + "tags": [ + "View" + ], + "author": "Google", + "version": "5.3.45" + }, + { + "id": "CD9C04DB-710E-4FD1-A679-535C5EF50BFB", + "name": "view-compact", + "codepoint": "F0E6B", + "aliases": [], + "tags": [ + "View" + ], + "author": "Google", + "version": "3.6.95" + }, + { + "id": "8FD1F3B0-682D-47BD-A4C8-C2526C674229", + "name": "view-compact-outline", + "codepoint": "F0E6C", + "aliases": [], + "tags": [ + "View" + ], + "author": "Google", + "version": "3.6.95" + }, + { + "id": "B6D8B213-DC5F-40D3-97E4-EFA9B499A19D", + "name": "view-dashboard", + "codepoint": "F056E", + "aliases": [], + "tags": [ + "View" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "F55B37EB-4DE9-49E8-88BC-1D339FA3EF4D", + "name": "view-dashboard-edit", + "codepoint": "F1947", + "aliases": [], + "tags": [ + "View" + ], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "89F1A6E9-103A-4ABE-8A01-4A60A7781734", + "name": "view-dashboard-edit-outline", + "codepoint": "F1948", + "aliases": [], + "tags": [ + "View" + ], + "author": "Michael Irigoyen", + "version": "6.4.95" + }, + { + "id": "B44B2BB0-0BF9-42B7-BF70-ECC7FF102520", + "name": "view-dashboard-outline", + "codepoint": "F0A1D", + "aliases": [], + "tags": [ + "View" + ], + "author": "Google", + "version": "2.5.94" + }, + { + "id": "26B319A5-9CF7-4637-94A2-DB633BD22ABA", + "name": "view-dashboard-variant", + "codepoint": "F0843", + "aliases": [], + "tags": [ + "View" + ], + "author": "Google", + "version": "2.1.19" + }, + { + "id": "F05DF9FC-A193-444F-8B6E-24862443BA63", + "name": "view-dashboard-variant-outline", + "codepoint": "F1489", + "aliases": [], + "tags": [ + "View" + ], + "author": "Michael Irigoyen", + "version": "5.3.45" + }, + { + "id": "AD31242E-143E-475E-822B-E363C9E9F2F4", + "name": "view-day", + "codepoint": "F056F", + "aliases": [], + "tags": [ + "View" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "B478F822-6D6B-4A47-BCFE-0236D5766711", + "name": "view-day-outline", + "codepoint": "F148A", + "aliases": [], + "tags": [ + "View" + ], + "author": "Google", + "version": "5.3.45" + }, + { + "id": "39D66F7E-C38A-4CDC-9A50-6C4A60F70B82", + "name": "view-gallery", + "codepoint": "F1888", + "aliases": [], + "tags": [ + "View" + ], + "author": "Saulo Pratti", + "version": "6.2.95" + }, + { + "id": "EBE654D8-89C1-4DAC-92E5-3534C55281F0", + "name": "view-gallery-outline", + "codepoint": "F1889", + "aliases": [], + "tags": [ + "View" + ], + "author": "Michael Irigoyen", + "version": "6.2.95" + }, + { + "id": "E788F50B-B654-4AEC-ACD7-6E9F5AE8B789", + "name": "view-grid", + "codepoint": "F0570", + "aliases": [], + "tags": [ + "View" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "33566CF8-43DC-48FF-9891-557946141997", + "name": "view-grid-outline", + "codepoint": "F11D9", + "aliases": [], + "tags": [ + "View" + ], + "author": "Michael Richins", + "version": "4.5.95" + }, + { + "id": "74FA0104-E5C4-4FE8-A9CD-45DC574D64C9", + "name": "view-grid-plus", + "codepoint": "F0F8D", + "aliases": [ + "view-grid-add" + ], + "tags": [ + "View" + ], + "author": "Google", + "version": "3.9.97" + }, + { + "id": "120B7778-EAE8-444B-AEDF-9F7793BF6A35", + "name": "view-grid-plus-outline", + "codepoint": "F11DA", + "aliases": [], + "tags": [ + "View" + ], + "author": "Michael Richins", + "version": "4.5.95" + }, + { + "id": "86DC0560-F109-4301-ACC7-46A6F74F441A", + "name": "view-headline", + "codepoint": "F0571", + "aliases": [], + "tags": [ + "View" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "D9FCEB1D-004D-442E-A979-320101768F99", + "name": "view-list", + "codepoint": "F0572", + "aliases": [], + "tags": [ + "View" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "FA9A5868-724C-429E-897B-72AD25186E2D", + "name": "view-list-outline", + "codepoint": "F148B", + "aliases": [], + "tags": [ + "View" + ], + "author": "Google", + "version": "5.3.45" + }, + { + "id": "467C52AB-0DEA-43AF-BAE4-76FD66D6C7F0", + "name": "view-module", + "codepoint": "F0573", + "aliases": [], + "tags": [ + "View" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "69AAF987-9993-4E5D-952D-ED815244B1F6", + "name": "view-module-outline", + "codepoint": "F148C", + "aliases": [], + "tags": [ + "View" + ], + "author": "Google", + "version": "5.3.45" + }, + { + "id": "A085C7C7-F5C5-441C-84C0-05EB3B6A8767", + "name": "view-parallel", + "codepoint": "F0728", + "aliases": [], + "tags": [ + "View" + ], + "author": "Michael Irigoyen", + "version": "1.8.36" + }, + { + "id": "C14FCE1C-4ACB-4876-94AA-93C2E5DB362B", + "name": "view-parallel-outline", + "codepoint": "F148D", + "aliases": [], + "tags": [ + "View" + ], + "author": "Michael Irigoyen", + "version": "5.3.45" + }, + { + "id": "F3640F38-D10F-42C8-8A68-751D965B1F65", + "name": "view-quilt", + "codepoint": "F0574", + "aliases": [], + "tags": [ + "View" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "2797C36A-5A29-4679-AAB7-4F4832FA7DC5", + "name": "view-quilt-outline", + "codepoint": "F148E", + "aliases": [], + "tags": [ + "View" + ], + "author": "Google", + "version": "5.3.45" + }, + { + "id": "350F115F-0C20-4AB3-8206-81D2A25A2EF4", + "name": "view-sequential", + "codepoint": "F0729", + "aliases": [], + "tags": [ + "View" + ], + "author": "Michael Irigoyen", + "version": "1.8.36" + }, + { + "id": "1B8CD437-1CE6-4493-9C57-5E367B47A0BF", + "name": "view-sequential-outline", + "codepoint": "F148F", + "aliases": [], + "tags": [ + "View" + ], + "author": "Michael Irigoyen", + "version": "5.3.45" + }, + { + "id": "7FE1CF30-B16F-4626-8450-1881934D2FDF", + "name": "view-split-horizontal", + "codepoint": "F0BCB", + "aliases": [], + "tags": [ + "View" + ], + "author": "Google", + "version": "3.0.39" + }, + { + "id": "25E0A405-7A96-4159-8A63-9088BFA330F1", + "name": "view-split-vertical", + "codepoint": "F0BCC", + "aliases": [], + "tags": [ + "View" + ], + "author": "Google", + "version": "3.0.39" + }, + { + "id": "1B42A4BC-3B55-4C21-BDEF-94DC970012F9", + "name": "view-stream", + "codepoint": "F0575", + "aliases": [], + "tags": [ + "View" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "26CE4165-E7A4-425A-8175-8A8C392F08D3", + "name": "view-stream-outline", + "codepoint": "F1490", + "aliases": [], + "tags": [ + "View" + ], + "author": "Google", + "version": "5.3.45" + }, + { + "id": "8ED74862-BA7D-43FC-91EA-283D655B451F", + "name": "view-week", + "codepoint": "F0576", + "aliases": [], + "tags": [ + "View" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "163700DD-5F95-4BEC-82AC-7E5F1FD20BC8", + "name": "view-week-outline", + "codepoint": "F1491", + "aliases": [], + "tags": [ + "View" + ], + "author": "Google", + "version": "5.3.45" + }, + { + "id": "0FF21C45-66B4-492A-829C-9F46778323A9", + "name": "vimeo", + "codepoint": "F0577", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "D6702650-990F-416E-BF27-F6F2B86BFB8D", + "name": "violin", + "codepoint": "F060F", + "aliases": [], + "tags": [ + "Music" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "AE3F0BAE-DE0A-4BFE-82B6-3268D1B21006", + "name": "virtual-reality", + "codepoint": "F0894", + "aliases": [ + "vr" + ], + "tags": [], + "author": "GreenTurtwig", + "version": "2.1.99" + }, + { + "id": "B413B8B5-E20E-41BF-B6F1-696050D47421", + "name": "virus", + "codepoint": "F13B6", + "aliases": [], + "tags": [ + "Science", + "Medical \/ Hospital" + ], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "7DE3EC50-BFF3-4402-85ED-DC43EE995DCB", + "name": "virus-off", + "codepoint": "F18E1", + "aliases": [], + "tags": [ + "Science" + ], + "author": "Michael Irigoyen", + "version": "6.3.95" + }, + { + "id": "E2FA3916-A37A-4BB9-8892-DD0079581DAC", + "name": "virus-off-outline", + "codepoint": "F18E2", + "aliases": [], + "tags": [ + "Science" + ], + "author": "Michael Irigoyen", + "version": "6.3.95" + }, + { + "id": "0F7EE89B-C9E3-4365-B9DC-D3A28D328F66", + "name": "virus-outline", + "codepoint": "F13B7", + "aliases": [], + "tags": [ + "Science", + "Medical \/ Hospital" + ], + "author": "Michael Irigoyen", + "version": "5.1.45" + }, + { + "id": "3695CD89-BCB2-4D10-A8C5-9190F31F7C92", + "name": "vlc", + "codepoint": "F057C", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "04CEF7C6-E77F-4A66-89F3-2F5B544C482B", + "name": "voicemail", + "codepoint": "F057D", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "3978DABC-FC98-4D3E-A971-88716AD5D600", + "name": "volleyball", + "codepoint": "F09B4", + "aliases": [], + "tags": [ + "Sport" + ], + "author": "Google", + "version": "2.4.85" + }, + { + "id": "CE6E08CF-2476-4BBB-AF91-6D081F1CBEF9", + "name": "volume-high", + "codepoint": "F057E", + "aliases": [ + "audio", + "speaker", + "speakerphone" + ], + "tags": [ + "Audio", + "Home Automation", + "Cellphone \/ Phone" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "213621FE-E003-4B40-9385-B9BCE19DB035", + "name": "volume-low", + "codepoint": "F057F", + "aliases": [ + "audio", + "speaker" + ], + "tags": [ + "Audio", + "Home Automation", + "Cellphone \/ Phone" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "0E37E506-8AD8-42C7-87E4-F8A2AEE03972", + "name": "volume-medium", + "codepoint": "F0580", + "aliases": [ + "audio", + "speaker" + ], + "tags": [ + "Audio", + "Home Automation", + "Cellphone \/ Phone" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "D8BFD10F-6D55-4EE1-8D30-5B5CB064CBBF", + "name": "volume-minus", + "codepoint": "F075E", + "aliases": [ + "volume-decrease" + ], + "tags": [ + "Audio", + "Home Automation", + "Cellphone \/ Phone" + ], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "A78C1259-0DB5-4793-9EA9-DD69FEB337A8", + "name": "volume-mute", + "codepoint": "F075F", + "aliases": [], + "tags": [ + "Audio", + "Cellphone \/ Phone" + ], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "74834C94-6AE1-493B-A9FB-4EE2A8FD989C", + "name": "volume-off", + "codepoint": "F0581", + "aliases": [ + "mute", + "audio-off", + "speaker-off", + "speakerphone-off" + ], + "tags": [ + "Audio", + "Home Automation", + "Cellphone \/ Phone" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "DECF3A51-F972-4D34-815D-D103BCE3888B", + "name": "volume-plus", + "codepoint": "F075D", + "aliases": [ + "volume-increase" + ], + "tags": [ + "Audio", + "Home Automation", + "Cellphone \/ Phone" + ], + "author": "Austin Andrews", + "version": "1.9.32" + }, + { + "id": "95D3325D-257A-433C-8B2E-D674C21BA268", + "name": "volume-source", + "codepoint": "F1120", + "aliases": [], + "tags": [ + "Cellphone \/ Phone", + "Audio" + ], + "author": "Google", + "version": "4.3.95" + }, + { + "id": "E5699A8D-84C4-41F2-A48A-397F8153B4A1", + "name": "volume-variant-off", + "codepoint": "F0E08", + "aliases": [], + "tags": [ + "Audio", + "Cellphone \/ Phone" + ], + "author": "Andrew Nenakhov", + "version": "3.5.94" + }, + { + "id": "9CDA3BD8-77A5-4669-BFB7-785EECAE2FCA", + "name": "volume-vibrate", + "codepoint": "F1121", + "aliases": [], + "tags": [ + "Cellphone \/ Phone", + "Audio" + ], + "author": "Simran", + "version": "4.3.95" + }, + { + "id": "61CDB722-3238-4F21-9A3F-77DC47A51755", + "name": "vote", + "codepoint": "F0A1F", + "aliases": [ + "how-to-vote" + ], + "tags": [], + "author": "Google", + "version": "2.5.94" + }, + { + "id": "392D2435-0B0E-4CDA-A542-FAB319411B8A", + "name": "vote-outline", + "codepoint": "F0A20", + "aliases": [ + "how-to-vote-outline" + ], + "tags": [], + "author": "Google", + "version": "2.5.94" + }, + { + "id": "A9EE1532-2932-4F71-95DC-1EFB56BA4DFC", + "name": "vpn", + "codepoint": "F0582", + "aliases": [ + "virtual-private-network" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "CB3BC222-1858-41C6-A488-0C2BB1FB2EA8", + "name": "vuejs", + "codepoint": "F0844", + "aliases": [ + "vue-js" + ], + "tags": [ + "Brand \/ Logo", + "Developer \/ Languages" + ], + "author": "Contributors", + "version": "2.1.19" + }, + { + "id": "2603306D-9691-469C-B468-6E53FFA2D0DE", + "name": "vuetify", + "codepoint": "F0E6D", + "aliases": [], + "tags": [], + "author": "Contributors", + "version": "3.6.95" + }, + { + "id": "DA42DA16-21E0-4A08-89E4-F634EBBCF85A", + "name": "walk", + "codepoint": "F0583", + "aliases": [ + "directions-walk", + "walker", + "walking" + ], + "tags": [ + "Sport", + "Transportation + Other" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "5DAB0112-3768-4ADC-8796-A88B4473FE56", + "name": "wall", + "codepoint": "F07FE", + "aliases": [ + "bricks" + ], + "tags": [], + "author": "Austin Andrews", + "version": "2.0.46" + }, + { + "id": "EABFE131-4690-406C-9042-EFCA33E97A00", + "name": "wall-sconce", + "codepoint": "F091C", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "2.3.50" + }, + { + "id": "4F0EF72A-F2A8-4BFA-9E6F-279E159FC888", + "name": "wall-sconce-flat", + "codepoint": "F091D", + "aliases": [ + "ceiling-light-flat", + "pot-light-flat" + ], + "tags": [ + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "2.3.50" + }, + { + "id": "46E92A75-74CB-4DCD-A3B0-0D7B685E49E4", + "name": "wall-sconce-flat-outline", + "codepoint": "F17C9", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Teodor Sandu", + "version": "6.1.95" + }, + { + "id": "DEAC0604-6FD1-496C-99E1-74068FC27713", + "name": "wall-sconce-flat-variant", + "codepoint": "F041C", + "aliases": [ + "pot-light-flat-variant" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "1.5.54" + }, + { + "id": "591CE496-AFCE-4274-A15F-E7574307D6FD", + "name": "wall-sconce-flat-variant-outline", + "codepoint": "F17CA", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Teodor Sandu", + "version": "6.1.95" + }, + { + "id": "E033BCF1-3B41-4885-9700-CE4B85A7106C", + "name": "wall-sconce-outline", + "codepoint": "F17CB", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "05EDCFBB-803B-4DA9-BDC5-17A4E43DE584", + "name": "wall-sconce-round", + "codepoint": "F0748", + "aliases": [ + "pot-light-round" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "1.9.32" + }, + { + "id": "A91CF4C0-CC99-4429-BE37-54774E420A9F", + "name": "wall-sconce-round-outline", + "codepoint": "F17CC", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "D599F298-0E64-47A7-AD5B-B1AD5CEE1B1E", + "name": "wall-sconce-round-variant", + "codepoint": "F091E", + "aliases": [ + "pot-light-round-variant" + ], + "tags": [ + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "2.3.50" + }, + { + "id": "6A9EE0EE-A559-4A78-9313-0B7DED29C757", + "name": "wall-sconce-round-variant-outline", + "codepoint": "F17CD", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "C5ABA786-D897-4770-AA78-CE4CB2A9230E", + "name": "wallet", + "codepoint": "F0584", + "aliases": [ + "account-balance-wallet" + ], + "tags": [ + "Currency", + "Banking" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "0D4DD4F1-0915-4D3D-8F21-A96C2DDAF6E0", + "name": "wallet-giftcard", + "codepoint": "F0585", + "aliases": [ + "card-giftcard", + "redeem" + ], + "tags": [ + "Shopping", + "Banking" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "BBE325B3-416A-4160-8E95-162B076B8839", + "name": "wallet-membership", + "codepoint": "F0586", + "aliases": [ + "card-membership" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "BE3A6C7B-398B-4B7D-B7F3-7EDE9220F489", + "name": "wallet-outline", + "codepoint": "F0BDD", + "aliases": [ + "account-balance-wallet-outline" + ], + "tags": [ + "Currency", + "Banking" + ], + "author": "Google", + "version": "3.0.39" + }, + { + "id": "A53A1EF4-13E1-4807-A20E-A0DA2F52392D", + "name": "wallet-plus", + "codepoint": "F0F8E", + "aliases": [ + "wallet-add" + ], + "tags": [ + "Banking" + ], + "author": "GreenTurtwig", + "version": "3.9.97" + }, + { + "id": "1BDED2D9-31E7-457D-AA32-6CE990645545", + "name": "wallet-plus-outline", + "codepoint": "F0F8F", + "aliases": [ + "wallet-add-outline" + ], + "tags": [ + "Banking" + ], + "author": "GreenTurtwig", + "version": "3.9.97" + }, + { + "id": "790A03D3-B40A-468A-A6D6-CA3679FDBD8D", + "name": "wallet-travel", + "codepoint": "F0587", + "aliases": [ + "card-travel" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "350FE9C5-BFF1-462D-9318-BA2DDC55E11E", + "name": "wallpaper", + "codepoint": "F0E09", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.5.94" + }, + { + "id": "0E468855-81AF-4CA1-ACF0-D166D07F188C", + "name": "wan", + "codepoint": "F0588", + "aliases": [ + "wide-area-network" + ], + "tags": [], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "A6E4DFBB-920D-4A21-AE54-6378FEBDD767", + "name": "wardrobe", + "codepoint": "F0F90", + "aliases": [ + "closet" + ], + "tags": [ + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "3.9.97" + }, + { + "id": "A1AA70DE-C9FD-4791-91D0-27FC025F7A81", + "name": "wardrobe-outline", + "codepoint": "F0F91", + "aliases": [ + "closet-outline" + ], + "tags": [ + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "3.9.97" + }, + { + "id": "DBF95B71-CC94-4672-8356-A09B96644694", + "name": "warehouse", + "codepoint": "F0F81", + "aliases": [], + "tags": [ + "Places" + ], + "author": "Tarilonte", + "version": "3.9.97" + }, + { + "id": "42C06A23-81D5-4EF6-8CFA-B4FBF66E7B17", + "name": "washing-machine", + "codepoint": "F072A", + "aliases": [ + "laundrette", + "local-laundry-service" + ], + "tags": [ + "Home Automation" + ], + "author": "Google", + "version": "1.8.36" + }, + { + "id": "A00D0B3E-D24A-4BC9-915C-7B264B63F2F4", + "name": "washing-machine-alert", + "codepoint": "F11BC", + "aliases": [], + "tags": [ + "Home Automation", + "Alert \/ Error" + ], + "author": "Michael Irigoyen", + "version": "4.5.95" + }, + { + "id": "9B318E52-E7BE-4BE1-94DF-96CA020CE55D", + "name": "washing-machine-off", + "codepoint": "F11BD", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "4.5.95" + }, + { + "id": "3389F6CD-3E46-47DE-B26A-341C1B65D6BF", + "name": "watch", + "codepoint": "F0589", + "aliases": [], + "tags": [ + "Device \/ Tech" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "4FAFD079-50D1-4FD3-9427-CF0C08148D84", + "name": "watch-export", + "codepoint": "F058A", + "aliases": [], + "tags": [ + "Device \/ Tech" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "8213DABD-5CCB-415F-9457-A0A68B0F8179", + "name": "watch-export-variant", + "codepoint": "F0895", + "aliases": [], + "tags": [ + "Device \/ Tech" + ], + "author": "Bradley Nelson", + "version": "2.1.99" + }, + { + "id": "0D93B47F-C9F9-4C87-B63C-656184A87C74", + "name": "watch-import", + "codepoint": "F058B", + "aliases": [], + "tags": [ + "Device \/ Tech" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "383F089B-340D-43BD-A64C-4F81B8DF2A1F", + "name": "watch-import-variant", + "codepoint": "F0896", + "aliases": [], + "tags": [ + "Device \/ Tech" + ], + "author": "Bradley Nelson", + "version": "2.1.99" + }, + { + "id": "B6ADE62B-5D0C-4D24-87F4-9D8A0F1C7A04", + "name": "watch-variant", + "codepoint": "F0897", + "aliases": [], + "tags": [ + "Device \/ Tech" + ], + "author": "GreenTurtwig", + "version": "2.1.99" + }, + { + "id": "AE556BFC-A1A0-4B42-9123-B48DC7A3CBF3", + "name": "watch-vibrate", + "codepoint": "F06B1", + "aliases": [], + "tags": [ + "Device \/ Tech" + ], + "author": "GreenTurtwig", + "version": "1.7.12" + }, + { + "id": "391763A7-BCF6-4C13-920B-115A7A5092B6", + "name": "watch-vibrate-off", + "codepoint": "F0CDA", + "aliases": [], + "tags": [ + "Device \/ Tech" + ], + "author": "Michael Richins", + "version": "3.2.89" + }, + { + "id": "17EEE663-92E4-4AB1-87FE-94F2CD296C4B", + "name": "water", + "codepoint": "F058C", + "aliases": [ + "drop", + "blood", + "water-drop", + "trans-fat", + "ink" + ], + "tags": [ + "Home Automation", + "Health \/ Beauty", + "Food \/ Drink" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "DDBEC0DB-97A9-439B-9FC0-5A05F51ED5E3", + "name": "water-alert", + "codepoint": "F1502", + "aliases": [ + "drop-alert", + "blood-alert", + "ink-alert" + ], + "tags": [ + "Alert \/ Error" + ], + "author": "Colton Wiscombe", + "version": "5.4.55" + }, + { + "id": "4741B9A5-3E15-45B5-BD7B-B812C7E7644F", + "name": "water-alert-outline", + "codepoint": "F1503", + "aliases": [ + "drop-alert-outline", + "blood-alert-outline", + "ink-alert-outline" + ], + "tags": [ + "Alert \/ Error" + ], + "author": "Colton Wiscombe", + "version": "5.4.55" + }, + { + "id": "02A9C002-3B54-415E-8199-067139DF771A", + "name": "water-boiler", + "codepoint": "F0F92", + "aliases": [ + "water-heater", + "gas-water-boiler", + "electric-water-boiler", + "gas-water-heater", + "electric-water-heater" + ], + "tags": [ + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "3.9.97" + }, + { + "id": "EC21EC05-F45B-4560-A37E-3E721219A728", + "name": "water-boiler-alert", + "codepoint": "F11B3", + "aliases": [ + "water-heater-alert", + "water-boiler-error", + "water-heater-error" + ], + "tags": [ + "Home Automation", + "Alert \/ Error" + ], + "author": "Michael Irigoyen", + "version": "4.5.95" + }, + { + "id": "E7515B82-DE9D-4053-9D48-297511ED48E5", + "name": "water-boiler-off", + "codepoint": "F11B4", + "aliases": [ + "water-heater-off" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "4.5.95" + }, + { + "id": "30A9ED7F-3D06-476B-A4F1-B9F85786FF00", + "name": "water-check", + "codepoint": "F1504", + "aliases": [ + "drop-check", + "blood-check", + "ink-check" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.4.55" + }, + { + "id": "E555BA93-F6A7-4B19-A4F8-132585E14850", + "name": "water-check-outline", + "codepoint": "F1505", + "aliases": [ + "drop-check-outline", + "blood-check-outline", + "ink-check-outline" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.4.55" + }, + { + "id": "1A50CD86-0127-4730-A090-ED5110A9825F", + "name": "water-circle", + "codepoint": "F1806", + "aliases": [ + "drop-circle", + "blood-circle", + "ink-circle" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.1.95" + }, + { + "id": "C3824C0D-87B1-4577-A060-EDE628A694BC", + "name": "water-minus", + "codepoint": "F1506", + "aliases": [ + "drop-minus", + "blood-minus", + "ink-minus" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.4.55" + }, + { + "id": "8536A2D7-1203-44B5-BBBE-6C37AABAD5B6", + "name": "water-minus-outline", + "codepoint": "F1507", + "aliases": [ + "drop-minus-outline", + "blood-minus-outline", + "ink-minus-outline" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.4.55" + }, + { + "id": "6C9777A0-967D-4242-91B2-E4D6B5596498", + "name": "water-off", + "codepoint": "F058D", + "aliases": [ + "format-color-reset", + "trans-fat-off", + "blood-off", + "ink-off" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "8B8E5074-5348-4856-BBF0-461BA5022BF3", + "name": "water-off-outline", + "codepoint": "F1508", + "aliases": [ + "drop-off-outline", + "blood-off-outline", + "trans-fat-off-outline", + "ink-off-outline" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.4.55" + }, + { + "id": "97D5ABBB-9410-4891-B06C-40121506BAEC", + "name": "water-opacity", + "codepoint": "F1855", + "aliases": [ + "water-transparent", + "water-saver", + "blood-saver", + "blood-transparent", + "oil-saver", + "oil-transparent", + "drop-transparent", + "drop-saver" + ], + "tags": [ + "Home Automation", + "Drawing \/ Art" + ], + "author": "Michael Irigoyen", + "version": "6.2.95" + }, + { + "id": "DC3CFDE4-8FA9-497A-A937-6F7182B560E1", + "name": "water-outline", + "codepoint": "F0E0A", + "aliases": [ + "drop-outline", + "blood-outline", + "water-drop-outline", + "ink-outline" + ], + "tags": [ + "Home Automation" + ], + "author": "GreenTurtwig", + "version": "3.5.94" + }, + { + "id": "2CE24A47-D798-4FFD-A53D-65FE9D452E2F", + "name": "water-percent", + "codepoint": "F058E", + "aliases": [ + "humidity", + "ink-percent" + ], + "tags": [ + "Weather", + "Home Automation" + ], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "55C44783-89D5-4A31-86B8-863B719EC876", + "name": "water-percent-alert", + "codepoint": "F1509", + "aliases": [ + "humidity-alert", + "ink-percent-alert" + ], + "tags": [ + "Alert \/ Error" + ], + "author": "Colton Wiscombe", + "version": "5.4.55" + }, + { + "id": "B7B4ACBA-F24A-48D7-A409-965A32860CE9", + "name": "water-plus", + "codepoint": "F150A", + "aliases": [ + "drop-plus", + "blood-plus", + "ink-plus" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.4.55" + }, + { + "id": "74B7C41B-554D-453A-8646-FFAFDF78C3CA", + "name": "water-plus-outline", + "codepoint": "F150B", + "aliases": [ + "drop-plus-outline", + "blood-plus-outline", + "ink-plus-outline" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.4.55" + }, + { + "id": "09C341A8-067F-4CE2-96BC-D96E18334AB3", + "name": "water-polo", + "codepoint": "F12A0", + "aliases": [], + "tags": [ + "Sport" + ], + "author": "Yaroslav Bandura", + "version": "4.7.95" + }, + { + "id": "06862D93-608A-4B21-9193-83FA8C6BBDCD", + "name": "water-pump", + "codepoint": "F058F", + "aliases": [ + "tap", + "kitchen-tap", + "faucet" + ], + "tags": [ + "Agriculture", + "Home Automation" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "A66B4E6E-70F9-4136-BE33-D02C002F7B30", + "name": "water-pump-off", + "codepoint": "F0F93", + "aliases": [ + "tap-off", + "kitchen-tap-off", + "faucet-off" + ], + "tags": [ + "Agriculture", + "Home Automation" + ], + "author": "Nick", + "version": "3.9.97" + }, + { + "id": "2B0BAF1E-C9B8-42E9-84EB-D095EE2B0C39", + "name": "water-remove", + "codepoint": "F150C", + "aliases": [ + "drop-remove", + "blood-remove", + "ink-remove" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.4.55" + }, + { + "id": "C90739A3-CEDE-4524-A736-BA5A5B5F0CCB", + "name": "water-remove-outline", + "codepoint": "F150D", + "aliases": [ + "drop-remove-outline", + "blood-remove-outline", + "ink-remove-outline" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.4.55" + }, + { + "id": "14D06EC0-32F9-4CCE-B890-89DE73A106EA", + "name": "water-sync", + "codepoint": "F17C6", + "aliases": [ + "water-recycle", + "water-reuse" + ], + "tags": [ + "Agriculture" + ], + "author": "Hans B\u00f6hm", + "version": "6.1.95" + }, + { + "id": "4EE62E99-C30B-4A90-B89D-ADF4C26EF888", + "name": "water-well", + "codepoint": "F106B", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "4.1.95" + }, + { + "id": "55A09921-7B26-49DB-AB0E-47E2C133D68C", + "name": "water-well-outline", + "codepoint": "F106C", + "aliases": [], + "tags": [], + "author": "Michael Richins", + "version": "4.1.95" + }, + { + "id": "DF6B67F9-DE8F-4183-B7E8-CE99C3B863EE", + "name": "waterfall", + "codepoint": "F1849", + "aliases": [], + "tags": [ + "Home Automation", + "Nature" + ], + "author": "Teodor Sandu", + "version": "6.2.95" + }, + { + "id": "5B017D32-0BE9-4A6A-999C-32777F995FBB", + "name": "watering-can", + "codepoint": "F1481", + "aliases": [ + "watering-pot" + ], + "tags": [ + "Agriculture" + ], + "author": "guenth39", + "version": "5.3.45" + }, + { + "id": "67419E50-B2CE-4B36-A137-705FD6404252", + "name": "watering-can-outline", + "codepoint": "F1482", + "aliases": [ + "watering-pot-outline" + ], + "tags": [ + "Agriculture" + ], + "author": "guenth39", + "version": "5.3.45" + }, + { + "id": "20907A4A-11CA-447E-A4F5-D0F0901D197E", + "name": "watermark", + "codepoint": "F0612", + "aliases": [ + "branding-watermark" + ], + "tags": [], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "34D870BF-048B-44DF-93F9-8EBE7AF4C263", + "name": "wave", + "codepoint": "F0F2E", + "aliases": [ + "water" + ], + "tags": [ + "Transportation + Water" + ], + "author": "Michael Irigoyen", + "version": "3.8.95" + }, + { + "id": "B677F1CB-606B-4DB5-9A9D-73E4FC0AC3F0", + "name": "waveform", + "codepoint": "F147D", + "aliases": [], + "tags": [ + "Audio" + ], + "author": "Haley Halcyon", + "version": "5.2.45" + }, + { + "id": "547979BF-6FF4-4CFF-BD55-1E5793C9DAA3", + "name": "waves", + "codepoint": "F078D", + "aliases": [ + "ocean", + "lake", + "flood", + "water" + ], + "tags": [ + "Weather", + "Transportation + Water" + ], + "author": "Michael Irigoyen", + "version": "1.9.32" + }, + { + "id": "FC4A7A1E-A32E-432E-8EB3-79FFA3E012C1", + "name": "waves-arrow-left", + "codepoint": "F1859", + "aliases": [ + "tide-in", + "water-flow" + ], + "tags": [ + "Nature", + "Weather" + ], + "author": "Michael Irigoyen", + "version": "6.2.95" + }, + { + "id": "69DDD960-779E-4BD9-9B96-B73ED9CAF55D", + "name": "waves-arrow-right", + "codepoint": "F185A", + "aliases": [ + "tide-out", + "water-flow" + ], + "tags": [ + "Nature", + "Weather" + ], + "author": "Michael Irigoyen", + "version": "6.2.95" + }, + { + "id": "9C20E25F-2499-4B5F-BC47-74DDA23F6DC3", + "name": "waves-arrow-up", + "codepoint": "F185B", + "aliases": [ + "water-evaporation", + "humidity", + "sea-level-rise", + "ocean-level-rise", + "climate-change" + ], + "tags": [ + "Nature", + "Weather" + ], + "author": "Michael Irigoyen", + "version": "6.2.95" + }, + { + "id": "51E32DD0-F286-4039-8242-2BF03E917C37", + "name": "waze", + "codepoint": "F0BDE", + "aliases": [], + "tags": [], + "author": "Contributors", + "version": "3.0.39" + }, + { + "id": "9286B6B3-09EE-4465-9A70-D7874E26F3DF", + "name": "weather-cloudy", + "codepoint": "F0590", + "aliases": [], + "tags": [ + "Weather", + "Cloud" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "EF2214BE-8126-4458-A17A-74C58B30C2C5", + "name": "weather-cloudy-alert", + "codepoint": "F0F2F", + "aliases": [], + "tags": [ + "Weather", + "Alert \/ Error", + "Cloud" + ], + "author": "Michael Irigoyen", + "version": "3.8.95" + }, + { + "id": "522BA775-D569-4615-AABE-40B9E638EA18", + "name": "weather-cloudy-arrow-right", + "codepoint": "F0E6E", + "aliases": [], + "tags": [ + "Weather", + "Cloud" + ], + "author": "Michael Irigoyen", + "version": "3.6.95" + }, + { + "id": "D7526077-1254-4F32-9496-3B8E5D957F0F", + "name": "weather-cloudy-clock", + "codepoint": "F18F6", + "aliases": [ + "weather-history", + "weather-time", + "weather-date" + ], + "tags": [ + "Weather" + ], + "author": "Michael Irigoyen", + "version": "6.3.95" + }, + { + "id": "9E1AC9CA-0FA4-44C6-BA5D-2EB3CED4899D", + "name": "weather-fog", + "codepoint": "F0591", + "aliases": [ + "weather-mist" + ], + "tags": [ + "Weather" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "BED775CF-13BD-4D5A-A06F-7B026E820CB1", + "name": "weather-hail", + "codepoint": "F0592", + "aliases": [], + "tags": [ + "Weather" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "87410436-C351-4FF7-91E4-9A5F52D49F69", + "name": "weather-hazy", + "codepoint": "F0F30", + "aliases": [], + "tags": [ + "Weather" + ], + "author": "Michael Irigoyen", + "version": "3.8.95" + }, + { + "id": "880967C4-85F9-4953-A6D0-73C9370BC987", + "name": "weather-hurricane", + "codepoint": "F0898", + "aliases": [], + "tags": [ + "Weather" + ], + "author": "Michael Richins", + "version": "2.1.99" + }, + { + "id": "6AF7BD8A-088F-4B07-806D-7456EB382D76", + "name": "weather-lightning", + "codepoint": "F0593", + "aliases": [ + "weather-storm", + "weather-thunder", + "weather-flash" + ], + "tags": [ + "Weather" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "F69033FD-E6F0-48E7-ADA7-7CDF71B1673C", + "name": "weather-lightning-rainy", + "codepoint": "F067E", + "aliases": [ + "weather-thunder-rainy", + "weather-storm" + ], + "tags": [ + "Weather" + ], + "author": "Austin Andrews", + "version": "1.7.12" + }, + { + "id": "1C3BA3AB-E86E-481B-A3C2-867B37A6E55A", + "name": "weather-night", + "codepoint": "F0594", + "aliases": [ + "moon-and-stars", + "night-sky" + ], + "tags": [ + "Weather", + "Holiday" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "19D690AD-38F9-45CF-A092-D62A53098A68", + "name": "weather-night-partly-cloudy", + "codepoint": "F0F31", + "aliases": [], + "tags": [ + "Weather", + "Cloud" + ], + "author": "Michael Irigoyen", + "version": "3.8.95" + }, + { + "id": "80E6A6FB-1524-4A7D-9551-17D3BDFBD7C5", + "name": "weather-partly-cloudy", + "codepoint": "F0595", + "aliases": [ + "weather-partlycloudy" + ], + "tags": [ + "Weather", + "Cloud" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "93C1E28D-0C94-4B55-8B26-BACE3F777ECC", + "name": "weather-partly-lightning", + "codepoint": "F0F32", + "aliases": [], + "tags": [ + "Weather" + ], + "author": "Michael Irigoyen", + "version": "3.8.95" + }, + { + "id": "B01CFC20-40C4-4647-A20D-0181E5AB4952", + "name": "weather-partly-rainy", + "codepoint": "F0F33", + "aliases": [], + "tags": [ + "Weather" + ], + "author": "Michael Irigoyen", + "version": "3.8.95" + }, + { + "id": "0E45DB37-DF54-422B-AE18-2AA35BC54109", + "name": "weather-partly-snowy", + "codepoint": "F0F34", + "aliases": [], + "tags": [ + "Weather" + ], + "author": "Michael Irigoyen", + "version": "3.8.95" + }, + { + "id": "CAF9B1D0-1095-4A34-AC07-78C937BDA618", + "name": "weather-partly-snowy-rainy", + "codepoint": "F0F35", + "aliases": [], + "tags": [ + "Weather" + ], + "author": "Michael Irigoyen", + "version": "3.8.95" + }, + { + "id": "220955AA-770D-4884-A2ED-F21D2DC2CCDA", + "name": "weather-pouring", + "codepoint": "F0596", + "aliases": [ + "weather-heavy-rain" + ], + "tags": [ + "Weather" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "45EF5E01-7499-4964-A897-5602F45A822E", + "name": "weather-rainy", + "codepoint": "F0597", + "aliases": [ + "weather-drizzle", + "weather-spitting" + ], + "tags": [ + "Weather" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "88999373-43C5-4851-BBCF-5335D8DFBDA0", + "name": "weather-snowy", + "codepoint": "F0598", + "aliases": [], + "tags": [ + "Weather" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "D97DA5D6-5A65-4ADB-B124-48C22F32B07A", + "name": "weather-snowy-heavy", + "codepoint": "F0F36", + "aliases": [], + "tags": [ + "Weather" + ], + "author": "Michael Irigoyen", + "version": "3.8.95" + }, + { + "id": "0938BCD1-BCF8-4439-B6B3-A590150878BC", + "name": "weather-snowy-rainy", + "codepoint": "F067F", + "aliases": [ + "weather-sleet" + ], + "tags": [ + "Weather" + ], + "author": "Austin Andrews", + "version": "1.7.12" + }, + { + "id": "7F85265E-304C-4575-A73F-F0FCF0CA951B", + "name": "weather-sunny", + "codepoint": "F0599", + "aliases": [], + "tags": [ + "Weather" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "3AACF641-3923-4DBA-9568-0680999A6548", + "name": "weather-sunny-alert", + "codepoint": "F0F37", + "aliases": [ + "heat-alert", + "heat-advisory", + "sun-advisory" + ], + "tags": [ + "Weather", + "Alert \/ Error" + ], + "author": "Michael Irigoyen", + "version": "3.8.95" + }, + { + "id": "2C884CEC-BA06-491D-9A7D-17B8B2E74CA6", + "name": "weather-sunny-off", + "codepoint": "F14E4", + "aliases": [], + "tags": [ + "Weather" + ], + "author": "Michael Irigoyen", + "version": "5.4.55" + }, + { + "id": "5EF29669-A342-46D1-AE1B-47917E44311D", + "name": "weather-sunset", + "codepoint": "F059A", + "aliases": [], + "tags": [ + "Weather" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "032B7D10-9218-4B71-B190-C486832BEF61", + "name": "weather-sunset-down", + "codepoint": "F059B", + "aliases": [], + "tags": [ + "Weather" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "AC82F126-0773-44CE-A004-77E7DDD130C9", + "name": "weather-sunset-up", + "codepoint": "F059C", + "aliases": [ + "sunrise" + ], + "tags": [ + "Weather" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "BE149D04-25E9-4CE8-BD75-2D6D49A03FEA", + "name": "weather-tornado", + "codepoint": "F0F38", + "aliases": [], + "tags": [ + "Weather" + ], + "author": "Michael Irigoyen", + "version": "3.8.95" + }, + { + "id": "7544E7E7-02F7-405C-9ADB-2E2540B07343", + "name": "weather-windy", + "codepoint": "F059D", + "aliases": [], + "tags": [ + "Weather" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "454DE99F-BA48-4A7B-A2C6-C0E162065D10", + "name": "weather-windy-variant", + "codepoint": "F059E", + "aliases": [], + "tags": [ + "Weather" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "DA9C32CA-8C31-4462-B123-479169C31587", + "name": "web", + "codepoint": "F059F", + "aliases": [ + "language", + "globe", + "internet", + "world-wide-web" + ], + "tags": [ + "Geographic Information System" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "42B55CB7-DC3D-4804-A848-1A9CA7DCD533", + "name": "web-box", + "codepoint": "F0F94", + "aliases": [ + "language-box", + "globe-box", + "internet-box" + ], + "tags": [ + "Geographic Information System" + ], + "author": "Samuel Jones", + "version": "3.9.97" + }, + { + "id": "A959571D-7AA8-4DD9-8407-D78D4DFBDD79", + "name": "web-cancel", + "codepoint": "F1790", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "B74213B2-B220-4D15-AFA5-CAE0E40D6CFE", + "name": "web-check", + "codepoint": "F0789", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "1.9.32" + }, + { + "id": "FABF6519-0CE7-461D-986D-60B4BF7374A7", + "name": "web-clock", + "codepoint": "F124A", + "aliases": [], + "tags": [ + "Date \/ Time" + ], + "author": "frankgrinaert", + "version": "4.6.95" + }, + { + "id": "9C32EF89-4919-4CF1-A266-A0AB4C1C11EA", + "name": "web-minus", + "codepoint": "F10A0", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "4.2.95" + }, + { + "id": "46DE4030-CBE2-401D-82A0-50B99DE514D1", + "name": "web-off", + "codepoint": "F0A8E", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "2.7.94" + }, + { + "id": "F9923FF1-E31E-4C03-BBB7-438704CF3909", + "name": "web-plus", + "codepoint": "F0033", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "1.5.54" + }, + { + "id": "D0CCF2D3-F7AC-4591-B31E-37B03A843661", + "name": "web-refresh", + "codepoint": "F1791", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "BC7B3CEA-B4D3-4F52-8378-5ACF408A3D9B", + "name": "web-remove", + "codepoint": "F0551", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "1.5.54" + }, + { + "id": "3B639E91-D1C4-439A-A1D9-84779901F763", + "name": "web-sync", + "codepoint": "F1792", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "6.1.95" + }, + { + "id": "03483AFB-9D53-4E10-B00C-1095C1873276", + "name": "webcam", + "codepoint": "F05A0", + "aliases": [ + "web-camera" + ], + "tags": [ + "Video \/ Movie", + "Home Automation" + ], + "author": "Chris Litherland", + "version": "1.5.54" + }, + { + "id": "F8D156C4-16AA-47AD-B06B-970E27F30FE6", + "name": "webcam-off", + "codepoint": "F1737", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.9.55" + }, + { + "id": "5B415522-B2A4-4D34-BEE3-D81D607BBD0B", + "name": "webhook", + "codepoint": "F062F", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.6.50" + }, + { + "id": "65235220-D361-4E99-BEC6-E62B231E4384", + "name": "webpack", + "codepoint": "F072B", + "aliases": [], + "tags": [ + "Brand \/ Logo", + "Developer \/ Languages" + ], + "author": "Contributors", + "version": "1.8.36" + }, + { + "id": "972B66F0-ED66-42B4-BEE8-63EF28F4658B", + "name": "webrtc", + "codepoint": "F1248", + "aliases": [], + "tags": [], + "author": "Contributors", + "version": "4.6.95" + }, + { + "id": "31CBB823-2223-40D5-BCF7-470F91159757", + "name": "wechat", + "codepoint": "F0611", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "F5DECC39-2E4C-4574-B141-832DFBA8CB43", + "name": "weight", + "codepoint": "F05A1", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "ABC7A229-B0E6-4F6C-9A00-C1340D95DEAF", + "name": "weight-gram", + "codepoint": "F0D3F", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.3.92" + }, + { + "id": "5EDFF36D-4C8E-4B8D-BE3F-76C27DB804DF", + "name": "weight-kilogram", + "codepoint": "F05A2", + "aliases": [ + "weight-kg" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "4ECFBE4E-52B2-4A60-BD6C-9B7DAB38E7A5", + "name": "weight-lifter", + "codepoint": "F115D", + "aliases": [ + "crossfit", + "gym", + "fitness-center", + "human-barbell" + ], + "tags": [ + "Sport" + ], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "47B5C7D8-105F-4420-B911-50693081EA76", + "name": "weight-pound", + "codepoint": "F09B5", + "aliases": [ + "weight-lb" + ], + "tags": [], + "author": "Haley Halcyon", + "version": "2.4.85" + }, + { + "id": "C58497CE-5E84-483C-9C85-3007ADF9BC9A", + "name": "whatsapp", + "codepoint": "F05A3", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "2D35B573-0B04-4E72-84CA-6BE431EE5AE5", + "name": "wheel-barrow", + "codepoint": "F14F2", + "aliases": [], + "tags": [ + "Hardware \/ Tools" + ], + "author": "Michael Irigoyen", + "version": "5.4.55" + }, + { + "id": "FB4E1390-EFB1-4364-B6EE-F936C5715163", + "name": "wheelchair-accessibility", + "codepoint": "F05A4", + "aliases": [ + "accessible" + ], + "tags": [], + "author": "Doug C. Hardester", + "version": "1.5.54" + }, + { + "id": "2DADA4F6-D9AD-454D-BC75-1D8DE507FA82", + "name": "whistle", + "codepoint": "F09B6", + "aliases": [], + "tags": [ + "Sport" + ], + "author": "Michael Richins", + "version": "2.4.85" + }, + { + "id": "93CDBDF3-A4BE-4ADE-9179-171FA94726A6", + "name": "whistle-outline", + "codepoint": "F12BC", + "aliases": [], + "tags": [ + "Sport" + ], + "author": "Michael Richins", + "version": "4.8.95" + }, + { + "id": "2FE12EF0-B5CE-4ADB-9B1B-3F796F0EDE0E", + "name": "white-balance-auto", + "codepoint": "F05A5", + "aliases": [ + "wb-auto" + ], + "tags": [ + "Photography" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "4464050A-1A97-46CF-BBA5-CE52D600CB45", + "name": "white-balance-incandescent", + "codepoint": "F05A6", + "aliases": [ + "wb-incandescent" + ], + "tags": [ + "Photography" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "E88B06D9-C60D-4084-9AE9-742266F0E8FB", + "name": "white-balance-iridescent", + "codepoint": "F05A7", + "aliases": [ + "wb-iridescent" + ], + "tags": [ + "Photography" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "7DCAB3C3-C32F-483D-98F1-1728919AA17B", + "name": "white-balance-sunny", + "codepoint": "F05A8", + "aliases": [ + "wb-sunny" + ], + "tags": [ + "Photography" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "419C0A49-C751-4204-8C82-7E43B0896BD9", + "name": "widgets", + "codepoint": "F072C", + "aliases": [], + "tags": [], + "author": "Google", + "version": "1.8.36" + }, + { + "id": "94C40C14-7BBA-4DF6-824B-6EFC9327F7E5", + "name": "widgets-outline", + "codepoint": "F1355", + "aliases": [], + "tags": [], + "author": "Google", + "version": "4.9.95" + }, + { + "id": "E77CF681-7DD0-4EDF-AA35-0DB80790BC03", + "name": "wifi", + "codepoint": "F05A9", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "9B9FF835-20F9-49BD-A11F-403786BC42A2", + "name": "wifi-alert", + "codepoint": "F16B5", + "aliases": [], + "tags": [ + "Alert \/ Error" + ], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "8778FE48-83F3-484D-A1DE-C12000DB3170", + "name": "wifi-arrow-down", + "codepoint": "F16B6", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "79955442-BBC4-4B1D-84EE-69990BF30331", + "name": "wifi-arrow-left", + "codepoint": "F16B7", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "BD5239F0-5659-4E99-9860-F28D58BDF788", + "name": "wifi-arrow-left-right", + "codepoint": "F16B8", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "F245A78A-C6F3-45CF-B4C0-131280576715", + "name": "wifi-arrow-right", + "codepoint": "F16B9", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "20394D81-3E4C-4963-88C7-BB015ECA8D72", + "name": "wifi-arrow-up", + "codepoint": "F16BA", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "EE028441-38B6-40F9-B3E8-C673241BD39D", + "name": "wifi-arrow-up-down", + "codepoint": "F16BB", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "06F860BA-78F4-4F9C-8A90-E6ABEF1FA064", + "name": "wifi-cancel", + "codepoint": "F16BC", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "41D2061C-CFC9-4686-B916-4BEC07AB1553", + "name": "wifi-check", + "codepoint": "F16BD", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "17572DB9-20E6-4B83-A6B8-C66282523BC8", + "name": "wifi-cog", + "codepoint": "F16BE", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "3E5F6D19-E6C7-48BD-990F-C7D10598B2F7", + "name": "wifi-lock", + "codepoint": "F16BF", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "F9450F5D-FCF2-4E89-B234-FDA2F72C6B18", + "name": "wifi-lock-open", + "codepoint": "F16C0", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "A6FB83C2-13FE-4B23-AE9B-7F2696CA2835", + "name": "wifi-marker", + "codepoint": "F16C1", + "aliases": [ + "wifi-location" + ], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "DFEC628C-E105-456D-8F73-71F54116DBC2", + "name": "wifi-minus", + "codepoint": "F16C2", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "A7CAE187-B853-41DD-9D8D-FB9A28C3F764", + "name": "wifi-off", + "codepoint": "F05AA", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "1.5.54" + }, + { + "id": "3CF89702-EA3B-48A1-9B5E-5188A80DCBA8", + "name": "wifi-plus", + "codepoint": "F16C3", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "540437B4-6901-4F18-A60F-CAA10FD74B49", + "name": "wifi-refresh", + "codepoint": "F16C4", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "5989CC44-8A90-4D17-ADB8-F7AC12A0CF4E", + "name": "wifi-remove", + "codepoint": "F16C5", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "BA9356E6-E4D6-4A64-923C-395114E0DBE3", + "name": "wifi-settings", + "codepoint": "F16C6", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "30694858-4607-48C1-A533-861E4968A0CE", + "name": "wifi-star", + "codepoint": "F0E0B", + "aliases": [ + "wifi-favourite", + "network-favourite", + "wifi-favorite", + "network-favorite" + ], + "tags": [], + "author": "Michael Irigoyen", + "version": "3.5.94" + }, + { + "id": "E4665C87-DB69-45CC-B922-1FCB0F0A54A3", + "name": "wifi-strength-1", + "codepoint": "F091F", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "2.3.50" + }, + { + "id": "31F993F8-3BC0-4818-AE1C-91DF005766F3", + "name": "wifi-strength-1-alert", + "codepoint": "F0920", + "aliases": [ + "wifi-strength-1-warning" + ], + "tags": [ + "Alert \/ Error" + ], + "author": "Simran", + "version": "2.3.50" + }, + { + "id": "035F0E2C-C952-40AB-BC29-B8CE120C389D", + "name": "wifi-strength-1-lock", + "codepoint": "F0921", + "aliases": [], + "tags": [ + "Lock" + ], + "author": "Simran", + "version": "2.3.50" + }, + { + "id": "91890A07-398B-41A0-B91C-647C7BE9F5DA", + "name": "wifi-strength-1-lock-open", + "codepoint": "F16CB", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "92D075FB-99D3-4926-A4E9-F25EAB70E78E", + "name": "wifi-strength-2", + "codepoint": "F0922", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "2.3.50" + }, + { + "id": "38D73A8E-CEA5-4E6F-960B-BD2A0D482D9F", + "name": "wifi-strength-2-alert", + "codepoint": "F0923", + "aliases": [ + "wifi-strength-2-warning" + ], + "tags": [ + "Alert \/ Error" + ], + "author": "Simran", + "version": "2.3.50" + }, + { + "id": "CD7B760F-1A3C-4DDE-AB00-9EF11DF12073", + "name": "wifi-strength-2-lock", + "codepoint": "F0924", + "aliases": [], + "tags": [ + "Lock" + ], + "author": "Simran", + "version": "2.3.50" + }, + { + "id": "22E5DDDA-12A4-4087-B1FF-5C3E8807CE0B", + "name": "wifi-strength-2-lock-open", + "codepoint": "F16CC", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "736B9B99-3A60-4BCA-A79A-40DE34D17F43", + "name": "wifi-strength-3", + "codepoint": "F0925", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "2.3.50" + }, + { + "id": "780617FD-FBFA-4F88-98CA-2DEA43409312", + "name": "wifi-strength-3-alert", + "codepoint": "F0926", + "aliases": [ + "wifi-strength-3-warning" + ], + "tags": [ + "Alert \/ Error" + ], + "author": "Simran", + "version": "2.3.50" + }, + { + "id": "CD4F72AA-B86D-4133-8EB8-145F457A1F06", + "name": "wifi-strength-3-lock", + "codepoint": "F0927", + "aliases": [], + "tags": [ + "Lock" + ], + "author": "Simran", + "version": "2.3.50" + }, + { + "id": "249BF1E5-B9AC-47D6-9FC4-72678EE933C4", + "name": "wifi-strength-3-lock-open", + "codepoint": "F16CD", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "41B86B22-7245-4A97-9BAA-3E9EBD44CEB0", + "name": "wifi-strength-4", + "codepoint": "F0928", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "2.3.50" + }, + { + "id": "B37308A1-15BE-4F23-82F4-B360C8BA63C1", + "name": "wifi-strength-4-alert", + "codepoint": "F0929", + "aliases": [ + "wifi-strength-4-warning" + ], + "tags": [ + "Alert \/ Error" + ], + "author": "Simran", + "version": "2.3.50" + }, + { + "id": "11518A63-4E2B-477D-8D93-9B6C708DE5E1", + "name": "wifi-strength-4-lock", + "codepoint": "F092A", + "aliases": [], + "tags": [ + "Lock" + ], + "author": "Simran", + "version": "2.3.50" + }, + { + "id": "332A10AE-2396-460B-819F-7149D0BE4085", + "name": "wifi-strength-4-lock-open", + "codepoint": "F16CE", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "50E531C4-A82A-4F0C-A8BB-A2208B546E81", + "name": "wifi-strength-alert-outline", + "codepoint": "F092B", + "aliases": [ + "wifi-strength-warning-outline", + "wifi-strength-0-alert", + "wifi-strength-0-warning" + ], + "tags": [ + "Alert \/ Error" + ], + "author": "Simran", + "version": "2.3.50" + }, + { + "id": "40B4EE9D-5DA4-428C-BEF3-C75FD6740CA3", + "name": "wifi-strength-lock-open-outline", + "codepoint": "F16CF", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "718740BB-FC95-47E4-856B-0A469966C8DD", + "name": "wifi-strength-lock-outline", + "codepoint": "F092C", + "aliases": [ + "wifi-strength-0-lock" + ], + "tags": [ + "Lock" + ], + "author": "Simran", + "version": "2.3.50" + }, + { + "id": "122332EC-08DD-438C-BD47-AB332E1E04F6", + "name": "wifi-strength-off", + "codepoint": "F092D", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "2.3.50" + }, + { + "id": "E4D2EA69-5F99-4D0B-BC12-BD22A2835B19", + "name": "wifi-strength-off-outline", + "codepoint": "F092E", + "aliases": [], + "tags": [], + "author": "Simran", + "version": "2.3.50" + }, + { + "id": "0DAAFF13-5A8D-44C3-AE46-9DDE62493C60", + "name": "wifi-strength-outline", + "codepoint": "F092F", + "aliases": [ + "wifi-strength-0" + ], + "tags": [], + "author": "Simran", + "version": "2.3.50" + }, + { + "id": "73D9D138-DCB0-4CA7-9AB9-5C3BCB4D2165", + "name": "wifi-sync", + "codepoint": "F16C7", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.8.55" + }, + { + "id": "19DE621D-F082-42B5-9FD3-FEF8D84A2BB9", + "name": "wikipedia", + "codepoint": "F05AC", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "9DABF133-FBE0-416C-82D8-F47E8A559E12", + "name": "wind-turbine", + "codepoint": "F0DA5", + "aliases": [ + "wind-power", + "wind-electricity" + ], + "tags": [ + "Home Automation" + ], + "author": "Google", + "version": "3.4.93" + }, + { + "id": "E77F8623-2F40-49A2-AE26-40B7B9AFA6AF", + "name": "wind-turbine-alert", + "codepoint": "F19AB", + "aliases": [ + "wind-power-alert", + "wind-turbine-warning" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.5.95" + }, + { + "id": "6B86211C-130B-4A90-A9C7-9B58A5228D30", + "name": "wind-turbine-check", + "codepoint": "F19AC", + "aliases": [ + "wind-power-check", + "wind-turbine-success", + "wind-power-success" + ], + "tags": [ + "Home Automation" + ], + "author": "Michael Irigoyen", + "version": "6.5.95" + }, + { + "id": "0CB92EB7-2EE0-401C-9113-7D52E78DB51E", + "name": "window-close", + "codepoint": "F05AD", + "aliases": [ + "cancel", + "close" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "42DDDE71-7AA4-4A61-98F5-2A3B0AD486FF", + "name": "window-closed", + "codepoint": "F05AE", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "8A71B80F-BEE0-4603-8EB3-06699D1140FF", + "name": "window-closed-variant", + "codepoint": "F11DB", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Richins", + "version": "4.5.95" + }, + { + "id": "AB365770-45CF-44AC-941E-8E1396FAF428", + "name": "window-maximize", + "codepoint": "F05AF", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "C329F2CA-AC52-45CD-87D7-253AB115D47F", + "name": "window-minimize", + "codepoint": "F05B0", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "5617DB90-FDD7-4909-B322-D1EC44EB1372", + "name": "window-open", + "codepoint": "F05B1", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "47841D12-3D7E-40C1-9230-08C8890E0067", + "name": "window-open-variant", + "codepoint": "F11DC", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Michael Richins", + "version": "4.5.95" + }, + { + "id": "405C8463-0E67-48A3-B824-7C5E74423125", + "name": "window-restore", + "codepoint": "F05B2", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "0893E339-7750-4CAB-8C19-6496711F3C37", + "name": "window-shutter", + "codepoint": "F111C", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "idevo89", + "version": "4.3.95" + }, + { + "id": "8D6FB7B2-191F-459C-A41A-1D8881EA286B", + "name": "window-shutter-alert", + "codepoint": "F111D", + "aliases": [], + "tags": [ + "Home Automation", + "Alert \/ Error" + ], + "author": "idevo89", + "version": "4.3.95" + }, + { + "id": "955A5813-3414-4712-ADF4-62878A42D3B9", + "name": "window-shutter-open", + "codepoint": "F111E", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "idevo89", + "version": "4.3.95" + }, + { + "id": "0D2A52AA-2CAE-427F-887E-6198929D6855", + "name": "windsock", + "codepoint": "F15FA", + "aliases": [], + "tags": [ + "Weather" + ], + "author": "Michael Irigoyen", + "version": "5.6.55" + }, + { + "id": "70D590C8-8B7E-4F4A-A9FC-31765D35F349", + "name": "wiper", + "codepoint": "F0AE9", + "aliases": [], + "tags": [], + "author": "Michael Irigoyen", + "version": "2.7.94" + }, + { + "id": "CC8D7DD6-699C-4746-ACAB-84DCA7BBC5E9", + "name": "wiper-wash", + "codepoint": "F0DA6", + "aliases": [ + "wiper-fluid", + "washer-fluid" + ], + "tags": [ + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "3.4.93" + }, + { + "id": "0BC113C0-8EC6-479E-86B6-A8F88C6B0371", + "name": "wiper-wash-alert", + "codepoint": "F18DF", + "aliases": [ + "wiper-fluid-alert", + "washer-fluid-alert", + "wiper-fluid-low", + "washer-fluid-low" + ], + "tags": [ + "Alert \/ Error", + "Automotive" + ], + "author": "Michael Irigoyen", + "version": "6.3.95" + }, + { + "id": "464D9AC5-8A79-4E35-89E3-D84DDC0056A3", + "name": "wizard-hat", + "codepoint": "F1477", + "aliases": [], + "tags": [ + "Clothing", + "Gaming \/ RPG" + ], + "author": "Michael Irigoyen", + "version": "5.2.45" + }, + { + "id": "0059A2CA-E266-4A57-9EE8-4520B7330D5C", + "name": "wordpress", + "codepoint": "F05B4", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "1.5.54" + }, + { + "id": "79D47101-F8CB-496B-99B0-957DADED5D44", + "name": "wrap", + "codepoint": "F05B6", + "aliases": [], + "tags": [], + "author": "Doug C. Hardester", + "version": "1.5.54" + }, + { + "id": "44C4926C-7F82-4A6A-8F55-A7B23E56A9D7", + "name": "wrap-disabled", + "codepoint": "F0BDF", + "aliases": [ + "unwrap" + ], + "tags": [], + "author": "Leo SF", + "version": "3.0.39" + }, + { + "id": "CACAAE64-D38D-423E-8C84-68EFF0EA0F8A", + "name": "wrench", + "codepoint": "F05B7", + "aliases": [ + "build", + "spanner" + ], + "tags": [ + "Hardware \/ Tools" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "922891A9-0422-4BCD-9CE7-2FA1E7134EAB", + "name": "wrench-clock", + "codepoint": "F19A3", + "aliases": [ + "scheduled-maintenance", + "wrench-time", + "tool-time", + "tool-clock" + ], + "tags": [ + "Date \/ Time" + ], + "author": "Simran", + "version": "6.5.95" + }, + { + "id": "040BA3F6-86B3-4597-9EBE-C6D6A916091D", + "name": "wrench-outline", + "codepoint": "F0BE0", + "aliases": [ + "build-outline", + "spanner-outline" + ], + "tags": [ + "Hardware \/ Tools" + ], + "author": "Google", + "version": "3.0.39" + }, + { + "id": "958B8A8B-A4D7-45A4-8C80-39F7140443C0", + "name": "xamarin", + "codepoint": "F0845", + "aliases": [ + "microsoft-xamarin" + ], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "2.1.19" + }, + { + "id": "994C18D8-DAF1-4311-A30B-CD93F5ADC233", + "name": "xml", + "codepoint": "F05C0", + "aliases": [ + "code" + ], + "tags": [ + "Developer \/ Languages" + ], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "F2F74E7E-9EC8-4748-AF3B-A14D6158770D", + "name": "xmpp", + "codepoint": "F07FF", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "2.0.46" + }, + { + "id": "63AB3732-B3D1-4AFA-81B5-5D0F40E5D0E0", + "name": "yahoo", + "codepoint": "F0B4F", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Contributors", + "version": "2.8.94" + }, + { + "id": "17C0DA66-AB24-4935-A928-26BE13FDC3C0", + "name": "yeast", + "codepoint": "F05C1", + "aliases": [], + "tags": [], + "author": "Austin Andrews", + "version": "1.5.54" + }, + { + "id": "068670F6-B9DF-40C5-8C50-C9A3953F6201", + "name": "yin-yang", + "codepoint": "F0680", + "aliases": [ + "taoism" + ], + "tags": [], + "author": "Austin Andrews", + "version": "1.7.12" + }, + { + "id": "82F65F53-8458-4F6D-8151-D20FFDDC09C2", + "name": "yoga", + "codepoint": "F117C", + "aliases": [], + "tags": [ + "Sport" + ], + "author": "Michael Irigoyen", + "version": "4.4.95" + }, + { + "id": "0A078909-90AF-41F5-8E76-CAB565D49AAA", + "name": "youtube", + "codepoint": "F05C3", + "aliases": [ + "video-youtube", + "youtube-play" + ], + "tags": [ + "Brand \/ Logo", + "Social Media" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "9C80F67A-8A15-4109-BA37-7B92FE1F67DB", + "name": "youtube-gaming", + "codepoint": "F0848", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Google", + "version": "2.1.19" + }, + { + "id": "7150F7D3-B162-41DE-80A8-5DFD930EDF1B", + "name": "youtube-studio", + "codepoint": "F0847", + "aliases": [ + "youtube-creator-studio" + ], + "tags": [ + "Brand \/ Logo" + ], + "author": "Google", + "version": "2.1.19" + }, + { + "id": "E06EE7FD-6CC5-4BB4-9B00-1397D6E18DDF", + "name": "youtube-subscription", + "codepoint": "F0D40", + "aliases": [], + "tags": [], + "author": "Google", + "version": "3.3.92" + }, + { + "id": "011BAC94-8FD5-4335-AFF3-120C04299E78", + "name": "youtube-tv", + "codepoint": "F0448", + "aliases": [], + "tags": [ + "Brand \/ Logo" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "9BCCFDB1-42DE-4807-BF9B-36AD3B40B996", + "name": "yurt", + "codepoint": "F1516", + "aliases": [], + "tags": [], + "author": "Colton Wiscombe", + "version": "5.4.55" + }, + { + "id": "6A2E5A75-34CC-4B32-A1F6-156803328935", + "name": "z-wave", + "codepoint": "F0AEA", + "aliases": [ + "zwave" + ], + "tags": [ + "Home Automation" + ], + "author": "Contributors", + "version": "2.7.94" + }, + { + "id": "989885C5-DF4B-4B6E-B17B-7E74F2AEE1DB", + "name": "zend", + "codepoint": "F0AEB", + "aliases": [], + "tags": [ + "Developer \/ Languages" + ], + "author": "Contributors", + "version": "2.7.94" + }, + { + "id": "C4D3EAAC-C54B-4406-BCB4-8C08E2B07451", + "name": "zigbee", + "codepoint": "F0D41", + "aliases": [], + "tags": [ + "Home Automation" + ], + "author": "Contributors", + "version": "3.3.92" + }, + { + "id": "00A83C35-A726-464B-ACEE-F0D690045C25", + "name": "zip-box", + "codepoint": "F05C4", + "aliases": [ + "compressed-file" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Google", + "version": "1.5.54" + }, + { + "id": "19E804D8-154F-4250-82D3-76F5401B5674", + "name": "zip-box-outline", + "codepoint": "F0FFA", + "aliases": [ + "compressed-file-outline" + ], + "tags": [ + "Files \/ Folders" + ], + "author": "Michael Irigoyen", + "version": "4.0.96" + }, + { + "id": "775EA566-CF0B-473E-B43E-59319FC83D38", + "name": "zip-disk", + "codepoint": "F0A23", + "aliases": [], + "tags": [], + "author": "GreenTurtwig", + "version": "2.5.94" + }, + { + "id": "8E27593E-7C4E-41F7-A238-865DA00CDEE7", + "name": "zodiac-aquarius", + "codepoint": "F0A7D", + "aliases": [ + "horoscope-aquarius" + ], + "tags": [], + "author": "Michael Richins", + "version": "2.6.95" + }, + { + "id": "8DC63282-63B3-4F4A-B976-2346FC3B7CFA", + "name": "zodiac-aries", + "codepoint": "F0A7E", + "aliases": [ + "horoscope-aries" + ], + "tags": [], + "author": "Michael Richins", + "version": "2.6.95" + }, + { + "id": "DCBC9ECE-641C-40E1-BD15-2F02F8412780", + "name": "zodiac-cancer", + "codepoint": "F0A7F", + "aliases": [ + "horoscope-cancer" + ], + "tags": [], + "author": "Michael Richins", + "version": "2.6.95" + }, + { + "id": "6310BE95-A7A4-4A4C-A478-059DCA6C4E0B", + "name": "zodiac-capricorn", + "codepoint": "F0A80", + "aliases": [ + "horoscope-capricorn" + ], + "tags": [], + "author": "Michael Richins", + "version": "2.6.95" + }, + { + "id": "ECDB16AC-832D-446E-974E-9F99657685D0", + "name": "zodiac-gemini", + "codepoint": "F0A81", + "aliases": [ + "horoscope-gemini" + ], + "tags": [], + "author": "Michael Richins", + "version": "2.6.95" + }, + { + "id": "D280F50D-92FC-4DA2-BBAD-CE93140E6FEA", + "name": "zodiac-leo", + "codepoint": "F0A82", + "aliases": [ + "horoscope-leo" + ], + "tags": [], + "author": "Michael Richins", + "version": "2.6.95" + }, + { + "id": "142861F0-C930-43ED-B186-4BD97C175394", + "name": "zodiac-libra", + "codepoint": "F0A83", + "aliases": [ + "horoscope-libra" + ], + "tags": [], + "author": "Michael Richins", + "version": "2.6.95" + }, + { + "id": "3410C5F7-CAEF-405C-9159-86F38ACE9619", + "name": "zodiac-pisces", + "codepoint": "F0A84", + "aliases": [ + "horoscope-pisces" + ], + "tags": [], + "author": "Michael Richins", + "version": "2.6.95" + }, + { + "id": "1FC91C87-E02C-4830-B0A6-6EA7CDABB8D3", + "name": "zodiac-sagittarius", + "codepoint": "F0A85", + "aliases": [ + "horoscope-sagittarius" + ], + "tags": [], + "author": "Michael Richins", + "version": "2.6.95" + }, + { + "id": "0AEE35B6-4A9F-422A-BCC8-395174DCBA71", + "name": "zodiac-scorpio", + "codepoint": "F0A86", + "aliases": [ + "horoscope-scorpio" + ], + "tags": [], + "author": "Michael Richins", + "version": "2.6.95" + }, + { + "id": "40205151-C976-49D8-98F1-A0E120086E07", + "name": "zodiac-taurus", + "codepoint": "F0A87", + "aliases": [ + "horoscope-taurus" + ], + "tags": [], + "author": "Michael Richins", + "version": "2.6.95" + }, + { + "id": "41D13BD9-7CB3-4015-A845-485B9915FA65", + "name": "zodiac-virgo", + "codepoint": "F0A88", + "aliases": [ + "horoscope-virgo" + ], + "tags": [], + "author": "Michael Richins", + "version": "2.6.95" + } +] \ No newline at end of file diff --git a/main/assets/fonts/material_webfont/parse_meta.rb b/main/assets/fonts/material_webfont/parse_meta.rb new file mode 100644 index 0000000..545a197 --- /dev/null +++ b/main/assets/fonts/material_webfont/parse_meta.rb @@ -0,0 +1,19 @@ +require 'json' + +meta_json = "" + +File.open("meta.json", "r") do |f| + meta_json = f.read +end + +meta = JSON.parse(meta_json) + +cp_array = meta.map{|m| m["codepoint"]}.sort + +cp_list = "" + +cp_array.each do |i| + cp_list += "#{i}," +end + +puts cp_list diff --git a/main/impl/impl_btn.c b/main/impl/impl_btn.c new file mode 100644 index 0000000..e69de29 diff --git a/main/impl/impl_lvgl.c b/main/impl/impl_lvgl.c index 3a83d8a..b0e551f 100644 --- a/main/impl/impl_lvgl.c +++ b/main/impl/impl_lvgl.c @@ -3,6 +3,8 @@ #include "esp_log.h" #include "impl_epd.h" +#define LOG_TAG "IMPL_LVGL" + #define EPD_DISPLAY_PIXEL_COUNT 400 * 300 #define EPD_DISPLAY_FRAME_SIZE (EPD_DISPLAY_PIXEL_COUNT * 2 / 8) @@ -29,7 +31,7 @@ static epd_gdew042t2_t s_gd_epd = { }; #if !EPD_DISPLAY_GS -static uint8_t s_epd_partial_counter = EPD_DISPLAY_MAX_PARTIAL - 1; +static uint8_t s_epd_partial_counter = 0; #endif static lv_disp_draw_buf_t s_disp_buf; @@ -106,6 +108,8 @@ static void impl_lvgl_epd_flush_cb(lv_disp_drv_t *disp_drv, const lv_area_t *are } #endif + ESP_LOGD(LOG_TAG, "Memory buffer flushed to EPD."); + lv_disp_flush_ready(disp_drv); } @@ -114,7 +118,10 @@ static void impl_lvgl_epd_rounder_cb(lv_disp_drv_t *disp_drv, lv_area_t *area) { area->x2 = 399; } -static void impl_lvgl_log_cb(const char *buf) { ESP_LOGI("LVGL", "%s", buf); } +static void impl_lvgl_log_cb(const char *buf) { + // Log to console. + ESP_LOGI("LVGL", "%s", buf); +} void impl_lvgl_timer_task(void *pvParameters) { for (;;) { @@ -152,6 +159,9 @@ esp_err_t impl_lvgl_init(void) { ESP_ERROR_CHECK(impl_epd_init(&s_epd_impl)); lv_init(); + + lv_log_register_print_cb(impl_lvgl_log_cb); + lv_disp_draw_buf_init(&s_disp_buf, s_disp_store, NULL, EPD_DISPLAY_PIXEL_COUNT); lv_disp_drv_init(&s_disp_drv); @@ -163,24 +173,33 @@ esp_err_t impl_lvgl_init(void) { s_disp_drv.draw_buf = &s_disp_buf; s_disp_drv.full_refresh = 1; - printf("Buffer start: %p\r\n", s_disp_store); - - lv_disp_t *disp = lv_disp_drv_register(&s_disp_drv); + lv_disp_t *disp = lv_disp_drv_register(&s_disp_drv); if (disp == NULL) { + ESP_LOGE(LOG_TAG, "LVGL display driver register failed."); return ESP_FAIL; } + lv_theme_t *default_theme = lv_theme_mono_init(disp, false, &lv_font_unscii_16); + lv_disp_set_theme(disp, default_theme); + s_lv_semphr_handle = xSemaphoreCreateBinary(); if (s_lv_semphr_handle == NULL) { + ESP_LOGE(LOG_TAG, "LVGL semaphore creation failed."); return ESP_FAIL; } xSemaphoreGive(s_lv_semphr_handle); - xTaskCreate(impl_lvgl_tick_task, "LV_TICK", 1024, NULL, 5, &s_lv_tick_handle); - xTaskCreate(impl_lvgl_timer_task, "LV_TMR", 4096, NULL, 4, &s_lv_task_handle); + if (xTaskCreate(impl_lvgl_tick_task, "LV_TICK", 1024, NULL, 5, &s_lv_tick_handle) != pdPASS) { + ESP_LOGE(LOG_TAG, "LVGL tick task creation failed."); + return ESP_FAIL; + } + if (xTaskCreate(impl_lvgl_timer_task, "LV_TMR", 4096, NULL, 4, &s_lv_task_handle) != pdPASS) { + ESP_LOGE(LOG_TAG, "LVGL timer handler task creation failed."); + return ESP_FAIL; + } - // TODO: Launch LVGL tasks below. + ESP_LOGI(LOG_TAG, "LVGL initialized."); return ESP_OK; } \ No newline at end of file diff --git a/main/interface/if_standby.c b/main/interface/if_standby.c new file mode 100644 index 0000000..cf6a273 --- /dev/null +++ b/main/interface/if_standby.c @@ -0,0 +1,132 @@ +#include "if_standby.h" + +#include + +#include "esp_log.h" +#include "freertos/FreeRTOS.h" +#include "freertos/task.h" +#include "impl_lvgl.h" + +#define LOG_TAG "IF_STANDBY" + +static TaskHandle_t s_if_standby_handle; + +lv_obj_t *g_standby_screen; + +void if_standby_task(void *pvParameters) { + impl_lvgl_lock(); + + // 1st line + lv_obj_t *top_container = lv_obj_create(g_standby_screen); + + lv_obj_set_size(top_container, 400, 60); + lv_obj_align(top_container, LV_ALIGN_TOP_MID, 0, 0); + lv_obj_set_flex_flow(top_container, LV_FLEX_FLOW_ROW); + + lv_obj_t *network_status_obj = lv_obj_create(top_container); + lv_obj_t *weekday_obj = lv_obj_create(top_container); + lv_obj_t *date_obj = lv_obj_create(top_container); + lv_obj_t *battery_obj = lv_obj_create(top_container); + + lv_obj_set_size(network_status_obj, 50, 50); + lv_obj_set_size(battery_obj, 50, 50); + + lv_obj_set_height(weekday_obj, 50); + lv_obj_set_height(date_obj, 50); + + lv_obj_set_flex_grow(weekday_obj, 1); + lv_obj_set_flex_grow(date_obj, 3); + + // 2nd line + lv_obj_t *main_container = lv_obj_create(g_standby_screen); + + lv_obj_set_size(main_container, 400, 235); + lv_obj_align_to(main_container, top_container, LV_ALIGN_OUT_BOTTOM_MID, 0, 5); + lv_obj_set_flex_flow(main_container, LV_FLEX_FLOW_ROW); + + lv_obj_t *time_obj = lv_obj_create(main_container); + + lv_obj_set_height(time_obj, 225); + lv_obj_set_flex_grow(time_obj, 1); + + // 2nd line, DHT column + lv_obj_t *dht_container = lv_obj_create(main_container); + + lv_obj_set_size(dht_container, 110, 225); + lv_obj_set_flex_flow(dht_container, LV_FLEX_FLOW_COLUMN); + + lv_obj_t *temp_obj = lv_obj_create(dht_container); + lv_obj_t *humid_obj = lv_obj_create(dht_container); + + lv_obj_set_width(temp_obj, 100); + lv_obj_set_width(humid_obj, 100); + + lv_obj_set_flex_grow(temp_obj, 1); + lv_obj_set_flex_grow(humid_obj, 1); + + // Create labels + lv_obj_t *network_status_label = lv_label_create(network_status_obj); + lv_obj_t *weekday_label = lv_label_create(weekday_obj); + lv_obj_t *date_label = lv_label_create(date_obj); + lv_obj_t *battery_label = lv_label_create(battery_obj); + lv_obj_t *time_label = lv_label_create(time_obj); + lv_obj_t *temp_icon_label = lv_label_create(temp_obj); + lv_obj_t *temp_label = lv_label_create(temp_obj); + lv_obj_t *humid_icon_label = lv_label_create(humid_obj); + lv_obj_t *humid_label = lv_label_create(humid_obj); + + lv_obj_set_style_text_font(network_status_label, &material_webfont_32, 0); + lv_obj_set_style_text_font(weekday_label, &bebas_neue_32, 0); + lv_obj_set_style_text_font(date_label, &bebas_neue_32, 0); + lv_obj_set_style_text_font(battery_label, &material_webfont_32, 0); + lv_obj_set_style_text_font(time_label, &bebas_neue_120, 0); + lv_obj_set_style_text_font(temp_icon_label, &material_webfont_32, 0); + lv_obj_set_style_text_font(temp_label, &bebas_neue_32, 0); + lv_obj_set_style_text_font(humid_icon_label, &material_webfont_32, 0); + lv_obj_set_style_text_font(humid_label, &bebas_neue_32, 0); + + + lv_label_set_text(network_status_label, "\U000F092D"); + lv_label_set_text(battery_label, "\U000F007A"); + lv_label_set_text(weekday_label, "SUN"); + lv_label_set_text(date_label, "1970/01/01"); + lv_label_set_text(time_label, "23:59"); + lv_label_set_text(temp_icon_label, "\U000F0599"); + lv_label_set_text(temp_label, "30.00C"); + lv_label_set_text(humid_icon_label, "\U000F058C"); + lv_label_set_text(humid_label, "100.00%"); + + lv_obj_set_align(network_status_label, LV_ALIGN_CENTER); + lv_obj_set_align(battery_label, LV_ALIGN_CENTER); + lv_obj_set_align(weekday_label, LV_ALIGN_CENTER); + lv_obj_set_align(date_label, LV_ALIGN_CENTER); + lv_obj_set_align(time_label, LV_ALIGN_CENTER); + lv_obj_align(temp_icon_label, LV_ALIGN_CENTER, 0, -16); + lv_obj_align(temp_label, LV_ALIGN_CENTER, 0, 16); + lv_obj_align(humid_icon_label, LV_ALIGN_CENTER, 0, -16); + lv_obj_align(humid_label, LV_ALIGN_CENTER, 0, 16); + + impl_lvgl_unlock(); + + struct timeval tv; + struct timezone tz; + + for (;;) { + gettimeofday(&tv, &tz); + + vTaskDelay(pdMS_TO_TICKS(1000)); + } +} + +esp_err_t if_standby_init(void) { + impl_lvgl_lock(); + g_standby_screen = lv_obj_create(NULL); + lv_disp_load_scr(g_standby_screen); + impl_lvgl_unlock(); + + if (xTaskCreate(if_standby_task, "STBY_TASK", 1024, NULL, 6, &s_if_standby_handle) != pdPASS) { + return ESP_FAIL; + } + + return ESP_OK; +} \ No newline at end of file diff --git a/main/interface/if_standby.h b/main/interface/if_standby.h new file mode 100644 index 0000000..0bde1ab --- /dev/null +++ b/main/interface/if_standby.h @@ -0,0 +1,7 @@ +#ifndef IF_STANDBY_H +#define IF_STANDBY_H + +#include "esp_system.h" +esp_err_t if_standby_init(void); + +#endif \ No newline at end of file diff --git a/main/lib/lv_conf.h b/main/lib/lv_conf.h new file mode 100644 index 0000000..acfb759 --- /dev/null +++ b/main/lib/lv_conf.h @@ -0,0 +1,606 @@ +/** + * @file lv_conf.h + * Configuration file for v8.1.0 + */ + +/* + * Copy this file as `lv_conf.h` + * 1. simply next to the `lvgl` folder + * 2. or any other places and + * - define `LV_CONF_INCLUDE_SIMPLE` + * - add the path as include path + */ + +/* clang-format off */ +#if 1 /*Set it to "1" to enable content*/ + +#ifndef LV_CONF_H +#define LV_CONF_H + +#include + +/*==================== + COLOR SETTINGS + *====================*/ + +/*Color depth: 1 (1 byte per pixel), 8 (RGB332), 16 (RGB565), 32 (ARGB8888)*/ +#define LV_COLOR_DEPTH 8 + +/*Swap the 2 bytes of RGB565 color. Useful if the display has an 8-bit interface (e.g. SPI)*/ +#define LV_COLOR_16_SWAP 0 + +/*Enable more complex drawing routines to manage screens transparency. + *Can be used if the UI is above another layer, e.g. an OSD menu or video player. + *Requires `LV_COLOR_DEPTH = 32` colors and the screen's `bg_opa` should be set to non LV_OPA_COVER value*/ +#define LV_COLOR_SCREEN_TRANSP 0 + +/* Adjust color mix functions rounding. GPUs might calculate color mix (blending) differently. + * 0: round down, 64: round up from x.75, 128: round up from half, 192: round up from x.25, 254: round up */ +#define LV_COLOR_MIX_ROUND_OFS (LV_COLOR_DEPTH == 32 ? 0: 128) + +/*Images pixels with this color will not be drawn if they are chroma keyed)*/ +#define LV_COLOR_CHROMA_KEY lv_color_hex(0x00ff00) /*pure green*/ + +/*========================= + MEMORY SETTINGS + *=========================*/ + +/*1: use custom malloc/free, 0: use the built-in `lv_mem_alloc()` and `lv_mem_free()`*/ +#define LV_MEM_CUSTOM 1 +#if LV_MEM_CUSTOM == 0 +/*Size of the memory available for `lv_mem_alloc()` in bytes (>= 2kB)*/ +# define LV_MEM_SIZE (32U * 1024U) /*[bytes]*/ + +/*Set an address for the memory pool instead of allocating it as a normal array. Can be in external SRAM too.*/ +# define LV_MEM_ADR 0 /*0: unused*/ +/*Instead of an address give a memory allocator that will be called to get a memory pool for LVGL. E.g. my_malloc*/ +#if LV_MEM_ADR == 0 +//#define LV_MEM_POOL_INCLUDE your_alloc_library /* Uncomment if using an external allocator*/ +//#define LV_MEM_POOL_ALLOC your_alloc /* Uncomment if using an external allocator*/ +#endif + +#else /*LV_MEM_CUSTOM*/ +# define LV_MEM_CUSTOM_INCLUDE /*Header for the dynamic memory function*/ +# define LV_MEM_CUSTOM_ALLOC malloc +# define LV_MEM_CUSTOM_FREE free +# define LV_MEM_CUSTOM_REALLOC realloc +#endif /*LV_MEM_CUSTOM*/ + +/*Number of the intermediate memory buffer used during rendering and other internal processing mechanisms. + *You will see an error log message if there wasn't enough buffers. */ +#define LV_MEM_BUF_MAX_NUM 16 + +/*Use the standard `memcpy` and `memset` instead of LVGL's own functions. (Might or might not be faster).*/ +#define LV_MEMCPY_MEMSET_STD 0 + +/*==================== + HAL SETTINGS + *====================*/ + +/*Default display refresh period. LVG will redraw changed areas with this period time*/ +#define LV_DISP_DEF_REFR_PERIOD 30 /*[ms]*/ + +/*Input device read period in milliseconds*/ +#define LV_INDEV_DEF_READ_PERIOD 30 /*[ms]*/ + +/*Use a custom tick source that tells the elapsed time in milliseconds. + *It removes the need to manually update the tick with `lv_tick_inc()`)*/ +#define LV_TICK_CUSTOM 0 +#if LV_TICK_CUSTOM +#define LV_TICK_CUSTOM_INCLUDE "Arduino.h" /*Header for the system time function*/ +#define LV_TICK_CUSTOM_SYS_TIME_EXPR (millis()) /*Expression evaluating to current system time in ms*/ +#endif /*LV_TICK_CUSTOM*/ + +/*Default Dot Per Inch. Used to initialize default sizes such as widgets sized, style paddings. + *(Not so important, you can adjust it to modify default sizes and spaces)*/ +#define LV_DPI_DEF 130 /*[px/inch]*/ + +/*======================= + * FEATURE CONFIGURATION + *=======================*/ + +/*------------- + * Drawing + *-----------*/ + +/*Enable complex draw engine. + *Required to draw shadow, gradient, rounded corners, circles, arc, skew lines, image transformations or any masks*/ +#define LV_DRAW_COMPLEX 1 +#if LV_DRAW_COMPLEX != 0 + +/*Allow buffering some shadow calculation. + *LV_SHADOW_CACHE_SIZE is the max. shadow size to buffer, where shadow size is `shadow_width + radius` + *Caching has LV_SHADOW_CACHE_SIZE^2 RAM cost*/ +#define LV_SHADOW_CACHE_SIZE 0 + +/* Set number of maximally cached circle data. + * The circumference of 1/4 circle are saved for anti-aliasing + * radius * 4 bytes are used per circle (the most often used radiuses are saved) + * 0: to disable caching */ +#define LV_CIRCLE_CACHE_SIZE 4 + +#endif /*LV_DRAW_COMPLEX*/ + +/*Default image cache size. Image caching keeps the images opened. + *If only the built-in image formats are used there is no real advantage of caching. (I.e. if no new image decoder is added) + *With complex image decoders (e.g. PNG or JPG) caching can save the continuous open/decode of images. + *However the opened images might consume additional RAM. + *0: to disable caching*/ +#define LV_IMG_CACHE_DEF_SIZE 0 + +/*Maximum buffer size to allocate for rotation. Only used if software rotation is enabled in the display driver.*/ +#define LV_DISP_ROT_MAX_BUF (10*1024) + +/*------------- + * GPU + *-----------*/ + +/*Use STM32's DMA2D (aka Chrom Art) GPU*/ +#define LV_USE_GPU_STM32_DMA2D 0 +#if LV_USE_GPU_STM32_DMA2D +/*Must be defined to include path of CMSIS header of target processor +e.g. "stm32f769xx.h" or "stm32f429xx.h"*/ +#define LV_GPU_DMA2D_CMSIS_INCLUDE +#endif + +/*Use NXP's PXP GPU iMX RTxxx platforms*/ +#define LV_USE_GPU_NXP_PXP 0 +#if LV_USE_GPU_NXP_PXP +/*1: Add default bare metal and FreeRTOS interrupt handling routines for PXP (lv_gpu_nxp_pxp_osa.c) + * and call lv_gpu_nxp_pxp_init() automatically during lv_init(). Note that symbol SDK_OS_FREE_RTOS + * has to be defined in order to use FreeRTOS OSA, otherwise bare-metal implementation is selected. + *0: lv_gpu_nxp_pxp_init() has to be called manually before lv_init() + */ +#define LV_USE_GPU_NXP_PXP_AUTO_INIT 0 +#endif + +/*Use NXP's VG-Lite GPU iMX RTxxx platforms*/ +#define LV_USE_GPU_NXP_VG_LITE 0 + +/*Use exnternal renderer*/ +#define LV_USE_EXTERNAL_RENDERER 0 + +/*Use SDL renderer API. Requires LV_USE_EXTERNAL_RENDERER*/ +#define LV_USE_GPU_SDL 0 +#if LV_USE_GPU_SDL +# define LV_GPU_SDL_INCLUDE_PATH +#endif + +/*------------- + * Logging + *-----------*/ + +/*Enable the log module*/ +#define LV_USE_LOG 1 +#if LV_USE_LOG + +/*How important log should be added: + *LV_LOG_LEVEL_TRACE A lot of logs to give detailed information + *LV_LOG_LEVEL_INFO Log important events + *LV_LOG_LEVEL_WARN Log if something unwanted happened but didn't cause a problem + *LV_LOG_LEVEL_ERROR Only critical issue, when the system may fail + *LV_LOG_LEVEL_USER Only logs added by the user + *LV_LOG_LEVEL_NONE Do not log anything*/ +# define LV_LOG_LEVEL LV_LOG_LEVEL_WARN + +/*1: Print the log with 'printf'; + *0: User need to register a callback with `lv_log_register_print_cb()`*/ +# define LV_LOG_PRINTF 0 + +/*Enable/disable LV_LOG_TRACE in modules that produces a huge number of logs*/ +# define LV_LOG_TRACE_MEM 1 +# define LV_LOG_TRACE_TIMER 1 +# define LV_LOG_TRACE_INDEV 1 +# define LV_LOG_TRACE_DISP_REFR 1 +# define LV_LOG_TRACE_EVENT 1 +# define LV_LOG_TRACE_OBJ_CREATE 1 +# define LV_LOG_TRACE_LAYOUT 1 +# define LV_LOG_TRACE_ANIM 1 + +#endif /*LV_USE_LOG*/ + +/*------------- + * Asserts + *-----------*/ + +/*Enable asserts if an operation is failed or an invalid data is found. + *If LV_USE_LOG is enabled an error message will be printed on failure*/ +#define LV_USE_ASSERT_NULL 1 /*Check if the parameter is NULL. (Very fast, recommended)*/ +#define LV_USE_ASSERT_MALLOC 1 /*Checks is the memory is successfully allocated or no. (Very fast, recommended)*/ +#define LV_USE_ASSERT_STYLE 0 /*Check if the styles are properly initialized. (Very fast, recommended)*/ +#define LV_USE_ASSERT_MEM_INTEGRITY 0 /*Check the integrity of `lv_mem` after critical operations. (Slow)*/ +#define LV_USE_ASSERT_OBJ 0 /*Check the object's type and existence (e.g. not deleted). (Slow)*/ + +/*Add a custom handler when assert happens e.g. to restart the MCU*/ +#define LV_ASSERT_HANDLER_INCLUDE +#define LV_ASSERT_HANDLER while(1); /*Halt by default*/ + +/*------------- + * Others + *-----------*/ + +/*1: Show CPU usage and FPS count in the right bottom corner*/ +#define LV_USE_PERF_MONITOR 0 +#if LV_USE_PERF_MONITOR +#define LV_USE_PERF_MONITOR_POS LV_ALIGN_BOTTOM_RIGHT +#endif + +/*1: Show the used memory and the memory fragmentation in the left bottom corner + * Requires LV_MEM_CUSTOM = 0*/ +#define LV_USE_MEM_MONITOR 0 +#if LV_USE_PERF_MONITOR +#define LV_USE_MEM_MONITOR_POS LV_ALIGN_BOTTOM_LEFT +#endif + +/*1: Draw random colored rectangles over the redrawn areas*/ +#define LV_USE_REFR_DEBUG 0 + +/*Change the built in (v)snprintf functions*/ +#define LV_SPRINTF_CUSTOM 0 +#if LV_SPRINTF_CUSTOM +# define LV_SPRINTF_INCLUDE +# define lv_snprintf snprintf +# define lv_vsnprintf vsnprintf +#else /*LV_SPRINTF_CUSTOM*/ +# define LV_SPRINTF_USE_FLOAT 0 +#endif /*LV_SPRINTF_CUSTOM*/ + +#define LV_USE_USER_DATA 1 + +/*Garbage Collector settings + *Used if lvgl is bound to higher level language and the memory is managed by that language*/ +#define LV_ENABLE_GC 0 +#if LV_ENABLE_GC != 0 +# define LV_GC_INCLUDE "gc.h" /*Include Garbage Collector related things*/ +#endif /*LV_ENABLE_GC*/ + +/*===================== + * COMPILER SETTINGS + *====================*/ + +/*For big endian systems set to 1*/ +#define LV_BIG_ENDIAN_SYSTEM 0 + +/*Define a custom attribute to `lv_tick_inc` function*/ +#define LV_ATTRIBUTE_TICK_INC + +/*Define a custom attribute to `lv_timer_handler` function*/ +#define LV_ATTRIBUTE_TIMER_HANDLER + +/*Define a custom attribute to `lv_disp_flush_ready` function*/ +#define LV_ATTRIBUTE_FLUSH_READY + +/*Required alignment size for buffers*/ +#define LV_ATTRIBUTE_MEM_ALIGN_SIZE 1 + +/*Will be added where memories needs to be aligned (with -Os data might not be aligned to boundary by default). + * E.g. __attribute__((aligned(4)))*/ +#define LV_ATTRIBUTE_MEM_ALIGN + +/*Attribute to mark large constant arrays for example font's bitmaps*/ +#define LV_ATTRIBUTE_LARGE_CONST + +/*Complier prefix for a big array declaration in RAM*/ +#define LV_ATTRIBUTE_LARGE_RAM_ARRAY + +/*Place performance critical functions into a faster memory (e.g RAM)*/ +#define LV_ATTRIBUTE_FAST_MEM + +/*Prefix variables that are used in GPU accelerated operations, often these need to be placed in RAM sections that are DMA accessible*/ +#define LV_ATTRIBUTE_DMA + +/*Export integer constant to binding. This macro is used with constants in the form of LV_ that + *should also appear on LVGL binding API such as Micropython.*/ +#define LV_EXPORT_CONST_INT(int_value) struct _silence_gcc_warning /*The default value just prevents GCC warning*/ + +/*Extend the default -32k..32k coordinate range to -4M..4M by using int32_t for coordinates instead of int16_t*/ +#define LV_USE_LARGE_COORD 0 + +/*================== + * FONT USAGE + *===================*/ + +/*Montserrat fonts with ASCII range and some symbols using bpp = 4 + *https://fonts.google.com/specimen/Montserrat*/ +#define LV_FONT_MONTSERRAT_8 0 +#define LV_FONT_MONTSERRAT_10 0 +#define LV_FONT_MONTSERRAT_12 0 +#define LV_FONT_MONTSERRAT_14 1 +#define LV_FONT_MONTSERRAT_16 0 +#define LV_FONT_MONTSERRAT_18 0 +#define LV_FONT_MONTSERRAT_20 0 +#define LV_FONT_MONTSERRAT_22 0 +#define LV_FONT_MONTSERRAT_24 0 +#define LV_FONT_MONTSERRAT_26 0 +#define LV_FONT_MONTSERRAT_28 0 +#define LV_FONT_MONTSERRAT_30 0 +#define LV_FONT_MONTSERRAT_32 0 +#define LV_FONT_MONTSERRAT_34 0 +#define LV_FONT_MONTSERRAT_36 0 +#define LV_FONT_MONTSERRAT_38 0 +#define LV_FONT_MONTSERRAT_40 0 +#define LV_FONT_MONTSERRAT_42 0 +#define LV_FONT_MONTSERRAT_44 0 +#define LV_FONT_MONTSERRAT_46 0 +#define LV_FONT_MONTSERRAT_48 0 + +/*Demonstrate special features*/ +#define LV_FONT_MONTSERRAT_12_SUBPX 0 +#define LV_FONT_MONTSERRAT_28_COMPRESSED 0 /*bpp = 3*/ +#define LV_FONT_DEJAVU_16_PERSIAN_HEBREW 0 /*Hebrew, Arabic, Perisan letters and all their forms*/ +#define LV_FONT_SIMSUN_16_CJK 0 /*1000 most common CJK radicals*/ + +/*Pixel perfect monospace fonts*/ +#define LV_FONT_UNSCII_8 1 +#define LV_FONT_UNSCII_16 1 + +/*Optionally declare custom fonts here. + *You can use these fonts as default font too and they will be available globally. + *E.g. #define LV_FONT_CUSTOM_DECLARE LV_FONT_DECLARE(my_font_1) LV_FONT_DECLARE(my_font_2)*/ +#define LV_FONT_CUSTOM_DECLARE LV_FONT_DECLARE(bebas_neue_32) \ + LV_FONT_DECLARE(bebas_neue_40) \ + LV_FONT_DECLARE(bebas_neue_120) \ + LV_FONT_DECLARE(material_webfont_32) + +/*Always set a default font*/ +#define LV_FONT_DEFAULT &lv_font_unscii_16 + +/*Enable handling large font and/or fonts with a lot of characters. + *The limit depends on the font size, font face and bpp. + *Compiler error will be triggered if a font needs it.*/ +#define LV_FONT_FMT_TXT_LARGE 0 + +/*Enables/disables support for compressed fonts.*/ +#define LV_USE_FONT_COMPRESSED 0 + +/*Enable subpixel rendering*/ +#define LV_USE_FONT_SUBPX 0 +#if LV_USE_FONT_SUBPX +/*Set the pixel order of the display. Physical order of RGB channels. Doesn't matter with "normal" fonts.*/ +#define LV_FONT_SUBPX_BGR 0 /*0: RGB; 1:BGR order*/ +#endif + +/*================= + * TEXT SETTINGS + *=================*/ + +/** + * Select a character encoding for strings. + * Your IDE or editor should have the same character encoding + * - LV_TXT_ENC_UTF8 + * - LV_TXT_ENC_ASCII + */ +#define LV_TXT_ENC LV_TXT_ENC_UTF8 + + /*Can break (wrap) texts on these chars*/ +#define LV_TXT_BREAK_CHARS " ,.;:-_" + +/*If a word is at least this long, will break wherever "prettiest" + *To disable, set to a value <= 0*/ +#define LV_TXT_LINE_BREAK_LONG_LEN 0 + +/*Minimum number of characters in a long word to put on a line before a break. + *Depends on LV_TXT_LINE_BREAK_LONG_LEN.*/ +#define LV_TXT_LINE_BREAK_LONG_PRE_MIN_LEN 3 + +/*Minimum number of characters in a long word to put on a line after a break. + *Depends on LV_TXT_LINE_BREAK_LONG_LEN.*/ +#define LV_TXT_LINE_BREAK_LONG_POST_MIN_LEN 3 + +/*The control character to use for signalling text recoloring.*/ +#define LV_TXT_COLOR_CMD "#" + +/*Support bidirectional texts. Allows mixing Left-to-Right and Right-to-Left texts. + *The direction will be processed according to the Unicode Bidirectional Algorithm: + *https://www.w3.org/International/articles/inline-bidi-markup/uba-basics*/ +#define LV_USE_BIDI 0 +#if LV_USE_BIDI +/*Set the default direction. Supported values: + *`LV_BASE_DIR_LTR` Left-to-Right + *`LV_BASE_DIR_RTL` Right-to-Left + *`LV_BASE_DIR_AUTO` detect texts base direction*/ +#define LV_BIDI_BASE_DIR_DEF LV_BASE_DIR_AUTO +#endif + +/*Enable Arabic/Persian processing + *In these languages characters should be replaced with an other form based on their position in the text*/ +#define LV_USE_ARABIC_PERSIAN_CHARS 0 + +/*================== + * WIDGET USAGE + *================*/ + +/*Documentation of the widgets: https://docs.lvgl.io/latest/en/html/widgets/index.html*/ + +#define LV_USE_ARC 1 + +#define LV_USE_ANIMIMG 1 + +#define LV_USE_BAR 1 + +#define LV_USE_BTN 1 + +#define LV_USE_BTNMATRIX 1 + +#define LV_USE_CANVAS 1 + +#define LV_USE_CHECKBOX 1 + +#define LV_USE_DROPDOWN 1 /*Requires: lv_label*/ + +#define LV_USE_IMG 1 /*Requires: lv_label*/ + +#define LV_USE_LABEL 1 +#if LV_USE_LABEL +# define LV_LABEL_TEXT_SELECTION 1 /*Enable selecting text of the label*/ +# define LV_LABEL_LONG_TXT_HINT 1 /*Store some extra info in labels to speed up drawing of very long texts*/ +#endif + +#define LV_USE_LINE 1 + +#define LV_USE_ROLLER 1 /*Requires: lv_label*/ +#if LV_USE_ROLLER +# define LV_ROLLER_INF_PAGES 7 /*Number of extra "pages" when the roller is infinite*/ +#endif + +#define LV_USE_SLIDER 1 /*Requires: lv_bar*/ + +#define LV_USE_SWITCH 1 + +#define LV_USE_TEXTAREA 1 /*Requires: lv_label*/ +#if LV_USE_TEXTAREA != 0 +# define LV_TEXTAREA_DEF_PWD_SHOW_TIME 1500 /*ms*/ +#endif + +#define LV_USE_TABLE 1 + +/*================== + * EXTRA COMPONENTS + *==================*/ + +/*----------- + * Widgets + *----------*/ +#define LV_USE_CALENDAR 1 +#if LV_USE_CALENDAR +# define LV_CALENDAR_WEEK_STARTS_MONDAY 0 +# if LV_CALENDAR_WEEK_STARTS_MONDAY +# define LV_CALENDAR_DEFAULT_DAY_NAMES {"Mo", "Tu", "We", "Th", "Fr", "Sa", "Su"} +# else +# define LV_CALENDAR_DEFAULT_DAY_NAMES {"Su", "Mo", "Tu", "We", "Th", "Fr", "Sa"} +# endif + +# define LV_CALENDAR_DEFAULT_MONTH_NAMES {"January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"} +# define LV_USE_CALENDAR_HEADER_ARROW 1 +# define LV_USE_CALENDAR_HEADER_DROPDOWN 1 +#endif /*LV_USE_CALENDAR*/ + +#define LV_USE_CHART 1 + +#define LV_USE_COLORWHEEL 1 + +#define LV_USE_IMGBTN 1 + +#define LV_USE_KEYBOARD 1 + +#define LV_USE_LED 1 + +#define LV_USE_LIST 1 + +#define LV_USE_METER 1 + +#define LV_USE_MSGBOX 1 + +#define LV_USE_SPINBOX 1 + +#define LV_USE_SPINNER 1 + +#define LV_USE_TABVIEW 1 + +#define LV_USE_TILEVIEW 1 + +#define LV_USE_WIN 1 + +#define LV_USE_SPAN 1 +#if LV_USE_SPAN +/*A line text can contain maximum num of span descriptor */ +# define LV_SPAN_SNIPPET_STACK_SIZE 64 +#endif + +/*----------- + * Themes + *----------*/ + +/*A simple, impressive and very complete theme*/ +#define LV_USE_THEME_DEFAULT 1 +#if LV_USE_THEME_DEFAULT + +/*0: Light mode; 1: Dark mode*/ +# define LV_THEME_DEFAULT_DARK 0 + +/*1: Enable grow on press*/ +# define LV_THEME_DEFAULT_GROW 1 + +/*Default transition time in [ms]*/ +# define LV_THEME_DEFAULT_TRANSITION_TIME 80 +#endif /*LV_USE_THEME_DEFAULT*/ + +/*A very simple theme that is a good starting point for a custom theme*/ + #define LV_USE_THEME_BASIC 1 + +/*A theme designed for monochrome displays*/ +#define LV_USE_THEME_MONO 1 + +/*----------- + * Layouts + *----------*/ + +/*A layout similar to Flexbox in CSS.*/ +#define LV_USE_FLEX 1 + +/*A layout similar to Grid in CSS.*/ +#define LV_USE_GRID 1 + +/*--------------------- + * 3rd party libraries + *--------------------*/ + +/*File system interfaces for common APIs + *To enable set a driver letter for that API*/ +#define LV_USE_FS_STDIO '\0' /*Uses fopen, fread, etc*/ +//#define LV_FS_STDIO_PATH "/home/john/" /*Set the working directory. If commented it will be "./" */ + +#define LV_USE_FS_POSIX '\0' /*Uses open, read, etc*/ +//#define LV_FS_POSIX_PATH "/home/john/" /*Set the working directory. If commented it will be "./" */ + +#define LV_USE_FS_WIN32 '\0' /*Uses CreateFile, ReadFile, etc*/ +//#define LV_FS_WIN32_PATH "C:\\Users\\john\\" /*Set the working directory. If commented it will be ".\\" */ + +#define LV_USE_FS_FATFS '\0' /*Uses f_open, f_read, etc*/ + +/*PNG decoder library*/ +#define LV_USE_PNG 0 + +/*BMP decoder library*/ +#define LV_USE_BMP 0 + +/* JPG + split JPG decoder library. + * Split JPG is a custom format optimized for embedded systems. */ +#define LV_USE_SJPG 0 + +/*GIF decoder library*/ +#define LV_USE_GIF 0 + +/*QR code library*/ +#define LV_USE_QRCODE 0 + +/*FreeType library*/ +#define LV_USE_FREETYPE 0 +#if LV_USE_FREETYPE +/*Memory used by FreeType to cache characters [bytes] (-1: no caching)*/ +# define LV_FREETYPE_CACHE_SIZE (16 * 1024) +#endif + +/*Rlottie library*/ +#define LV_USE_RLOTTIE 0 + +/*----------- + * Others + *----------*/ + +/*1: Enable API to take snapshot for object*/ +#define LV_USE_SNAPSHOT 1 + + +/*================== +* EXAMPLES +*==================*/ + +/*Enable the examples to be built with the library*/ +#define LV_BUILD_EXAMPLES 1 + +/*--END OF LV_CONF_H--*/ + +#endif /*LV_CONF_H*/ + +#endif /*End of "Content enable"*/ diff --git a/components/lvgl b/main/lib/lvgl similarity index 100% rename from components/lvgl rename to main/lib/lvgl diff --git a/main/main.c b/main/main.c index adf039c..7ffbdd7 100644 --- a/main/main.c +++ b/main/main.c @@ -10,6 +10,7 @@ #include "freertos/task.h" // #include "impl_lvgl.h" +#include "if_standby.h" static esp_err_t app_init_nvs(void) { esp_err_t ret = nvs_flash_init(); @@ -31,25 +32,10 @@ void app_main(void) { ESP_ERROR_CHECK(impl_lvgl_init()); - /*Create a style for the shadow*/ - impl_lvgl_lock(); - lv_obj_t *test_label = lv_label_create(lv_scr_act()); - lv_label_set_recolor(test_label, true); - lv_label_set_text(test_label, "#000000 Test Label with# #808080 ReColor #"); - lv_obj_set_width(test_label, 400); - lv_obj_set_style_text_align(test_label, LV_TEXT_ALIGN_CENTER, 0); - lv_obj_align(test_label, LV_ALIGN_CENTER, 0, -25); - impl_lvgl_unlock(); - - char text_buf[32]; + ESP_ERROR_CHECK(if_standby_init()); /* Dead loop */ for (;;) { - vTaskDelay(pdMS_TO_TICKS(2000)); - snprintf(text_buf, 32, "C=%d", xTaskGetTickCount()); - impl_lvgl_lock(); - lv_label_set_text(test_label, text_buf); - lv_obj_set_style_text_align(test_label, LV_TEXT_ALIGN_CENTER, 0); - impl_lvgl_unlock(); + vTaskDelay(pdMS_TO_TICKS(60000)); } }